summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/ui/inc/navipi.hxx63
-rw-r--r--sw/source/ui/utlui/glbltree.cxx191
-rw-r--r--sw/source/ui/utlui/navipi.cxx296
3 files changed, 31 insertions, 519 deletions
diff --git a/sw/source/ui/inc/navipi.hxx b/sw/source/ui/inc/navipi.hxx
index 73f500293e91..7f56bd7ea696 100644
--- a/sw/source/ui/inc/navipi.hxx
+++ b/sw/source/ui/inc/navipi.hxx
@@ -2,60 +2,11 @@
*
* $RCSfile: navipi.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:14:41 $
- *
- * The Contents of this file are made available subject to the terms of
- * either of the following licenses
- *
- * - GNU Lesser General Public License Version 2.1
- * - Sun Industry Standards Source License Version 1.1
- *
- * Sun Microsystems Inc., October, 2000
- *
- * GNU Lesser General Public License Version 2.1
- * =============================================
- * Copyright 2000 by Sun Microsystems, Inc.
- * 901 San Antonio Road, Palo Alto, CA 94303, USA
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1, as published by the Free Software Foundation.
- *
- * This library 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 for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- *
- *
- * Sun Industry Standards Source License Version 1.1
- * =================================================
- * The contents of this file are subject to the Sun Industry Standards
- * Source License Version 1.1 (the "License"); You may not use this file
- * except in compliance with the License. You may obtain a copy of the
- * License at http://www.openoffice.org/license.html.
- *
- * Software provided under this License is provided on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
- * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
- * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
- * See the License for the specific provisions governing your rights and
- * obligations concerning the Software.
- *
- * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
- *
- * Copyright: 2000 by Sun Microsystems, Inc.
- *
- * All Rights Reserved.
- *
- * Contributor(s): _______________________________________
+ * last change: $Author: os $ $Date: 2000-09-21 13:40:18 $
*
+ * Copyright according the GNU Public License.
*
************************************************************************/
#ifndef _NAVIPI_HXX
@@ -93,15 +44,14 @@ class SfxObjectShellLock;
class SfxChildWindowContext;
//-----------------------------------------------------------------------
-
+class SwNavigationPI;
class SwNavHelpToolBox : public SwHelpToolBox
{
virtual void MouseButtonDown(const MouseEvent &rEvt);
virtual void RequestHelp( const HelpEvent& rHEvt );
public:
- SwNavHelpToolBox(Window* pParent, const ResId &rResId) :
- SwHelpToolBox(pParent, rResId){}
+ SwNavHelpToolBox(SwNavigationPI* pParent, const ResId &rResId);
};
@@ -128,6 +78,7 @@ private:
SwView* pContentView;
SwWrtShell* pContentWrtShell;
SwView* pActContView;
+ SwView* pCreateView;
SfxChildWindowContext* pContextWin;
@@ -193,7 +144,6 @@ protected:
BOOL ToggleTree();
void SetGlobalMode(BOOL bSet) {bGlobalMode = bSet;}
-
public:
SwNavigationPI(SfxBindings*, SfxChildWindowContext*, Window*);
~SwNavigationPI();
@@ -216,6 +166,7 @@ public:
BOOL IsGlobalDoc() const;
BOOL IsGlobalMode() const {return bGlobalMode;}
+ SwView* GetCreateView() const {return pCreateView;}
};
class SwNavigationChild : public SfxChildWindowContext
diff --git a/sw/source/ui/utlui/glbltree.cxx b/sw/source/ui/utlui/glbltree.cxx
index fa2bb61cfc1a..9c7023baa710 100644
--- a/sw/source/ui/utlui/glbltree.cxx
+++ b/sw/source/ui/utlui/glbltree.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: glbltree.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:14:50 $
+ * last change: $Author: os $ $Date: 2000-09-21 13:39:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -900,7 +900,7 @@ void SwGlobalTree::InsertRegion( const SwGlblDocContent* pCont,
const String* pFileName )
{
String sFileName;
- SwView *pView = ::GetActiveView();
+ SwView *pView = GetParentWindow()->GetCreateView();
SwWrtShell &rSh = pView->GetWrtShell();
String sFilePassword;
if(!pFileName)
@@ -1170,7 +1170,7 @@ IMPL_LINK( SwGlobalTree, PopupHdl, Menu* , pMenu)
// Bereich mit dem Dok-Namen einfgen
// eigenes Dok in den Vordergrund
- if(aFrmListener.IsValid())
+ if(aFrmListener.IsValid() && sNewFile.Len())
{
pGlobFrm->ToTop();
// durch das Update sind die Eintraege invalid
@@ -1332,7 +1332,7 @@ void SwGlobalTree::ExecCommand(USHORT nCmd)
--------------------------------------------------*/
BOOL SwGlobalTree::Update(BOOL bHard)
{
- SwView* pActView = ::GetActiveView();
+ SwView* pActView = GetParentWindow()->GetCreateView();
BOOL bRet = FALSE;
if(pActView)
{
@@ -1494,185 +1494,4 @@ void SwLBoxString::Paint( const Point& rPos, SvLBox& rDev, USHORT nFlags,
else
SvLBoxString::Paint( rPos, rDev, nFlags, pEntry);
}
-/*------------------------------------------------------------------------
-
- $Log: not supported by cvs2svn $
- Revision 1.57 2000/09/18 16:06:17 willem.vandorp
- OpenOffice header added.
-
- Revision 1.56 2000/09/07 15:59:35 os
- change: SFX_DISPATCHER/SFX_BINDINGS removed
-
- Revision 1.55 2000/09/06 09:57:09 os
- #78501# force scrolling in QueryDrop
-
- Revision 1.54 2000/08/24 10:42:23 os
- #78054# survive closing of master document while SaveAs dialog is active
-
- Revision 1.53 2000/07/03 08:54:59 jp
- must changes for VCL
-
- Revision 1.52 2000/06/26 13:12:59 os
- INetURLObject::SmartRelToAbs removed
-
- Revision 1.51 2000/05/23 19:54:20 jp
- Bugfixes for Unicode
-
- Revision 1.50 2000/03/23 14:59:30 os
- #74356# goto index: use name - not title
-
- Revision 1.49 2000/03/03 15:17:05 os
- StarView remainders removed
-
- Revision 1.48 2000/02/29 11:05:46 os
- #73599# PullDownMenu: Ids/HelpIds corrected
-
- Revision 1.47 2000/02/15 10:33:10 os
- #72902# diable navigator in readonly documents
-
- Revision 1.46 2000/02/11 15:00:36 hr
- #70473# changes for unicode ( patched by automated patchtool )
-
- Revision 1.45 2000/02/07 14:39:11 os
- #72747# insert index into global documents
-
- Revision 1.44 1999/12/09 12:29:12 os
- #70284# show Bitmaps in hyperlink insert dialog# content.cxx glbltree.cxx navipi.hrc navipi.src
-
- Revision 1.43 1999/09/10 08:36:15 os
- GetTOXDescription with TOXTypes param
-
- Revision 1.42 1999/08/25 13:24:42 OS
- use SwMultiTOXTabDialog
-
-
- Rev 1.41 25 Aug 1999 15:24:42 OS
- use SwMultiTOXTabDialog
-
- Rev 1.40 20 May 1999 11:02:24 OS
- Ctrl-DoubleClick an Control weiterleiten - Docking
-
- Rev 1.39 21 Apr 1999 09:42:58 OS
- #65050# GPF im Update ohne View behoben
-
- Rev 1.38 29 Mar 1999 12:23:38 OS
- #63929# neuer Verzeichnisdialog vollstaendig
-
- Rev 1.37 12 Nov 1998 15:07:26 JP
- Bug #54342#: auch bei GlobalDocs das Filepasswort an die Section uebertragen
-
- Rev 1.36 12 Nov 1998 14:27:20 OS
- #59271# Referer mitschicken
-
- Rev 1.35 04 Nov 1998 13:22:18 OS
- #58673# Existenzanzeige der Teildokumente farbig
-
- Rev 1.34 03 Nov 1998 14:39:22 OS
- #58673# Existenzanzeige fuer Global-Teildokumente
-
- Rev 1.33 02 Jul 1998 16:57:08 OM
- #46638# Keine Grafiken auf Navigator droppen
-
- Rev 1.32 29 Jun 1998 17:52:42 TJ
- include
-
- Rev 1.31 31 Mar 1998 15:30:44 OS
- SetReadonlyUI von IsAllProtect abhaengig #49077#
-
- Rev 1.30 13 Feb 1998 14:16:36 JP
- statt selbst den InserDocDialog zu rufen, die neue Funktion GetFileFilterNameDlg rufen
-
- Rev 1.29 23 Jan 1998 16:05:48 MA
- includes
-
- Rev 1.28 16 Jan 1998 14:18:46 OS
- #46660# Text im QueryDrop ablehnen; #46636# nach Doppelclick Focus ins Doc
-
- Rev 1.27 16 Jan 1998 11:03:06 OS
- #46637# per DnD auch am Ende einfuegen
- #46631# HTML nicht-readonly oeffnen
-
- Rev 1.26 19 Dec 1997 09:06:50 OS
- Change: UsrData im InsertEntry uebergben
-
- Rev 1.25 21 Nov 1997 12:10:14 MA
- includes
-
- Rev 1.24 03 Nov 1997 13:59:24 MA
- precomp entfernt
-
- Rev 1.23 07 Oct 1997 08:36:32 OS
- asynchrones Anzeigen der Dokumente, damit auch nicht-SW-Docs 'verknuepft' werden koennen #44346#
-
- Rev 1.22 04 Sep 1997 17:15:56 MA
- includes
-
- Rev 1.21 29 Aug 1997 15:57:32 OS
- PopupMenu::Execute mit Window* fuer VCL
-
- Rev 1.20 29 Aug 1997 14:00:26 OS
- DLL-Umbau
-
- Rev 1.19 15 Aug 1997 12:16:06 OS
- chartar/frmatr/txtatr aufgeteilt
-
- Rev 1.18 08 Aug 1997 17:25:30 OM
- Headerfile-Umstellung
-
- Rev 1.17 23 Jul 1997 21:44:58 HJS
- includes
-
- Rev 1.16 18 Jul 1997 17:28:26 OS
- Display fuer Update der UserData
-
- Rev 1.15 18 Jul 1997 16:33:40 OS
- hartes Update im RequestHelp #41845#
-
- Rev 1.14 16 Jul 1997 14:12:34 OS
- neues Dok: da kommt ein FrameItem, kein ViewFrameItem #41726#
-
- Rev 1.13 15 Jul 1997 16:47:06 OS
- HeplIds fuer PopUps
-
- Rev 1.12 09 Jul 1997 17:45:30 HJS
- includes
-
- Rev 1.11 03 Jul 1997 16:25:20 OS
- Update: nicht mit alten Sections, sondern mit ListBox-Inhalten vergleichen
-
- Rev 1.10 02 Jul 1997 14:11:54 OS
- InsertRegion: Token fuer Bereichsnamen herausfiltern
-
- Rev 1.9 01 Jul 1997 09:43:44 OS
- mind. den ersten Eintrag selektieren
-
- Rev 1.8 27 Jun 1997 08:15:50 OS
- SV-Defizit umpopoelt: nur die erste FileList ist echt
-
- Rev 1.7 25 Jun 1997 20:35:38 HJS
- includes
-
- Rev 1.6 25 Jun 1997 16:37:18 OS
- per Doppelclick Textposition anspringen bzw. gelinktes Doc laden
-
- Rev 1.5 25 Jun 1997 08:59:38 OS
- Neue Datei fuer Globaldokument
-
- Rev 1.4 22 Jun 1997 15:36:32 OS
- Drop von File-Listen
-
- Rev 1.3 21 Jun 1997 14:12:22 OS
- Bereiche mit Dateinamen versehen, RequsestHelp entsprechend impl.
-
- Rev 1.2 19 Jun 1997 17:35:58 OS
- Reste Globaldokumente
-
- Rev 1.1 19 Jun 1997 11:04:58 OS
- Update impl.
-
- Rev 1.0 18 Jun 1997 13:07:18 OS
- Initial revision.
-
-------------------------------------------------------------------------*/
-
diff --git a/sw/source/ui/utlui/navipi.cxx b/sw/source/ui/utlui/navipi.cxx
index f8dd3763762a..c49b29adb903 100644
--- a/sw/source/ui/utlui/navipi.cxx
+++ b/sw/source/ui/utlui/navipi.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: navipi.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:14:50 $
+ * last change: $Author: os $ $Date: 2000-09-21 13:39:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -581,6 +581,12 @@ IMPL_LINK( SwNavigationPI, ToolBoxClickHdl, ToolBox *, pBox )
return TRUE;
}
+/* -----------------------------19.09.00 15:16--------------------------------
+
+ ---------------------------------------------------------------------------*/
+SwNavHelpToolBox::SwNavHelpToolBox(SwNavigationPI* pParent, const ResId &rResId) :
+ SwHelpToolBox(pParent, rResId)
+{}
/*-----------------19.06.97 09:09-------------------
--------------------------------------------------*/
@@ -589,7 +595,7 @@ void __EXPORT SwNavHelpToolBox::MouseButtonDown(const MouseEvent &rEvt)
if(rEvt.GetButtons() == MOUSE_LEFT &&
FN_CREATE_NAVIGATION == GetItemId(rEvt.GetPosPixel()))
{
- SfxBindings& rBind = SfxViewFrame::Current()->GetBindings();
+ SfxBindings& rBind = ((SwNavigationPI*)GetParent())->GetCreateView()->GetViewFrame()->GetBindings();
rBind.ENTERREGISTRATIONS();
SwScrollNaviPopup* pPopup = new
SwScrollNaviPopup(FN_SCROLL_NAVIGATION,
@@ -631,9 +637,9 @@ IMPL_LINK( SwNavigationPI, EditAction, NumEditAction *, pEdit )
{
if(aPageChgTimer.IsActive())
aPageChgTimer.Stop();
- pView->GetWrtShell().GotoPage((USHORT)pEdit->GetValue());
- pView->GetEditWin().GrabFocus();
- pView->GetViewFrame()->GetBindings().Invalidate(FN_STAT_PAGE);
+ pCreateView->GetWrtShell().GotoPage((USHORT)pEdit->GetValue());
+ pCreateView->GetEditWin().GrabFocus();
+ pCreateView->GetViewFrame()->GetBindings().Invalidate(FN_STAT_PAGE);
}
return 0;
}
@@ -663,8 +669,9 @@ IMPL_LINK( SwNavigationPI, EditGetFocus, NumEditAction *, pEdit )
BOOL __EXPORT SwNavigationPI::Close()
{
- SFX_APP()->GetBindings().Invalidate(SID_NAVIGATOR);
- GetActiveView()->GetViewFrame()->GetDispatcher()->Execute(SID_NAVIGATOR);
+ SfxViewFrame* pVFrame = pCreateView->GetViewFrame();
+ pVFrame->GetBindings().Invalidate(SID_NAVIGATOR);
+ pVFrame->GetDispatcher()->Execute(SID_NAVIGATOR);
return TRUE;
}
@@ -864,8 +871,10 @@ SwNavigationPI::SwNavigationPI( SfxBindings* pBindings,
pActContView(0),
pContextWin(pCw),
nWishWidth(0),
- pConfig(SW_MOD()->GetNavigationConfig())
+ pConfig(SW_MOD()->GetNavigationConfig()),
+ pCreateView(::GetActiveView())
{
+
for(USHORT k = 0; k < aContentToolBox.GetItemCount(); k++)
aContentToolBox.SetItemImage(aContentToolBox.GetItemId(k),
aContentImageList.GetImage(aContentToolBox.GetItemId(k)));
@@ -1259,7 +1268,7 @@ SwNavigationChild::SwNavigationChild( Window* pParent,
{
SwNavigationPI* pNavi = new SwNavigationPI( pBindings, this, pParent );
SetWindow( pNavi );
- SfxViewFrame::Current()->GetBindings().Invalidate(SID_NAVIGATOR);
+ ::GetActiveView()->GetViewFrame()->GetBindings().Invalidate(SID_NAVIGATOR);
String sExtra = pInfo->aExtraString;
SwNavigationConfig* pNaviConfig = SW_MOD()->GetNavigationConfig();
@@ -1544,271 +1553,4 @@ IMPL_LINK( SwNavigationPI, PageEditModifyHdl, Edit*, EMPTYARG )
aPageChgTimer.Start();
return 0;
}
-/*------------------------------------------------------------------------
-
- $Log: not supported by cvs2svn $
- Revision 1.231 2000/09/18 16:06:18 willem.vandorp
- OpenOffice header added.
-
- Revision 1.230 2000/09/08 15:11:58 os
- use configuration service
-
- Revision 1.229 2000/09/07 15:03:22 os
- SFX_BINDINGS removed
- #78618# CreateFromInt32
-
- Revision 1.228 2000/07/03 08:55:03 jp
- must changes for VCL
-
- Revision 1.227 2000/05/24 13:48:35 hr
- conflict between STLPORT and Workshop header
-
- Revision 1.226 2000/05/23 19:54:27 jp
- Bugfixes for Unicode
-
- Revision 1.225 2000/04/18 15:14:08 os
- UNICODE
-
- Revision 1.224 2000/03/03 15:17:05 os
- StarView remainders removed
-
- Revision 1.223 2000/02/11 15:00:45 hr
- #70473# changes for unicode ( patched by automated patchtool )
-
- Revision 1.222 1999/10/25 07:26:56 os
- #69021# prevent showing of controls if ZoomedIn
-
- Revision 1.221 1999/09/10 08:36:52 os
- Chg: ExtraData in resources
-
- Revision 1.220 1999/06/09 11:29:42 JP
- have to change: SvxINetBookmark -> INetBookmark
-
-
- Rev 1.219 09 Jun 1999 13:29:42 JP
- have to change: SvxINetBookmark -> INetBookmark
-
- Rev 1.218 19 Apr 1999 17:14:48 JP
- Bug #64992#: ClearEntry mit Leerstring verhindern
-
- Rev 1.217 01 Apr 1999 11:14:08 OS
- #64267# breiteres NumericField statt doppelter Separatoren
-
- Rev 1.216 25 Jan 1999 13:50:10 JP
- Task #58677#: Crsr in Readonly Bereichen zulassen
-
- Rev 1.215 20 Jan 1999 17:09:18 AWO
- #59398# FormatIds
-
- Rev 1.214 11 Jan 1999 14:37:54 OS
- #58637# nach Reload im Global-Dok mind. neu painten
-
- Rev 1.213 05 Jan 1999 07:56:20 OS
- #60618# Global-Toolbox auch am ImageManager registrieren
-
- Rev 1.212 27 Nov 1998 14:59:04 AMA
- Fix #59951#59825#: Unterscheiden zwischen Rahmen-,Seiten- und Bereichsspalten
-
- Rev 1.211 03 Nov 1998 12:24:34 OS
- 58830# Enter/LeaveRegistrations
-
- Rev 1.210 26 Oct 1998 10:00:00 OS
- #58390# Seitenfeld springt Seite mit Zeitverzoegerung an
-
- Rev 1.209 17 Aug 1998 16:11:22 OS
- fuer die Doc-ListBox docshell-Title benutzen #54551#
-
- Rev 1.208 29 Jul 1998 12:18:58 OS
- FORCE_MAKE_VISIBLE benutzen - #53787#
-
- Rev 1.207 15 Jul 1998 12:53:06 OS
- Navigator an der SwView registrieren #34794#
-
- Rev 1.206 10 Jul 1998 14:03:10 MH
- internal comp.err
-
- Rev 1.205 02 Jul 1998 16:57:06 OM
- #46638# Keine Grafiken auf Navigator droppen
-
- Rev 1.204 24 Apr 1998 17:21:30 OS
- ListBox-Hoehe nicht setzen #49766#
-
- Rev 1.203 31 Mar 1998 15:31:10 OS
- SetReadonlyUI von IsAllProtect abhaengig #49077#
-
- Rev 1.202 17 Mar 1998 17:32:02 OS
- Separator neben dem NumericField #47922#
-
- Rev 1.201 12 Mar 1998 07:51:24 OS
- Toolbox umsortiert #47922#
-
- Rev 1.200 05 Feb 1998 07:47:40 OS
- DocListBox im Globaldoc immer hiden #46777#
-
- Rev 1.199 04 Feb 1998 14:28:04 OS
- DocListbox verstecken, wenn sie zu weit oben liegt #46777#
-
- Rev 1.198 12 Dec 1997 13:58:04 OS
- neuer Bookmark-Typ
-
- Rev 1.197 05 Dec 1997 16:51:44 OS
- Numerierungsumbau
-
- Rev 1.196 28 Nov 1997 14:00:22 OS
- Status fuer SHOW_CONTENT_BOX im _ZoomIn/_ZoomOut setzen #45580#
-
- Rev 1.195 21 Nov 1997 12:10:16 MA
- includes
-
- Rev 1.194 03 Nov 1997 13:59:28 MA
- precomp entfernt
-
- Rev 1.193 04 Sep 1997 17:15:58 MA
- includes
-
- Rev 1.192 29 Aug 1997 15:39:00 OS
- PopupMenu::Execute mit Window* fuer VCL
-
- Rev 1.191 17 Jul 1997 15:23:54 OS
- nach Reload durch Notfy die TreeListBoxen aktualisieren #41775#
-
- Rev 1.190 15 Jul 1997 11:31:00 OS
- Ids fuer Navigator PullDown-Menues
-
- Rev 1.189 08 Jul 1997 14:13:32 OS
- ConfigItems von der App ans Module
-
- Rev 1.188 03 Jul 1997 16:26:10 OS
- ToggleTree: _ZoomOut gfs. zuerst rufen
-
- Rev 1.187 23 Jun 1997 18:46:26 HJS
- includes
-
- Rev 1.186 21 Jun 1997 14:15:36 OS
- typ. Anf.zeichen werden nicht mehr gebraucht, Font an den TreeListBoxen auf STDFONT_SWISS
-
- Rev 1.185 20 Jun 1997 13:54:58 OS
- Move ueber View-Methode
-
- Rev 1.184 19 Jun 1997 17:36:40 OS
- Reste Globaldokumente
-
- Rev 1.183 19 Jun 1997 11:02:50 OS
- ReadOnly-Handling, Toolbox: RequestHelp und MousebuttonDown
-
- Rev 1.182 18 Jun 1997 13:20:52 OS
- Segmentierung raus
-
- Rev 1.181 18 Jun 1997 13:08:38 OS
- Globaldokument: Eintraege verschieben, _ZoomIn/Out angepasst
-
- Rev 1.180 17 Jun 1997 10:17:22 OS
- Globaldokument Teil 4 - Drag and Drop
-
- Rev 1.179 16 Jun 1997 12:01:22 OS
- Globaldokument Teil 3
-
- Rev 1.178 14 Jun 1997 08:50:00 OS
- Globaldokument Teil 2
-
- Rev 1.177 13 Jun 1997 07:36:06 OS
- Erweiterung fuer Globaldokument
-
- Rev 1.176 28 May 1997 11:58:14 OS
- Expand/Collapse-Zustand merken
-
- Rev 1.175 13 May 1997 11:48:38 OS
- Vorwaertsbew. mit Children per Drag and Drop: selektierte Eintreage abziehen #39885#
-
- Rev 1.174 16 Apr 1997 11:50:58 OS
- EnableAsyncDrag() an der TreeListBox
-
- Rev 1.173 14 Apr 1997 16:28:16 OS
- HelpId fuer InhaltstypenListBox
-
- Rev 1.172 08 Apr 1997 10:28:34 MA
- includes
-
- Rev 1.171 27 Mar 1997 11:59:52 OS
- Get7SetMinOutputSizePixel am SfxDockingWindow
-
- Rev 1.170 20 Feb 1997 17:02:08 OS
- GotoRegion impl., Frame und Grafik getrennt
-
- Rev 1.169 11 Feb 1997 14:21:48 OS
- DropMode mit variablen Images
-
- Rev 1.168 31 Jan 1997 13:35:44 OS
- HelpIds fuer Navigator-Toolbox und -Listbox
-
- Rev 1.167 10 Jan 1997 14:18:54 OS
- ConfigItem jetzt richtig
-
- Rev 1.166 27 Nov 1996 16:32:46 OS
- ConfigItem mitpflegen
-
- Rev 1.165 20 Nov 1996 16:20:58 OS
- Verschieben von Ueberschriften nur, wenn sie selektiert sind
-
- Rev 1.164 14 Nov 1996 19:01:38 OS
- jetzt auch wieder als PCH
-
- Rev 1.163 13 Nov 1996 14:30:52 OS
- neues ConfigItem: SwNavigationConfig
-
- Rev 1.162 12 Nov 1996 18:17:16 OS
- Resizing: Wunschbreite merken
-
- Rev 1.161 12 Nov 1996 17:10:18 OS
- Resizing, _ZoomIn/Out funktionieren wieder
-
- Rev 1.160 11 Nov 1996 10:54:12 MA
- ResMgr
-
- Rev 1.159 05 Nov 1996 16:55:34 OS
- Resize auch wieder im gedockten Zustand
-
- Rev 1.158 05 Nov 1996 15:27:16 OS
- Umstellung auf ChildWindowContext
-
- Rev 1.157 24 Oct 1996 13:36:44 JP
- String Umstellung: [] -> GetChar()
-
- Rev 1.156 02 Oct 1996 08:08:00 MA
- Umstellung Enable/Disable
-
- Rev 1.155 28 Aug 1996 15:42:34 OS
- includes
-
- Rev 1.154 27 Jul 1996 15:33:34 OS
- UpdateListBox auch ohne akt. View aufrufen
-
- Rev 1.153 22 Jul 1996 15:06:56 OS
- zusammengefaltete Groesse...
-
- Rev 1.152 12 Jul 1996 13:23:30 OS
- Konfiguration sichern
-
- Rev 1.151 09 Jul 1996 17:40:18 OS
- Resize: Listbox auf Null verkleinern, wenn sie nicht unter die Toolbox passt
-
- Rev 1.150 04 Jul 1996 16:15:02 OS
- richtige Anzeige der Listbox auch ohne aktive SwView
-
- Rev 1.149 03 Jul 1996 14:24:42 OS
- Listboxanzeige umgebaut, feste Viewanzeige moeglich
-
- Rev 1.148 01 Jul 1996 16:00:26 OS
- komplette Kontextmenues, Outlinetiefe einstellbar
-
- Rev 1.147 28 Jun 1996 15:20:38 OS
- drei Modi fuer D&D, Kontextmenue
-
- Rev 1.146 26 Jun 1996 16:08:44 OS
- Dispatcher::Execute angepasst, ::GotoPage aktiviert wieder das Seitenzahlfeld
-
- Rev 1.145 26 Jun 1996 14:29:10 OS
- Sprungfunktionen vervollstaendigt, Tastatursteuerung
-
-------------------------------------------------------------------------*/