2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 12:52:10 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 12:52:10 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 12:52:10 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 12:52:10 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 12:52:10 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 12:52:10 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 23:58:51 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_tools.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#define _SV_MULTISEL_CXX
|
|
|
|
|
|
|
|
#ifdef MI_DEBUG
|
|
|
|
#define private public
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
2007-06-27 21:16:43 +00:00
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#include <tools/multisel.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
#include "rtl/ustrbuf.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#ifdef MI_DEBUG
|
|
|
|
#define DBG(x) x
|
|
|
|
#else
|
|
|
|
#define DBG(x)
|
|
|
|
#endif
|
|
|
|
|
2011-02-27 17:05:28 +01:00
|
|
|
using ::rtl::OUString;
|
2009-07-08 16:27:08 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
#ifdef MI_DEBUG
|
|
|
|
|
|
|
|
static void Print( const MultiSelection* pSel )
|
|
|
|
{
|
|
|
|
DbgOutf( "TotRange: %4ld-%4ld\n",
|
|
|
|
pSel->aTotRange.Min(), pSel->aTotRange.Max() );
|
|
|
|
if ( pSel->bCurValid )
|
|
|
|
{
|
|
|
|
DbgOutf( "CurSubSel: %4ld\n", pSel->nCurSubSel );
|
|
|
|
DbgOutf( "CurIndex: %4ld\n", pSel->nCurIndex );
|
|
|
|
}
|
|
|
|
DbgOutf( "SelCount: %4ld\n", pSel->nSelCount );
|
|
|
|
DbgOutf( "SubCount: %4ld\n", pSel->aSels.Count() );
|
2010-07-29 10:56:19 +08:00
|
|
|
for ( sal_uIntPtr nPos = 0; nPos < pSel->aSels.Count(); ++nPos )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
DbgOutf( "SubSel #%2ld: %4ld-%4ld\n", nPos,
|
|
|
|
pSel->aSels.GetObject(nPos)->Min(),
|
|
|
|
pSel->aSels.GetObject(nPos)->Max() );
|
|
|
|
}
|
|
|
|
DbgOutf( "\n" );
|
|
|
|
fclose( pFile );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MultiSelection::ImplClear()
|
|
|
|
{
|
|
|
|
// no selected indexes
|
|
|
|
nSelCount = 0;
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t i = 0, n = aSels.size(); i < n; ++i ) {
|
|
|
|
delete aSels[ i ];
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.clear();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t MultiSelection::ImplFindSubSelection( long nIndex ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// iterate through the sub selections
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t n = 0;
|
2000-09-18 16:07:07 +00:00
|
|
|
for ( ;
|
2011-02-13 13:14:05 -08:00
|
|
|
n < aSels.size() && nIndex > aSels[ n ]->Max();
|
2000-09-18 16:07:07 +00:00
|
|
|
++n ) {} /* empty loop */
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
Merge commit 'ooo/DEV300_m101' into intm101
The following builds for me:
basebmp, basegfx, comphelper, dtrans, i18npool, i18nutil, l10ntools, o3tl,
psprint_config, regexp, rsc, sax, sot, tools, ucbhelper, unotools, vcl
The rest still needs fixing ;-)
Conflicts:
canvas/prj/build.lst
canvas/source/cairo/cairo_textlayout.cxx
canvas/source/directx/dx_winstuff.hxx
canvas/source/tools/image.cxx
canvas/source/vcl/canvashelper.cxx
comphelper/inc/comphelper/documentconstants.hxx
comphelper/inc/comphelper/optionalvalue.hxx
comphelper/inc/comphelper/querydeep.hxx
comphelper/prj/build.lst
comphelper/qa/complex/makefile.mk
comphelper/qa/string/test_string_noadditional.cxx
comphelper/source/misc/componentmodule.cxx
comphelper/source/misc/mimeconfighelper.cxx
comphelper/source/misc/querydeep.cxx
comphelper/source/misc/uieventslogger.cxx
comphelper/source/property/TypeGeneration.cxx
comphelper/test/uno_iterators/uno_iterators.cxx
comphelper/util/makefile.mk
cppcanvas/source/mtfrenderer/implrenderer.cxx
dtrans/prj/build.lst
dtrans/source/generic/dtrans.cxx
dtrans/source/win32/dtobj/FmtFilter.cxx
i18npool/prj/build.lst
i18npool/source/localedata/data/localedata_others.map
i18npool/source/localedata/data/makefile.mk
i18npool/source/localedata/localedata.cxx
i18npool/source/localedata/saxparser.cxx
i18npool/source/registerservices/registerservices.cxx
i18npool/source/search/textsearch.cxx
l10ntools/inc/cfgmerge.hxx
l10ntools/inc/export.hxx
l10ntools/inc/gsicheck.hxx
l10ntools/inc/l10ntools/vosapp.hxx
l10ntools/inc/tagtest.hxx
l10ntools/inc/xmlparse.hxx
l10ntools/layout/layoutparse.cxx
l10ntools/layout/tralay.cxx
l10ntools/source/cfgmerge.cxx
l10ntools/source/export.cxx
l10ntools/source/export2.cxx
l10ntools/source/gsicheck.cxx
l10ntools/source/help/HelpLinker.cxx
l10ntools/source/lngex.cxx
l10ntools/source/lngmerge.cxx
l10ntools/source/merge.cxx
l10ntools/source/tagtest.cxx
l10ntools/source/xmlparse.cxx
padmin/source/fontentry.cxx
padmin/source/padialog.cxx
padmin/source/padialog.src
padmin/source/pamain.cxx
rsc/inc/rscarray.hxx
rsc/inc/rscclass.hxx
rsc/inc/rscclobj.hxx
rsc/inc/rsccont.hxx
rsc/inc/rscdb.hxx
rsc/inc/rscdef.hxx
rsc/inc/rscmgr.hxx
rsc/inc/rscrange.hxx
rsc/inc/rsctop.hxx
rsc/inc/vclrsc.hxx
rsc/source/parser/rscdb.cxx
rsc/source/parser/rscicpx.cxx
rsc/source/parser/rscinit.cxx
rsc/source/prj/start.cxx
rsc/source/res/rscarray.cxx
rsc/source/res/rscclass.cxx
rsc/source/res/rscclobj.cxx
rsc/source/res/rsccont.cxx
rsc/source/res/rscmgr.cxx
rsc/source/res/rscrange.cxx
rsc/source/res/rsctop.cxx
rsc/source/rsc/rsc.cxx
rsc/source/tools/rscdef.cxx
rsc/source/tools/rsctools.cxx
sax/source/expatwrap/sax_expat.cxx
sax/source/fastparser/facreg.cxx
sax/source/tools/fastserializer.cxx
sot/inc/sot/filelist.hxx
sot/inc/sot/object.hxx
sot/source/base/factory.cxx
sot/source/base/filelist.cxx
sot/source/sdstor/stg.cxx
sot/source/sdstor/stgcache.cxx
sot/source/sdstor/stgole.cxx
sot/source/sdstor/stgstrms.cxx
sot/source/sdstor/storage.cxx
sot/source/sdstor/ucbstorage.cxx
svl/inc/svl/cenumitm.hxx
svl/inc/svl/cintitem.hxx
svl/inc/svl/cntwall.hxx
svl/inc/svl/ctypeitm.hxx
svl/inc/svl/custritm.hxx
svl/inc/svl/dateitem.hxx
svl/inc/svl/filerec.hxx
svl/inc/svl/globalnameitem.hxx
svl/inc/svl/ilstitem.hxx
svl/inc/svl/imageitm.hxx
svl/inc/svl/intitem.hxx
svl/inc/svl/itempool.hxx
svl/inc/svl/itemset.hxx
svl/inc/svl/lckbitem.hxx
svl/inc/svl/poolitem.hxx
svl/inc/svl/ptitem.hxx
svl/inc/svl/rectitem.hxx
svl/inc/svl/sfontitm.hxx
svl/inc/svl/slstitm.hxx
svl/inc/svl/srchitem.hxx
svl/inc/svl/svarray.hxx
svl/inc/svl/svdde.hxx
svl/inc/svl/svstdarr.hxx
svl/inc/svl/szitem.hxx
svl/inc/svl/visitem.hxx
svl/inc/svl/zforlist.hxx
svl/inc/svl/zformat.hxx
svl/prj/build.lst
svl/qa/complex/ConfigItems/helper/ConfigItemTest.cxx
svl/qa/complex/ConfigItems/helper/makefile.mk
svl/qa/makefile.mk
svl/source/filepicker/pickerhelper.cxx
svl/source/filerec/filerec.cxx
svl/source/items/cenumitm.cxx
svl/source/items/cintitem.cxx
svl/source/items/cntwall.cxx
svl/source/items/ctypeitm.cxx
svl/source/items/custritm.cxx
svl/source/items/dateitem.cxx
svl/source/items/globalnameitem.cxx
svl/source/items/ilstitem.cxx
svl/source/items/imageitm.cxx
svl/source/items/intitem.cxx
svl/source/items/itempool.cxx
svl/source/items/itemprop.cxx
svl/source/items/itemset.cxx
svl/source/items/lckbitem.cxx
svl/source/items/poolio.cxx
svl/source/items/poolitem.cxx
svl/source/items/ptitem.cxx
svl/source/items/rectitem.cxx
svl/source/items/slstitm.cxx
svl/source/items/srchitem.cxx
svl/source/items/style.cxx
svl/source/items/szitem.cxx
svl/source/items/visitem.cxx
svl/source/items/whiter.cxx
svl/source/memtools/svarray.cxx
svl/source/misc/PasswordHelper.cxx
svl/source/misc/adrparse.cxx
svl/source/misc/lngmisc.cxx
svl/source/notify/brdcst.cxx
svl/source/notify/listener.cxx
svl/source/notify/listenerbase.cxx
svl/source/numbers/makefile.mk
svl/source/numbers/nbdll.cxx
svl/source/numbers/zforfind.cxx
svl/source/numbers/zforlist.cxx
svl/source/numbers/zformat.cxx
svl/source/numbers/zforscan.cxx
svl/source/passwordcontainer/passwordcontainer.cxx
svl/source/svdde/ddecli.cxx
svl/source/svdde/ddeimp.hxx
svl/source/svdde/ddemlos2.h
svl/source/svdde/ddesvr.cxx
svl/source/undo/undo.cxx
svl/source/uno/registerservices.cxx
svl/util/makefile.mk
svtools/bmpmaker/bmpsum.cxx
svtools/bmpmaker/g2g.cxx
svtools/bmpmaker/makefile.mk
svtools/inc/borderhelper.hxx
svtools/inc/svtools/accessiblefactory.hxx
svtools/inc/svtools/apearcfg.hxx
svtools/inc/svtools/brwbox.hxx
svtools/inc/svtools/ctrlbox.hxx
svtools/inc/svtools/ctrltool.hxx
svtools/inc/svtools/editbrowsebox.hxx
svtools/inc/svtools/ehdl.hxx
svtools/inc/svtools/embedhlp.hxx
svtools/inc/svtools/filter.hxx
svtools/inc/svtools/ivctrl.hxx
svtools/inc/svtools/parhtml.hxx
svtools/inc/svtools/printdlg.hxx
svtools/inc/svtools/rtftoken.h
svtools/inc/svtools/ruler.hxx
svtools/inc/svtools/svicnvw.hxx
svtools/inc/svtools/svlbitm.hxx
svtools/inc/svtools/svlbox.hxx
svtools/inc/svtools/svtreebx.hxx
svtools/inc/svtools/tabbar.hxx
svtools/inc/svtools/table/abstracttablecontrol.hxx
svtools/inc/svtools/taskbar.hxx
svtools/inc/svtools/textview.hxx
svtools/inc/svtools/valueset.hxx
svtools/source/brwbox/brwbox1.cxx
svtools/source/brwbox/brwbox2.cxx
svtools/source/brwbox/datwin.cxx
svtools/source/brwbox/datwin.hxx
svtools/source/brwbox/makefile.mk
svtools/source/config/apearcfg.cxx
svtools/source/config/htmlcfg.cxx
svtools/source/config/menuoptions.cxx
svtools/source/config/miscopt.cxx
svtools/source/contnr/cont_pch.cxx
svtools/source/contnr/ctrdll.cxx
svtools/source/contnr/fileview.cxx
svtools/source/contnr/imivctl1.cxx
svtools/source/contnr/ivctrl.cxx
svtools/source/contnr/makefile.mk
svtools/source/contnr/svcontnr.src
svtools/source/contnr/svicnvw.cxx
svtools/source/contnr/svimpbox.cxx
svtools/source/contnr/svimpicn.cxx
svtools/source/contnr/svlbitm.cxx
svtools/source/contnr/svtreebx.cxx
svtools/source/contnr/templwin.cxx
svtools/source/contnr/templwin.hxx
svtools/source/control/asynclink.cxx
svtools/source/control/ctrlbox.cxx
svtools/source/control/ctrldll.cxx
svtools/source/control/ctrltool.cxx
svtools/source/control/filectrl.cxx
svtools/source/control/filectrl.src
svtools/source/control/headbar.cxx
svtools/source/control/inettbc.cxx
svtools/source/control/makefile.mk
svtools/source/control/prgsbar.cxx
svtools/source/control/roadmap.cxx
svtools/source/control/ruler.cxx
svtools/source/control/scriptedtext.cxx
svtools/source/control/stdmenu.cxx
svtools/source/control/tabbar.cxx
svtools/source/control/taskbar.cxx
svtools/source/control/taskbox.cxx
svtools/source/control/taskmisc.cxx
svtools/source/control/taskstat.cxx
svtools/source/control/valueacc.cxx
svtools/source/control/valueset.cxx
svtools/source/dialogs/addresstemplate.cxx
svtools/source/dialogs/addresstemplate.src
svtools/source/dialogs/colrdlg.src
svtools/source/dialogs/filedlg2.cxx
svtools/source/dialogs/filedlg2.hxx
svtools/source/dialogs/makefile.mk
svtools/source/dialogs/printdlg.cxx
svtools/source/dialogs/printdlg.src
svtools/source/dialogs/propctrl.cxx
svtools/source/dialogs/propctrl.hxx
svtools/source/dialogs/property.cxx
svtools/source/edit/makefile.mk
svtools/source/edit/sychconv.cxx
svtools/source/edit/syntaxhighlight.cxx
svtools/source/edit/textdoc.cxx
svtools/source/edit/texteng.cxx
svtools/source/edit/textundo.cxx
svtools/source/edit/textview.cxx
svtools/source/filter.vcl/filter/SvFilterOptionsDialog.cxx
svtools/source/filter.vcl/filter/dlgejpg.cxx
svtools/source/filter.vcl/filter/dlgejpg.hxx
svtools/source/filter.vcl/filter/dlgejpg.src
svtools/source/filter.vcl/filter/dlgepng.cxx
svtools/source/filter.vcl/filter/dlgepng.hxx
svtools/source/filter.vcl/filter/dlgepng.src
svtools/source/filter.vcl/filter/dlgexpor.cxx
svtools/source/filter.vcl/filter/dlgexpor.hxx
svtools/source/filter.vcl/filter/dlgexpor.src
svtools/source/filter.vcl/filter/filter2.cxx
svtools/source/filter.vcl/filter/makefile.mk
svtools/source/filter.vcl/filter/sgfbram.cxx
svtools/source/filter.vcl/filter/sgvmain.cxx
svtools/source/filter.vcl/filter/sgvspln.cxx
svtools/source/filter.vcl/filter/strings.src
svtools/source/filter.vcl/jpeg/makefile.mk
svtools/source/filter.vcl/wmf/emfwr.cxx
svtools/source/filter.vcl/wmf/emfwr.hxx
svtools/source/filter.vcl/wmf/enhwmf.cxx
svtools/source/filter.vcl/wmf/winmtf.hxx
svtools/source/filter.vcl/wmf/wmfwr.cxx
svtools/source/filter.vcl/wmf/wmfwr.hxx
svtools/source/graphic/grfcache.cxx
svtools/source/graphic/grfcache.hxx
svtools/source/graphic/grfmgr.cxx
svtools/source/graphic/makefile.mk
svtools/source/inc/accessibletableimp.hxx
svtools/source/inc/svimpbox.hxx
svtools/source/java/patchjavaerror.src
svtools/source/misc/ehdl.cxx
svtools/source/misc/errtxt.src
svtools/source/misc/helpagentwindow.cxx
svtools/source/misc/imagemgr.cxx
svtools/source/misc/imagemgr.src
svtools/source/misc/imageresourceaccess.cxx
svtools/source/misc/imap.cxx
svtools/source/misc/langtab.src
svtools/source/misc/makefile.mk
svtools/source/misc/svtdata.cxx
svtools/source/misc/templatefoldercache.cxx
svtools/source/misc/transfer2.cxx
svtools/source/misc/undo.src
svtools/source/plugapp/commtest.cxx
svtools/source/plugapp/commtest.src
svtools/source/plugapp/makefile.mk
svtools/source/plugapp/testtool.src
svtools/source/productregistration/productregistration.cxx
svtools/source/svhtml/htmlkywd.cxx
svtools/source/svhtml/parhtml.cxx
svtools/source/svrtf/rtfkey2.cxx
svtools/source/svrtf/rtfkeywd.cxx
svtools/source/table/defaultinputhandler.cxx
svtools/source/table/makefile.mk
svtools/source/table/tablecontrol.cxx
svtools/source/table/tablecontrol_impl.cxx
svtools/source/table/tablecontrol_impl.hxx
svtools/source/table/tabledatawindow.cxx
svtools/source/table/tablegeometry.cxx
svtools/source/table/tablegeometry.hxx
svtools/source/toolpanel/makefile.mk
svtools/source/toolpanel/toolpaneldrawer.cxx
svtools/source/uno/addrtempuno.cxx
svtools/source/uno/miscservices.cxx
svtools/source/uno/svtxgridcontrol.cxx
svtools/source/uno/svtxgridcontrol.hxx
svtools/source/uno/toolboxcontroller.cxx
svtools/source/uno/treecontrolpeer.cxx
svtools/source/uno/unocontroltablemodel.cxx
svtools/source/uno/unocontroltablemodel.hxx
svtools/source/uno/unoimap.cxx
svtools/source/urlobj/inetimg.cxx
svtools/util/makefile.mk
svtools/workben/browser.cxx
svtools/workben/cui/makefile.mk
svtools/workben/makefile.mk
svtools/workben/stest.cxx
svtools/workben/toolpanel/makefile.mk
svtools/workben/urange.cxx
toolkit/inc/toolkit/awt/vclxdevice.hxx
toolkit/inc/toolkit/awt/vclxgraphics.hxx
toolkit/inc/toolkit/awt/vclxwindows.hxx
toolkit/inc/toolkit/controls/dialogcontrol.hxx
toolkit/inc/toolkit/helper/property.hxx
toolkit/inc/toolkit/helper/servicenames.hxx
toolkit/inc/toolkit/helper/throbberimpl.hxx
toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
toolkit/source/awt/asynccallback.cxx
toolkit/source/awt/vclxgraphics.cxx
toolkit/source/awt/vclxtoolkit.cxx
toolkit/source/awt/vclxwindow.cxx
toolkit/source/awt/xsimpleanimation.cxx
toolkit/source/awt/xthrobber.cxx
toolkit/source/controls/dialogcontrol.cxx
toolkit/source/controls/grid/defaultgridcolumnmodel.cxx
toolkit/source/controls/grid/defaultgriddatamodel.cxx
toolkit/source/controls/grid/gridcontrol.cxx
toolkit/source/controls/grid/initguard.hxx
toolkit/source/controls/unocontrol.cxx
toolkit/source/controls/unocontrolcontainer.cxx
toolkit/source/controls/unocontrols.cxx
toolkit/source/helper/listenermultiplexer.cxx
toolkit/source/helper/property.cxx
toolkit/source/helper/registerservices.cxx
toolkit/source/helper/servicenames.cxx
toolkit/source/helper/throbberimpl.cxx
toolkit/source/helper/tkresmgr.cxx
tools/StaticLibrary_ooopathutils.mk
tools/bootstrp/addexes/makefile.mk
tools/bootstrp/addexes2/makefile.mk
tools/bootstrp/addexes2/mkfilt.cxx
tools/bootstrp/command.cxx
tools/bootstrp/cppdep.cxx
tools/bootstrp/iserver.cxx
tools/bootstrp/makefile.mk
tools/bootstrp/mkcreate.cxx
tools/bootstrp/prj.cxx
tools/bootstrp/rscdep.cxx
tools/bootstrp/sstring.cxx
tools/inc/bootstrp/command.hxx
tools/inc/bootstrp/mkcreate.hxx
tools/inc/bootstrp/prj.hxx
tools/inc/bootstrp/sstring.hxx
tools/inc/tools/agapi.hxx
tools/inc/tools/agitem.hxx
tools/inc/tools/chapi.hxx
tools/inc/tools/download.hxx
tools/inc/tools/eacopier.hxx
tools/inc/tools/fract.hxx
tools/inc/tools/fsys.hxx
tools/inc/tools/geninfo.hxx
tools/inc/tools/globname.hxx
tools/inc/tools/inetmime.hxx
tools/inc/tools/multisel.hxx
tools/inc/tools/poly.hxx
tools/inc/tools/postsys.h
tools/inc/tools/postwin.h
tools/inc/tools/presys.h
tools/inc/tools/prewin.h
tools/inc/tools/pstm.hxx
tools/inc/tools/ref.hxx
tools/inc/tools/simplerm.hxx
tools/inc/tools/solar.h
tools/inc/tools/table.hxx
tools/inc/tools/urlkeys.hxx
tools/inc/tools/urlobj.hxx
tools/prj/build.lst
tools/prj/d.lst
tools/qa/makefile.mk
tools/source/communi/geninfo.cxx
tools/source/debug/debug.cxx
tools/source/fsys/dirent.cxx
tools/source/fsys/tdir.cxx
tools/source/fsys/unx.cxx
tools/source/fsys/urlobj.cxx
tools/source/generic/color.cxx
tools/source/generic/config.cxx
tools/source/generic/fract.cxx
tools/source/inet/inetmime.cxx
tools/source/memtools/multisel.cxx
tools/source/memtools/table.cxx
tools/source/rc/resmgr.cxx
tools/source/ref/globname.cxx
tools/source/ref/pstm.cxx
tools/source/solar/solar.c
tools/source/stream/strmos2.cxx
tools/source/stream/strmunx.cxx
tools/source/stream/strmwnt.cxx
tools/source/string/makefile.mk
tools/source/testtoolloader/testtoolloader.cxx
tools/test/makefile.mk
tools/util/makefile.mk
tools/win/inc/dll.hxx
tools/win/inc/parser.hxx
tools/win/inc/shellex.h
tools/win/inc/shutil.h
tools/win/inc/toolsdll.hxx
tools/win/inc/winshell.hxx
tools/workben/makefile.mk
ucbhelper/source/client/proxydecider.cxx
ucbhelper/workben/ucbexplorer/ucbexplorer.hrc
unotools/inc/unotools/unotunnelhelper.hxx
unotools/source/config/fltrcfg.cxx
unotools/source/config/lingucfg.cxx
unotools/source/config/misccfg.cxx
unotools/source/config/pathoptions.cxx
unotools/source/config/searchopt.cxx
unotools/source/i18n/localedatawrapper.cxx
unotools/source/ucbhelper/localfilehelper.cxx
unotools/source/ucbhelper/ucbhelper.cxx
unotools/source/ucbhelper/xtempfile.cxx
vcl/aqua/inc/salbmp.h
vcl/aqua/inc/salgdi.h
vcl/aqua/inc/salinst.h
vcl/aqua/source/app/salinst.cxx
vcl/aqua/source/gdi/aquaprintaccessoryview.mm
vcl/aqua/source/gdi/salgdi.cxx
vcl/aqua/source/gdi/salprn.cxx
vcl/aqua/source/window/salframeview.mm
vcl/aqua/source/window/salobj.cxx
vcl/inc/vcl/bitmap.hxx
vcl/inc/vcl/brdwin.hxx
vcl/inc/vcl/button.hxx
vcl/inc/vcl/cmdevt.hxx
vcl/inc/vcl/cvtgrf.hxx
vcl/inc/vcl/dialog.hxx
vcl/inc/vcl/dockwin.hxx
vcl/inc/vcl/event.hxx
vcl/inc/vcl/fixed.hxx
vcl/inc/vcl/fldunit.hxx
vcl/inc/vcl/floatwin.hxx
vcl/inc/vcl/gdimtf.hxx
vcl/inc/vcl/glyphcache.hxx
vcl/inc/vcl/graphite_adaptors.hxx
vcl/inc/vcl/graphite_features.hxx
vcl/inc/vcl/graphite_layout.hxx
vcl/inc/vcl/ilstbox.hxx
vcl/inc/vcl/image.h
vcl/inc/vcl/imgctrl.hxx
vcl/inc/vcl/impbmpconv.hxx
vcl/inc/vcl/impprn.hxx
vcl/inc/vcl/jobset.h
vcl/inc/vcl/keycodes.hxx
vcl/inc/vcl/lstbox.hxx
vcl/inc/vcl/mapunit.hxx
vcl/inc/vcl/menu.hxx
vcl/inc/vcl/msgbox.hxx
vcl/inc/vcl/outdev.hxx
vcl/inc/vcl/prndlg.hxx
vcl/inc/vcl/salatype.hxx
vcl/inc/vcl/salbmp.hxx
vcl/inc/vcl/salgdi.hxx
vcl/inc/vcl/salinst.hxx
vcl/inc/vcl/seleng.hxx
vcl/inc/vcl/settings.hxx
vcl/inc/vcl/smartid.hxx
vcl/inc/vcl/status.hxx
vcl/inc/vcl/strhelper.hxx
vcl/inc/vcl/svapp.hxx
vcl/inc/vcl/svdata.hxx
vcl/inc/vcl/syschild.hxx
vcl/inc/vcl/sysdata.hxx
vcl/inc/vcl/taskpanelist.hxx
vcl/inc/vcl/toolbox.hxx
vcl/inc/vcl/vclevent.hxx
vcl/inc/vcl/windata.hxx
vcl/inc/vcl/window.hxx
vcl/inc/vcl/wintypes.hxx
vcl/os2/source/app/salinst.cxx
vcl/os2/source/gdi/salgdi.cxx
vcl/os2/source/window/salmenu.cxx
vcl/os2/source/window/salobj.cxx
vcl/prj/build.lst
vcl/source/app/dbggui.cxx
vcl/source/app/help.cxx
vcl/source/app/idlemgr.cxx
vcl/source/app/settings.cxx
vcl/source/app/svapp.cxx
vcl/source/app/svdata.cxx
vcl/source/app/svmain.cxx
vcl/source/app/svmainhook.cxx
vcl/source/app/unohelp.cxx
vcl/source/app/vclevent.cxx
vcl/source/control/button.cxx
vcl/source/control/combobox.cxx
vcl/source/control/edit.cxx
vcl/source/control/field.cxx
vcl/source/control/fixed.cxx
vcl/source/control/ilstbox.cxx
vcl/source/control/imgctrl.cxx
vcl/source/control/makefile.mk
vcl/source/control/tabctrl.cxx
vcl/source/gdi/bitmap.cxx
vcl/source/gdi/bitmap2.cxx
vcl/source/gdi/bitmap4.cxx
vcl/source/gdi/bmpconv.cxx
vcl/source/gdi/cvtsvm.cxx
vcl/source/gdi/font.cxx
vcl/source/gdi/gdimtf.cxx
vcl/source/gdi/image.cxx
vcl/source/gdi/impimage.cxx
vcl/source/gdi/jobset.cxx
vcl/source/gdi/makefile.mk
vcl/source/gdi/metaact.cxx
vcl/source/gdi/outdev.cxx
vcl/source/gdi/outdev3.cxx
vcl/source/gdi/outdev4.cxx
vcl/source/gdi/outdevnative.cxx
vcl/source/gdi/pdfwriter.cxx
vcl/source/gdi/pdfwriter_impl.cxx
vcl/source/gdi/print3.cxx
vcl/source/gdi/salmisc.cxx
vcl/source/glyphs/gcach_ftyp.cxx
vcl/source/glyphs/gcach_ftyp.hxx
vcl/source/glyphs/glyphcache.cxx
vcl/source/glyphs/graphite_cache.cxx
vcl/source/glyphs/graphite_layout.cxx
vcl/source/glyphs/graphite_textsrc.hxx
vcl/source/helper/canvasbitmap.cxx
vcl/source/helper/smartid.cxx
vcl/source/helper/xconnection.cxx
vcl/source/src/btntext.src
vcl/source/src/images.src
vcl/source/src/print.src
vcl/source/window/accel.cxx
vcl/source/window/accmgr.cxx
vcl/source/window/brdwin.cxx
vcl/source/window/btndlg.cxx
vcl/source/window/dlgctrl.cxx
vcl/source/window/javachild.cxx
vcl/source/window/menu.cxx
vcl/source/window/msgbox.cxx
vcl/source/window/printdlg.cxx
vcl/source/window/status.cxx
vcl/source/window/syschild.cxx
vcl/source/window/toolbox.cxx
vcl/source/window/toolbox2.cxx
vcl/source/window/window.cxx
vcl/source/window/window2.cxx
vcl/source/window/wrkwin.cxx
vcl/unx/gtk/app/gtkdata.cxx
vcl/unx/gtk/app/gtkinst.cxx
vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
vcl/unx/gtk/window/gtkframe.cxx
vcl/unx/gtk/window/gtkobject.cxx
vcl/unx/headless/svpbmp.hxx
vcl/unx/headless/svpgdi.cxx
vcl/unx/headless/svpgdi.hxx
vcl/unx/headless/svpinst.cxx
vcl/unx/headless/svpinst.hxx
vcl/unx/headless/svpprn.cxx
vcl/unx/headless/svpprn.hxx
vcl/unx/headless/svppspgraphics.cxx
vcl/unx/headless/svppspgraphics.hxx
vcl/unx/headless/svptext.cxx
vcl/unx/inc/dtint.hxx
vcl/unx/inc/plugins/gtk/gtkdata.hxx
vcl/unx/inc/pspgraphics.h
vcl/unx/inc/salbmp.h
vcl/unx/inc/saldata.hxx
vcl/unx/inc/saldisp.hxx
vcl/unx/inc/salgdi.h
vcl/unx/inc/salinst.h
vcl/unx/inc/xfont.hxx
vcl/unx/kde/kdedata.cxx
vcl/unx/kde4/KDESalGraphics.cxx
vcl/unx/source/app/keysymnames.cxx
vcl/unx/source/app/saldata.cxx
vcl/unx/source/app/saldisp.cxx
vcl/unx/source/app/salinst.cxx
vcl/unx/source/app/wmadaptor.cxx
vcl/unx/source/dtrans/X11_selection.cxx
vcl/unx/source/dtrans/X11_service.cxx
vcl/unx/source/gdi/makefile.mk
vcl/unx/source/gdi/pspgraphics.cxx
vcl/unx/source/gdi/salgdi.cxx
vcl/unx/source/gdi/salgdi3.cxx
vcl/unx/source/gdi/salprnpsp.cxx
vcl/unx/source/gdi/xfont.cxx
vcl/unx/source/gdi/xlfd_attr.cxx
vcl/unx/source/gdi/xlfd_attr.hxx
vcl/unx/source/gdi/xlfd_extd.cxx
vcl/unx/source/gdi/xlfd_extd.hxx
vcl/unx/source/gdi/xlfd_smpl.cxx
vcl/unx/source/gdi/xlfd_smpl.hxx
vcl/unx/source/printer/ppdparser.cxx
vcl/unx/source/printer/printerinfomanager.cxx
vcl/unx/source/window/salframe.cxx
vcl/unx/source/window/salmenu.cxx
vcl/unx/source/window/salobj.cxx
vcl/util/makefile2.pmk
vcl/win/inc/salbmp.h
vcl/win/inc/saldata.hxx
vcl/win/inc/salgdi.h
vcl/win/inc/salinst.h
vcl/win/source/app/saldata.cxx
vcl/win/source/app/salinst.cxx
vcl/win/source/gdi/salgdi.cxx
vcl/win/source/gdi/salgdi3.cxx
vcl/win/source/gdi/salprn.cxx
vcl/win/source/gdi/winlayout.cxx
vcl/win/source/window/salframe.cxx
vcl/win/source/window/salobj.cxx
vcl/workben/outdevgrind.cxx
vos/inc/vos/execabl.hxx
vos/inc/vos/macros.hxx
vos/inc/vos/pipe.hxx
vos/inc/vos/process.hxx
vos/inc/vos/refernce.hxx
vos/inc/vos/signal.hxx
vos/inc/vos/socket.hxx
vos/inc/vos/stream.hxx
vos/inc/vos/thread.hxx
vos/source/pipe.cxx
vos/source/process.cxx
vos/source/signal.cxx
vos/source/thread.cxx
vos/source/timer.cxx
2011-03-11 14:24:23 +01:00
|
|
|
sal_Bool MultiSelection::ImplMergeSubSelections( size_t nPos1, size_t nPos2 )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// didn't a sub selection at nPos2 exist?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nPos2 >= aSels.size() )
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// did the sub selections touch each other?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( (aSels[ nPos1 ]->Max() + 1) == aSels[ nPos2 ]->Min() )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// merge them
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels[ nPos1 ]->Max() = aSels[ nPos2 ]->Max();
|
|
|
|
ImpSelList::iterator it = aSels.begin();
|
|
|
|
::std::advance( it, nPos2 );
|
|
|
|
delete *it;
|
|
|
|
aSels.erase( it );
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MultiSelection::MultiSelection():
|
|
|
|
aTotRange( 0, -1 ),
|
|
|
|
nCurSubSel(0),
|
2006-06-19 12:47:57 +00:00
|
|
|
nSelCount(0),
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid(sal_False),
|
|
|
|
bSelectNew(sal_False)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MultiSelection::MultiSelection( const UniString& rString, sal_Unicode cRange, sal_Unicode cSep ):
|
|
|
|
aTotRange(0,RANGE_MAX),
|
|
|
|
nCurSubSel(0),
|
2006-06-19 12:47:57 +00:00
|
|
|
nSelCount(0),
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid(sal_False),
|
|
|
|
bSelectNew(sal_False)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// Dies ist nur ein Schnellschuss und sollte bald optimiert,
|
2006-06-19 12:47:57 +00:00
|
|
|
// an die verschiedenen Systeme (UNIX etc.)
|
2000-09-18 16:07:07 +00:00
|
|
|
// und die gewuenschte Eingabe-Syntax angepasst werden.
|
|
|
|
|
|
|
|
UniString aStr( rString );
|
|
|
|
sal_Unicode* pStr = aStr.GetBufferAccess();
|
|
|
|
sal_Unicode* pOld = pStr;
|
2010-07-29 10:56:19 +08:00
|
|
|
sal_Bool bReady = sal_False;
|
|
|
|
sal_Bool bUntil = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
xub_StrLen nCut = 0;
|
|
|
|
|
|
|
|
// Hier normieren wir den String, sodass nur Ziffern,
|
|
|
|
// Semikola als Trenn- und Minus als VonBis-Zeichen
|
|
|
|
// uebrigbleiben, z.B. "99-117;55;34;-17;37-43"
|
|
|
|
while ( *pOld )
|
|
|
|
{
|
|
|
|
switch( *pOld )
|
|
|
|
{
|
|
|
|
case '0':
|
|
|
|
case '1':
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
case '6':
|
|
|
|
case '7':
|
|
|
|
case '8':
|
|
|
|
case '9':
|
|
|
|
DBG_ASSERT( *pOld != cRange, "digit for range char not allowed" );
|
|
|
|
DBG_ASSERT( *pOld != cSep, "digit for separator not allowed" );
|
|
|
|
if( bReady )
|
|
|
|
{
|
|
|
|
*pStr++ = ';';
|
|
|
|
nCut++;
|
2010-07-29 10:56:19 +08:00
|
|
|
bReady = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
*pStr++ = *pOld;
|
|
|
|
nCut++;
|
2010-07-29 10:56:19 +08:00
|
|
|
bUntil = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '-':
|
|
|
|
case ':':
|
|
|
|
case '/':
|
|
|
|
if ( *pOld != cSep )
|
|
|
|
{
|
|
|
|
if ( !bUntil )
|
|
|
|
{
|
|
|
|
*pStr++ = '-';
|
|
|
|
nCut++;
|
2010-07-29 10:56:19 +08:00
|
|
|
bUntil = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
2010-07-29 10:56:19 +08:00
|
|
|
bReady = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
2010-07-29 10:56:19 +08:00
|
|
|
bReady = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
DBG_ASSERT( *pOld != cRange, "SPACE for range char not allowed" );
|
|
|
|
DBG_ASSERT( *pOld != cSep, "SPACE for separator not allowed" );
|
|
|
|
bReady = !bUntil;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if ( *pOld == cRange )
|
|
|
|
{
|
|
|
|
if ( !bUntil )
|
|
|
|
{
|
|
|
|
*pStr++ = '-';
|
|
|
|
nCut++;
|
2010-07-29 10:56:19 +08:00
|
|
|
bUntil = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
2010-07-29 10:56:19 +08:00
|
|
|
bReady = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
2010-07-29 10:56:19 +08:00
|
|
|
bReady = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pOld++;
|
|
|
|
}
|
|
|
|
aStr.ReleaseBufferAccess( nCut );
|
|
|
|
|
|
|
|
// Jetzt wird der normierte String ausgewertet ..
|
|
|
|
UniString aNumStr;
|
|
|
|
Range aRg( 1, RANGE_MAX );
|
|
|
|
const sal_Unicode* pCStr = aStr.GetBuffer();
|
|
|
|
long nPage = 1;
|
|
|
|
long nNum = 1;
|
2010-07-29 10:56:19 +08:00
|
|
|
bUntil = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
while ( *pCStr )
|
|
|
|
{
|
|
|
|
switch ( *pCStr )
|
|
|
|
{
|
|
|
|
case '0':
|
|
|
|
case '1':
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
case '6':
|
|
|
|
case '7':
|
|
|
|
case '8':
|
|
|
|
case '9':
|
|
|
|
aNumStr += *pCStr;
|
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
nNum = aNumStr.ToInt32();
|
|
|
|
if ( bUntil )
|
|
|
|
{
|
|
|
|
if ( !aNumStr.Len() )
|
|
|
|
nNum = RANGE_MAX;
|
|
|
|
aRg.Min() = nPage;
|
|
|
|
aRg.Max() = nNum;
|
|
|
|
aRg.Justify();
|
|
|
|
Select( aRg );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Select( nNum );
|
|
|
|
nPage = 0;
|
|
|
|
aNumStr.Erase();
|
2010-07-29 10:56:19 +08:00
|
|
|
bUntil = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '-':
|
|
|
|
nPage = aNumStr.ToInt32();
|
|
|
|
aNumStr.Erase();
|
2010-07-29 10:56:19 +08:00
|
|
|
bUntil = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pCStr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
nNum = aNumStr.ToInt32();
|
|
|
|
if ( bUntil )
|
|
|
|
{
|
|
|
|
if ( !aNumStr.Len() )
|
|
|
|
nNum = RANGE_MAX;
|
|
|
|
aRg.Min() = nPage;
|
|
|
|
aRg.Max() = nNum;
|
|
|
|
aRg.Justify();
|
|
|
|
Select( aRg );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Select( nNum );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MultiSelection::MultiSelection( const MultiSelection& rOrig ) :
|
|
|
|
aTotRange(rOrig.aTotRange),
|
|
|
|
nSelCount(rOrig.nSelCount),
|
2006-06-19 12:47:57 +00:00
|
|
|
bCurValid(rOrig.bCurValid),
|
2010-07-29 10:56:19 +08:00
|
|
|
bSelectNew(sal_False)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( bCurValid )
|
|
|
|
{
|
|
|
|
nCurSubSel = rOrig.nCurSubSel;
|
|
|
|
nCurIndex = rOrig.nCurIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy the sub selections
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t n = 0; n < rOrig.aSels.size(); ++n )
|
|
|
|
aSels.push_back( new Range( *rOrig.aSels[ n ] ) );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MultiSelection::MultiSelection( const Range& rRange ):
|
|
|
|
aTotRange(rRange),
|
|
|
|
nCurSubSel(0),
|
2006-06-19 12:47:57 +00:00
|
|
|
nSelCount(0),
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid(sal_False),
|
|
|
|
bSelectNew(sal_False)
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MultiSelection::~MultiSelection()
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t i = 0, n = aSels.size(); i < n; ++i )
|
|
|
|
delete aSels[ i ];
|
|
|
|
aSels.clear();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MultiSelection& MultiSelection::operator= ( const MultiSelection& rOrig )
|
|
|
|
{
|
|
|
|
aTotRange = rOrig.aTotRange;
|
|
|
|
bCurValid = rOrig.bCurValid;
|
|
|
|
if ( bCurValid )
|
|
|
|
{
|
|
|
|
nCurSubSel = rOrig.nCurSubSel;
|
|
|
|
nCurIndex = rOrig.nCurIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear the old and copy the sub selections
|
|
|
|
ImplClear();
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t n = 0; n < rOrig.aSels.size(); ++n )
|
|
|
|
aSels.push_back( new Range( *rOrig.aSels[ n ] ) );
|
2000-09-18 16:07:07 +00:00
|
|
|
nSelCount = rOrig.nSelCount;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
sal_Bool MultiSelection::operator== ( MultiSelection& rWith )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( aTotRange != rWith.aTotRange || nSelCount != rWith.nSelCount ||
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.size() != rWith.aSels.size() )
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// compare the sub seletions
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t n = 0; n < aSels.size(); ++n )
|
|
|
|
if ( *aSels[ n ] != *rWith.aSels[ n ] )
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
void MultiSelection::SelectAll( sal_Bool bSelect )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2010-07-29 10:56:19 +08:00
|
|
|
DBG(DbgOutf( "::SelectAll(%s)\n", bSelect ? "sal_True" : "sal_False" ));
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
ImplClear();
|
|
|
|
if ( bSelect )
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.push_back( new Range(aTotRange) );
|
2000-09-18 16:07:07 +00:00
|
|
|
nSelCount = aTotRange.Len();
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG(Print( this ));
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
sal_Bool MultiSelection::Select( long nIndex, sal_Bool bSelect )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
DBG_ASSERT( aTotRange.IsInside(nIndex), "selected index out of range" );
|
|
|
|
|
|
|
|
// out of range?
|
|
|
|
if ( !aTotRange.IsInside(nIndex) )
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// find the virtual target position
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t nSubSelPos = ImplFindSubSelection( nIndex );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( bSelect )
|
|
|
|
{
|
|
|
|
// is it included in the found sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nSubSelPos < aSels.size() && aSels[ nSubSelPos ]->IsInside( nIndex ) )
|
2000-09-18 16:07:07 +00:00
|
|
|
// already selected, nothing to do
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// it will become selected
|
|
|
|
++nSelCount;
|
|
|
|
|
|
|
|
// is it at the end of the previous sub selection
|
|
|
|
if ( nSubSelPos > 0 &&
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels[ nSubSelPos-1 ]->Max() == (nIndex-1) )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// expand the previous sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels[ nSubSelPos-1 ]->Max() = nIndex;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// try to merge the previous sub selection
|
|
|
|
ImplMergeSubSelections( nSubSelPos-1, nSubSelPos );
|
|
|
|
}
|
|
|
|
// is is at the beginning of the found sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
else if ( nSubSelPos < aSels.size()
|
|
|
|
&& aSels[ nSubSelPos ]->Min() == (nIndex+1)
|
|
|
|
)
|
2000-09-18 16:07:07 +00:00
|
|
|
// expand the found sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels[ nSubSelPos ]->Min() = nIndex;
|
2000-09-18 16:07:07 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// create a new sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nSubSelPos < aSels.size() ) {
|
|
|
|
ImpSelList::iterator it = aSels.begin();
|
|
|
|
::std::advance( it, nSubSelPos );
|
|
|
|
aSels.insert( it, new Range( nIndex, nIndex ) );
|
|
|
|
} else {
|
|
|
|
aSels.push_back( new Range( nIndex, nIndex ) );
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( bCurValid && nCurSubSel >= nSubSelPos )
|
|
|
|
++nCurSubSel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// is it excluded from the found sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nSubSelPos >= aSels.size()
|
|
|
|
|| !aSels[ nSubSelPos ]->IsInside( nIndex )
|
|
|
|
) {
|
2000-09-18 16:07:07 +00:00
|
|
|
// not selected, nothing to do
|
|
|
|
DBG(Print( this ));
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// it will become deselected
|
|
|
|
--nSelCount;
|
|
|
|
|
|
|
|
// is it the only index in the found sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( aSels[ nSubSelPos ]->Len() == 1 )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// remove the complete sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
ImpSelList::iterator it = aSels.begin();
|
|
|
|
::std::advance( it, nSubSelPos );
|
|
|
|
delete *it;
|
|
|
|
aSels.erase( it );
|
2000-09-18 16:07:07 +00:00
|
|
|
DBG(Print( this ));
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// is it at the beginning of the found sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( aSels[ nSubSelPos ]->Min() == nIndex )
|
|
|
|
++aSels[ nSubSelPos ]->Min();
|
2000-09-18 16:07:07 +00:00
|
|
|
// is it at the end of the found sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
else if ( aSels[ nSubSelPos ]->Max() == nIndex )
|
|
|
|
--aSels[ nSubSelPos ]->Max();
|
2000-09-18 16:07:07 +00:00
|
|
|
// it is in the middle of the found sub selection?
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// split the sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nSubSelPos < aSels.size() ) {
|
|
|
|
ImpSelList::iterator it = aSels.begin();
|
|
|
|
::std::advance( it, nSubSelPos );
|
|
|
|
aSels.insert( it, new Range( aSels[ nSubSelPos ]->Min(), nIndex-1 ) );
|
|
|
|
} else {
|
|
|
|
aSels.push_back( new Range( aSels[ nSubSelPos ]->Min(), nIndex-1 ) );
|
|
|
|
}
|
|
|
|
aSels[ nSubSelPos+1 ]->Min() = nIndex + 1;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG(Print( this ));
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
void MultiSelection::Select( const Range& rIndexRange, sal_Bool bSelect )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
Range* pRange;
|
|
|
|
long nOld;
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
sal_uIntPtr nTmpMin = rIndexRange.Min();
|
|
|
|
sal_uIntPtr nTmpMax = rIndexRange.Max();
|
|
|
|
sal_uIntPtr nCurMin = FirstSelected();
|
|
|
|
sal_uIntPtr nCurMax = LastSelected();
|
2000-09-18 16:07:07 +00:00
|
|
|
DBG_ASSERT(aTotRange.IsInside(nTmpMax), "selected index out of range" );
|
|
|
|
DBG_ASSERT(aTotRange.IsInside(nTmpMin), "selected index out of range" );
|
|
|
|
|
|
|
|
// gesamte Selektion ersetzen ?
|
|
|
|
if( nTmpMin <= nCurMin && nTmpMax >= nCurMax )
|
|
|
|
{
|
|
|
|
ImplClear();
|
|
|
|
if ( bSelect )
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.push_back( new Range(rIndexRange) );
|
2000-09-18 16:07:07 +00:00
|
|
|
nSelCount = rIndexRange.Len();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// links erweitern ?
|
|
|
|
if( nTmpMax < nCurMin )
|
|
|
|
{
|
|
|
|
if( bSelect )
|
|
|
|
{
|
|
|
|
// ersten Range erweitern ?
|
|
|
|
if( nCurMin > (nTmpMax+1) )
|
|
|
|
{
|
|
|
|
pRange = new Range( rIndexRange );
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.insert( aSels.begin() , pRange );
|
2000-09-18 16:07:07 +00:00
|
|
|
nSelCount += pRange->Len();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
pRange = aSels.front();
|
2000-09-18 16:07:07 +00:00
|
|
|
nOld = pRange->Min();
|
|
|
|
pRange->Min() = (long)nTmpMin;
|
|
|
|
nSelCount += ( nOld - nTmpMin );
|
|
|
|
}
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// rechts erweitern ?
|
|
|
|
else if( nTmpMin > nCurMax )
|
|
|
|
{
|
|
|
|
if( bSelect )
|
|
|
|
{
|
|
|
|
// letzten Range erweitern ?
|
|
|
|
if( nTmpMin > (nCurMax+1) )
|
|
|
|
{
|
|
|
|
pRange = new Range( rIndexRange );
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.push_back( pRange );
|
2000-09-18 16:07:07 +00:00
|
|
|
nSelCount += pRange->Len();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
pRange = aSels.back();
|
2000-09-18 16:07:07 +00:00
|
|
|
nOld = pRange->Max();
|
|
|
|
pRange->Max() = (long)nTmpMax;
|
|
|
|
nSelCount += ( nTmpMax - nOld );
|
|
|
|
}
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//HACK(Hier muss noch optimiert werden)
|
|
|
|
while( nTmpMin <= nTmpMax )
|
|
|
|
{
|
|
|
|
Select( nTmpMin, bSelect );
|
|
|
|
nTmpMin++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
sal_Bool MultiSelection::IsSelected( long nIndex ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// find the virtual target position
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t nSubSelPos = ImplFindSubSelection( nIndex );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
return nSubSelPos < aSels.size() && aSels[ nSubSelPos ]->IsInside(nIndex);
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MultiSelection::Insert( long nIndex, long nCount )
|
|
|
|
{
|
|
|
|
DBG(DbgOutf( "::Insert(%ld, %ld)\n", nIndex, nCount ));
|
|
|
|
|
|
|
|
// find the virtual target position
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t nSubSelPos = ImplFindSubSelection( nIndex );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// did we need to shift the sub selections?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nSubSelPos < aSels.size() )
|
|
|
|
{ // did we insert an unselected into an existing sub selection?
|
|
|
|
if ( !bSelectNew
|
|
|
|
&& aSels[ nSubSelPos ]->Min() != nIndex
|
|
|
|
&& aSels[ nSubSelPos ]->IsInside(nIndex)
|
|
|
|
) { // split the sub selection
|
|
|
|
if ( nSubSelPos < aSels.size() ) {
|
|
|
|
ImpSelList::iterator it = aSels.begin();
|
|
|
|
::std::advance( it, nSubSelPos );
|
|
|
|
aSels.insert( it, new Range( aSels[ nSubSelPos ]->Min(), nIndex-1 ) );
|
|
|
|
} else {
|
|
|
|
aSels.push_back( new Range( aSels[ nSubSelPos ]->Min(), nIndex-1 ) );
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
++nSubSelPos;
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels[ nSubSelPos ]->Min() = nIndex;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// did we append an selected to an existing sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
else if ( bSelectNew
|
|
|
|
&& nSubSelPos > 0
|
|
|
|
&& aSels[ nSubSelPos ]->Max() == nIndex-1
|
|
|
|
) // expand the previous sub selection
|
|
|
|
aSels[ nSubSelPos-1 ]->Max() += nCount;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// did we insert an selected into an existing sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
else if ( bSelectNew
|
|
|
|
&& aSels[ nSubSelPos ]->Min() == nIndex
|
|
|
|
) { // expand the sub selection
|
|
|
|
aSels[ nSubSelPos ]->Max() += nCount;
|
2000-09-18 16:07:07 +00:00
|
|
|
++nSubSelPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// shift the sub selections behind the inserting position
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t nPos = nSubSelPos; nPos < aSels.size(); ++nPos )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels[ nPos ]->Min() += nCount;
|
|
|
|
aSels[ nPos ]->Max() += nCount;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
aTotRange.Max() += nCount;
|
|
|
|
if ( bSelectNew )
|
|
|
|
nSelCount += nCount;
|
|
|
|
|
|
|
|
DBG(Print( this ));
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MultiSelection::Remove( long nIndex )
|
|
|
|
{
|
|
|
|
DBG(DbgOutf( "::Remove(%ld)\n", nIndex ));
|
|
|
|
|
|
|
|
// find the virtual target position
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t nSubSelPos = ImplFindSubSelection( nIndex );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// did we remove from an existing sub selection?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nSubSelPos < aSels.size()
|
|
|
|
&& aSels[ nSubSelPos ]->IsInside(nIndex)
|
|
|
|
) {
|
2000-09-18 16:07:07 +00:00
|
|
|
// does this sub selection only contain the index to be deleted
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( aSels[ nSubSelPos ]->Len() == 1 ) {
|
2000-09-18 16:07:07 +00:00
|
|
|
// completely remove the sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
ImpSelList::iterator it = aSels.begin();
|
|
|
|
::std::advance( it, nSubSelPos );
|
|
|
|
delete *it;
|
|
|
|
aSels.erase( it );
|
|
|
|
} else {
|
2000-09-18 16:07:07 +00:00
|
|
|
// shorten this sub selection
|
2011-02-13 13:14:05 -08:00
|
|
|
--( aSels[ nSubSelPos++ ]->Max() );
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// adjust the selected counter
|
|
|
|
--nSelCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
// shift the sub selections behind the removed index
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t nPos = nSubSelPos; nPos < aSels.size(); ++nPos )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
--( aSels[ nPos ]->Min() );
|
|
|
|
--( aSels[ nPos ]->Max() );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
aTotRange.Max() -= 1;
|
|
|
|
|
|
|
|
DBG(Print( this ));
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MultiSelection::Append( long nCount )
|
|
|
|
{
|
|
|
|
long nPrevLast = aTotRange.Max();
|
|
|
|
aTotRange.Max() += nCount;
|
|
|
|
if ( bSelectNew )
|
|
|
|
{
|
|
|
|
nSelCount += nCount;
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.push_back( new Range( nPrevLast+1, nPrevLast + nCount ) );
|
|
|
|
if ( aSels.size() > 1 )
|
|
|
|
ImplMergeSubSelections( aSels.size() - 2, aSels.size() );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
long MultiSelection::ImplFwdUnselected()
|
|
|
|
{
|
|
|
|
if ( !bCurValid )
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( ( nCurSubSel < aSels.size() )
|
|
|
|
&& ( aSels[ nCurSubSel ]->Min() <= nCurIndex )
|
|
|
|
)
|
|
|
|
nCurIndex = aSels[ nCurSubSel++ ]->Max() + 1;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( nCurIndex <= aTotRange.Max() )
|
|
|
|
return nCurIndex;
|
|
|
|
else
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
long MultiSelection::ImplBwdUnselected()
|
|
|
|
{
|
|
|
|
if ( !bCurValid )
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( aSels[ nCurSubSel ]->Max() < nCurIndex )
|
2000-09-18 16:07:07 +00:00
|
|
|
return nCurIndex;
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
nCurIndex = aSels[ nCurSubSel-- ]->Min() - 1;
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( nCurIndex >= 0 )
|
|
|
|
return nCurIndex;
|
|
|
|
else
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
long MultiSelection::FirstSelected( sal_Bool bInverse )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
bInverseCur = bInverse;
|
|
|
|
nCurSubSel = 0;
|
|
|
|
|
|
|
|
if ( bInverseCur )
|
|
|
|
{
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid = nSelCount < sal_uIntPtr(aTotRange.Len());
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( bCurValid )
|
|
|
|
{
|
|
|
|
nCurIndex = 0;
|
|
|
|
return ImplFwdUnselected();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
bCurValid = !aSels.empty();
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( bCurValid )
|
2011-02-13 13:14:05 -08:00
|
|
|
return nCurIndex = aSels[ 0 ]->Min();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2006-06-19 12:47:57 +00:00
|
|
|
long MultiSelection::LastSelected()
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
nCurSubSel = aSels.size() - 1;
|
|
|
|
bCurValid = !aSels.empty();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( bCurValid )
|
2011-02-13 13:14:05 -08:00
|
|
|
return nCurIndex = aSels[ nCurSubSel ]->Max();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
long MultiSelection::NextSelected()
|
|
|
|
{
|
|
|
|
if ( !bCurValid )
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
|
|
|
|
if ( bInverseCur )
|
|
|
|
{
|
|
|
|
++nCurIndex;
|
|
|
|
return ImplFwdUnselected();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// is the next index in the current sub selection too?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nCurIndex < aSels[ nCurSubSel ]->Max() )
|
2000-09-18 16:07:07 +00:00
|
|
|
return ++nCurIndex;
|
|
|
|
|
|
|
|
// are there further sub selections?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( ++nCurSubSel < aSels.size() )
|
|
|
|
return nCurIndex = aSels[ nCurSubSel ]->Min();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// we are at the end!
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
long MultiSelection::PrevSelected()
|
|
|
|
{
|
|
|
|
if ( !bCurValid )
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
|
|
|
|
if ( bInverseCur )
|
|
|
|
{
|
|
|
|
--nCurIndex;
|
|
|
|
return ImplBwdUnselected();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// is the previous index in the current sub selection too?
|
2011-02-13 13:14:05 -08:00
|
|
|
if ( nCurIndex > aSels[ nCurSubSel ]->Min() )
|
2000-09-18 16:07:07 +00:00
|
|
|
return --nCurIndex;
|
|
|
|
|
|
|
|
// are there previous sub selections?
|
|
|
|
if ( nCurSubSel > 0 )
|
|
|
|
{
|
|
|
|
--nCurSubSel;
|
2011-02-13 13:14:05 -08:00
|
|
|
return nCurIndex = aSels[ nCurSubSel ]->Max();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// we are at the beginning!
|
|
|
|
return SFX_ENDOFSELECTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MultiSelection::SetTotalRange( const Range& rTotRange )
|
|
|
|
{
|
|
|
|
aTotRange = rTotRange;
|
|
|
|
|
|
|
|
// die untere Bereichsgrenze anpassen
|
2011-02-13 13:14:05 -08:00
|
|
|
Range* pRange = aSels.empty() ? NULL : aSels.front();
|
2000-09-18 16:07:07 +00:00
|
|
|
while( pRange )
|
|
|
|
{
|
|
|
|
if( pRange->Max() < aTotRange.Min() )
|
|
|
|
{
|
|
|
|
delete pRange;
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.erase( aSels.begin() );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else if( pRange->Min() < aTotRange.Min() )
|
|
|
|
{
|
|
|
|
pRange->Min() = aTotRange.Min();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
pRange = aSels.empty() ? NULL : aSels.front();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// die obere Bereichsgrenze anpassen
|
2011-02-13 13:14:05 -08:00
|
|
|
size_t nCount = aSels.size();
|
2000-09-18 16:07:07 +00:00
|
|
|
while( nCount )
|
|
|
|
{
|
2011-02-13 13:14:05 -08:00
|
|
|
pRange = aSels[ nCount - 1 ];
|
2000-09-18 16:07:07 +00:00
|
|
|
if( pRange->Min() > aTotRange.Max() )
|
|
|
|
{
|
|
|
|
delete pRange;
|
2011-02-13 13:14:05 -08:00
|
|
|
aSels.pop_back();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else if( pRange->Max() > aTotRange.Max() )
|
|
|
|
{
|
|
|
|
pRange->Max() = aTotRange.Max();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
2011-02-13 13:14:05 -08:00
|
|
|
nCount = aSels.size();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Selection-Count neu berechnen
|
|
|
|
nSelCount = 0;
|
2011-02-13 13:14:05 -08:00
|
|
|
for ( size_t i = 0, n = aSels.size(); i < n; ++ i ) {
|
2000-09-18 16:07:07 +00:00
|
|
|
nSelCount += pRange->Len();
|
|
|
|
}
|
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
bCurValid = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
nCurIndex = 0;
|
|
|
|
}
|
2009-07-08 16:27:08 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// StringRangeEnumerator
|
|
|
|
//
|
|
|
|
// -----------------------------------------------------------------------
|
2009-07-10 13:52:54 +00:00
|
|
|
StringRangeEnumerator::StringRangeEnumerator( const rtl::OUString& i_rInput,
|
|
|
|
sal_Int32 i_nMinNumber,
|
|
|
|
sal_Int32 i_nMaxNumber,
|
|
|
|
sal_Int32 i_nLogicalOffset
|
|
|
|
)
|
|
|
|
: mnCount( 0 )
|
|
|
|
, mnMin( i_nMinNumber )
|
|
|
|
, mnMax( i_nMaxNumber )
|
|
|
|
, mnOffset( i_nLogicalOffset )
|
|
|
|
{
|
|
|
|
setRange( i_rInput );
|
|
|
|
}
|
2009-07-08 16:27:08 +00:00
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
bool StringRangeEnumerator::checkValue( sal_Int32 i_nValue, const std::set< sal_Int32 >* i_pPossibleValues ) const
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
if( mnMin >= 0 && i_nValue < mnMin )
|
|
|
|
return false;
|
|
|
|
if( mnMax >= 0 && i_nValue > mnMax )
|
|
|
|
return false;
|
|
|
|
if( i_nValue < 0 )
|
|
|
|
return false;
|
|
|
|
if( i_pPossibleValues && i_pPossibleValues->find( i_nValue ) == i_pPossibleValues->end() )
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-23 13:30:17 +01:00
|
|
|
bool StringRangeEnumerator::insertRange( sal_Int32 i_nFirst, sal_Int32 i_nLast, bool bSequence, bool bMayAdjust )
|
2009-07-10 13:52:54 +00:00
|
|
|
{
|
|
|
|
bool bSuccess = true;
|
|
|
|
if( bSequence )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
if( i_nFirst == -1 )
|
|
|
|
i_nFirst = mnMin;
|
|
|
|
if( i_nLast == -1 )
|
|
|
|
i_nLast = mnMax;
|
2009-11-23 13:30:17 +01:00
|
|
|
if( bMayAdjust )
|
|
|
|
{
|
|
|
|
if( i_nFirst < mnMin )
|
|
|
|
i_nFirst = mnMin;
|
|
|
|
if( i_nFirst > mnMax )
|
|
|
|
i_nFirst = mnMax;
|
|
|
|
if( i_nLast < mnMin )
|
|
|
|
i_nLast = mnMin;
|
|
|
|
if( i_nLast > mnMax )
|
|
|
|
i_nLast = mnMax;
|
|
|
|
}
|
2009-07-10 13:52:54 +00:00
|
|
|
if( checkValue( i_nFirst ) && checkValue( i_nLast ) )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
maSequence.push_back( Range( i_nFirst, i_nLast ) );
|
2009-07-10 14:33:03 +00:00
|
|
|
sal_Int32 nNumber = i_nLast - i_nFirst;
|
|
|
|
nNumber = nNumber < 0 ? -nNumber : nNumber;
|
|
|
|
mnCount += nNumber + 1;
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
2009-07-10 13:52:54 +00:00
|
|
|
else
|
|
|
|
bSuccess = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( i_nFirst >= 0 )
|
|
|
|
{
|
|
|
|
if( checkValue( i_nFirst ) )
|
|
|
|
{
|
|
|
|
maSequence.push_back( Range( i_nFirst, i_nFirst ) );
|
|
|
|
mnCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bSuccess = false;
|
|
|
|
}
|
|
|
|
if( i_nLast >= 0 )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
if( checkValue( i_nLast ) )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
maSequence.push_back( Range( i_nLast, i_nLast ) );
|
|
|
|
mnCount++;
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
2009-07-10 13:52:54 +00:00
|
|
|
else
|
|
|
|
bSuccess = false;
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-10 13:52:54 +00:00
|
|
|
|
|
|
|
return bSuccess;
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
|
|
|
|
2009-11-23 13:30:17 +01:00
|
|
|
bool StringRangeEnumerator::setRange( const rtl::OUString& i_rNewRange, bool i_bStrict )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
mnCount = 0;
|
|
|
|
maSequence.clear();
|
|
|
|
|
2009-07-13 14:32:36 +00:00
|
|
|
// we love special cases
|
|
|
|
if( i_rNewRange.getLength() == 0 )
|
|
|
|
{
|
|
|
|
if( mnMin >= 0 && mnMax >= 0 )
|
|
|
|
{
|
2009-11-23 13:30:17 +01:00
|
|
|
insertRange( mnMin, mnMax, mnMin != mnMax, ! i_bStrict );
|
2009-07-13 14:32:36 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
const sal_Unicode* pInput = i_rNewRange.getStr();
|
|
|
|
rtl::OUStringBuffer aNumberBuf( 16 );
|
|
|
|
sal_Int32 nLastNumber = -1, nNumber = -1;
|
|
|
|
bool bSequence = false;
|
|
|
|
bool bSuccess = true;
|
|
|
|
while( *pInput )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
while( *pInput >= sal_Unicode('0') && *pInput <= sal_Unicode('9') )
|
|
|
|
aNumberBuf.append( *pInput++ );
|
|
|
|
if( aNumberBuf.getLength() )
|
|
|
|
{
|
|
|
|
if( nNumber != -1 )
|
|
|
|
{
|
|
|
|
if( bSequence )
|
|
|
|
{
|
2009-11-23 13:30:17 +01:00
|
|
|
if( ! insertRange( nLastNumber, nNumber, true, ! i_bStrict ) && i_bStrict )
|
2009-07-10 13:52:54 +00:00
|
|
|
{
|
|
|
|
bSuccess = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nLastNumber = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-11-23 13:30:17 +01:00
|
|
|
if( ! insertRange( nNumber, nNumber, false, ! i_bStrict ) && i_bStrict )
|
2009-07-10 13:52:54 +00:00
|
|
|
{
|
|
|
|
bSuccess = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nNumber = aNumberBuf.makeStringAndClear().toInt32();
|
|
|
|
nNumber += mnOffset;
|
|
|
|
}
|
|
|
|
bool bInsertRange = false;
|
|
|
|
if( *pInput == sal_Unicode('-') )
|
|
|
|
{
|
|
|
|
nLastNumber = nNumber;
|
|
|
|
nNumber = -1;
|
|
|
|
bSequence = true;
|
|
|
|
}
|
|
|
|
else if( *pInput == ' ' )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
else if( *pInput == sal_Unicode(',') || *pInput == sal_Unicode(';') )
|
|
|
|
bInsertRange = true;
|
2009-07-13 14:32:36 +00:00
|
|
|
else if( *pInput )
|
2009-07-10 13:52:54 +00:00
|
|
|
{
|
2009-07-13 14:32:36 +00:00
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
bSuccess = false;
|
|
|
|
break; // parse error
|
|
|
|
}
|
|
|
|
|
|
|
|
if( bInsertRange )
|
|
|
|
{
|
2009-11-23 13:30:17 +01:00
|
|
|
if( ! insertRange( nLastNumber, nNumber, bSequence, ! i_bStrict ) && i_bStrict )
|
2009-07-10 13:52:54 +00:00
|
|
|
{
|
|
|
|
bSuccess = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nNumber = nLastNumber = -1;
|
|
|
|
bSequence = false;
|
|
|
|
}
|
|
|
|
if( *pInput )
|
|
|
|
pInput++;
|
|
|
|
}
|
|
|
|
// insert last entries
|
2009-11-23 13:30:17 +01:00
|
|
|
insertRange( nLastNumber, nNumber, bSequence, ! i_bStrict );
|
2009-07-10 13:52:54 +00:00
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StringRangeEnumerator::hasValue( sal_Int32 i_nValue, const std::set< sal_Int32 >* i_pPossibleValues ) const
|
|
|
|
{
|
|
|
|
if( i_pPossibleValues && i_pPossibleValues->find( i_nValue ) == i_pPossibleValues->end() )
|
|
|
|
return false;
|
|
|
|
size_t n = maSequence.size();
|
|
|
|
for( size_t i= 0; i < n; ++i )
|
|
|
|
{
|
|
|
|
const StringRangeEnumerator::Range rRange( maSequence[i] );
|
|
|
|
if( rRange.nFirst < rRange.nLast )
|
|
|
|
{
|
|
|
|
if( i_nValue >= rRange.nFirst && i_nValue <= rRange.nLast )
|
|
|
|
return true;
|
|
|
|
}
|
2009-07-08 16:27:08 +00:00
|
|
|
else
|
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
if( i_nValue >= rRange.nLast && i_nValue <= rRange.nFirst )
|
|
|
|
return true;
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-10 13:52:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRangeEnumerator::Iterator& StringRangeEnumerator::Iterator::operator++()
|
|
|
|
{
|
|
|
|
if( nRangeIndex >= 0 && nCurrent >= 0 && pEnumerator )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
const StringRangeEnumerator::Range& rRange( pEnumerator->maSequence[nRangeIndex] );
|
|
|
|
bool bRangeChange = false;
|
|
|
|
if( rRange.nLast < rRange.nFirst )
|
|
|
|
{
|
|
|
|
// backward range
|
|
|
|
if( nCurrent > rRange.nLast )
|
|
|
|
nCurrent--;
|
|
|
|
else
|
|
|
|
bRangeChange = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// forward range
|
|
|
|
if( nCurrent < rRange.nLast )
|
|
|
|
nCurrent++;
|
|
|
|
else
|
|
|
|
bRangeChange = true;
|
|
|
|
}
|
|
|
|
if( bRangeChange )
|
|
|
|
{
|
|
|
|
nRangeIndex++;
|
|
|
|
if( size_t(nRangeIndex) == pEnumerator->maSequence.size() )
|
|
|
|
{
|
|
|
|
// reached the end
|
|
|
|
nRangeIndex = nCurrent = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nCurrent = pEnumerator->maSequence[nRangeIndex].nFirst;
|
|
|
|
}
|
|
|
|
if( nRangeIndex != -1 && nCurrent != -1 )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
if( ! pEnumerator->checkValue( nCurrent, pPossibleValues ) )
|
|
|
|
return ++(*this);
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-10 13:52:54 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2009-07-08 16:27:08 +00:00
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
sal_Int32 StringRangeEnumerator::Iterator::operator*() const
|
|
|
|
{
|
|
|
|
return nCurrent;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StringRangeEnumerator::Iterator::operator==( const Iterator& i_rCompare ) const
|
|
|
|
{
|
|
|
|
return i_rCompare.pEnumerator == pEnumerator && i_rCompare.nRangeIndex == nRangeIndex && i_rCompare.nCurrent == nCurrent;
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
StringRangeEnumerator::Iterator StringRangeEnumerator::begin( const std::set< sal_Int32 >* i_pPossibleValues ) const
|
2009-07-09 14:01:10 +00:00
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
StringRangeEnumerator::Iterator it( this,
|
|
|
|
i_pPossibleValues,
|
|
|
|
maSequence.empty() ? -1 : 0,
|
|
|
|
maSequence.empty() ? -1 : maSequence[0].nFirst );
|
|
|
|
if( ! checkValue(*it, i_pPossibleValues ) )
|
|
|
|
++it;
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRangeEnumerator::Iterator StringRangeEnumerator::end( const std::set< sal_Int32 >* i_pPossibleValues ) const
|
|
|
|
{
|
|
|
|
return StringRangeEnumerator::Iterator( this, i_pPossibleValues, -1, -1 );
|
2009-07-09 14:01:10 +00:00
|
|
|
}
|
|
|
|
|
2009-07-08 16:27:08 +00:00
|
|
|
bool StringRangeEnumerator::getRangesFromString( const OUString& i_rPageRange,
|
|
|
|
std::vector< sal_Int32 >& o_rPageVector,
|
|
|
|
sal_Int32 i_nMinNumber,
|
|
|
|
sal_Int32 i_nMaxNumber,
|
2009-07-09 14:01:10 +00:00
|
|
|
sal_Int32 i_nLogicalOffset,
|
|
|
|
std::set< sal_Int32 >* i_pPossibleValues
|
2009-07-08 16:27:08 +00:00
|
|
|
)
|
|
|
|
{
|
2009-07-10 13:52:54 +00:00
|
|
|
StringRangeEnumerator aEnum;
|
|
|
|
aEnum.setMin( i_nMinNumber );
|
|
|
|
aEnum.setMax( i_nMaxNumber );
|
|
|
|
aEnum.setLogicalOffset( i_nLogicalOffset );
|
2009-07-08 16:27:08 +00:00
|
|
|
|
2009-07-10 13:52:54 +00:00
|
|
|
bool bRes = aEnum.setRange( i_rPageRange );
|
|
|
|
if( bRes )
|
2009-07-08 16:27:08 +00:00
|
|
|
{
|
|
|
|
o_rPageVector.clear();
|
2009-07-10 13:52:54 +00:00
|
|
|
o_rPageVector.reserve( aEnum.size() );
|
|
|
|
for( StringRangeEnumerator::Iterator it = aEnum.begin( i_pPossibleValues );
|
|
|
|
it != aEnum.end( i_pPossibleValues ); ++it )
|
|
|
|
{
|
|
|
|
o_rPageVector.push_back( *it );
|
|
|
|
}
|
2009-07-08 16:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bRes;
|
|
|
|
}
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|