update dev300-m58
[ooovba.git] / starmath / inc / toolbox.hxx
blobb87f20a98cac429c7950f0afe340ce561e462b28
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: toolbox.hxx,v $
10 * $Revision: 1.11 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef TOOLBOX_HXX
31 #define TOOLBOX_HXX
33 #include <sfx2/basedlgs.hxx>
34 #include <sfx2/childwin.hxx>
35 #include <vcl/toolbox.hxx>
36 #include "smmod.hxx"
37 #include "config.hxx"
39 #include "dialog.hrc"
41 #define NUM_TBX_CATEGORIES 9
43 class SmToolBoxWindow : public SfxFloatingWindow
46 protected:
47 ToolBox aToolBoxCat;
48 FixedLine aToolBoxCat_Delim; // to visualy seperate the catalog part
49 ToolBox *pToolBoxCmd;
50 ToolBox *vToolBoxCategories[NUM_TBX_CATEGORIES];
51 ImageList *aImageLists [NUM_TBX_CATEGORIES + 1]; /* regular */
52 ImageList *aImageListsH[NUM_TBX_CATEGORIES + 1]; /* high contrast */
53 USHORT nActiveCategoryRID;
55 virtual BOOL Close();
56 virtual void GetFocus();
58 void ApplyImageLists( USHORT nCategoryRID );
60 DECL_LINK( CategoryClickHdl, ToolBox* );
61 DECL_LINK( CmdSelectHdl, ToolBox* );
63 SmViewShell * GetView();
64 const ImageList * GetImageList( USHORT nResId, BOOL bHighContrast );
66 public:
67 SmToolBoxWindow(SfxBindings *pBindings,
68 SfxChildWindow *pChildWindow,
69 Window *pParent);
70 ~SmToolBoxWindow();
72 // Window
73 virtual void StateChanged( StateChangedType nStateChange );
74 virtual void DataChanged( const DataChangedEvent &rEvt );
76 void AdjustPosSize( BOOL bSetPos );
77 void SetCategory(USHORT nCategory);
80 /**************************************************************************/
82 class SmToolBoxWrapper : public SfxChildWindow
84 SFX_DECL_CHILDWINDOW(SmToolBoxWrapper);
86 protected:
87 SmToolBoxWrapper(Window *pParentWindow,
88 USHORT, SfxBindings*, SfxChildWinInfo*);
91 #endif