Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
5 : : * This Source Code Form is subject to the terms of the Mozilla Public
6 : : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
11 : : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : : * contributor license agreements. See the NOTICE file distributed
13 : : * with this work for additional information regarding copyright
14 : : * ownership. The ASF licenses this file to you under the Apache
15 : : * License, Version 2.0 (the "License"); you may not use this file
16 : : * except in compliance with the License. You may obtain a copy of
17 : : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : : */
19 : :
20 : : #ifndef TOOLBOX_HXX
21 : : #define TOOLBOX_HXX
22 : :
23 : : #include <sfx2/basedlgs.hxx>
24 : : #include <sfx2/childwin.hxx>
25 : : #include <vcl/toolbox.hxx>
26 : :
27 : : #include "smmod.hxx"
28 : : #include "config.hxx"
29 : : #include "toolbox.hrc"
30 : :
31 : : class SmToolBoxWindow : public SfxFloatingWindow
32 : : {
33 : :
34 : : protected:
35 : : ToolBox aToolBoxCat;
36 : : FixedLine aToolBoxCat_Delim; // to visualy seperate the catalog part
37 : : ToolBox *pToolBoxCmd;
38 : : ToolBox *vToolBoxCategories[NUM_TBX_CATEGORIES];
39 : : ImageList *aImageLists [NUM_TBX_CATEGORIES + 1]; /* regular */
40 : : sal_uInt16 nActiveCategoryRID;
41 : :
42 : : virtual sal_Bool Close();
43 : : virtual void GetFocus();
44 : :
45 : : void ApplyImageLists( sal_uInt16 nCategoryRID );
46 : :
47 : : DECL_LINK( CategoryClickHdl, ToolBox* );
48 : : DECL_LINK( CmdSelectHdl, ToolBox* );
49 : :
50 : : SmViewShell * GetView();
51 : : const ImageList * GetImageList( sal_uInt16 nResId );
52 : :
53 : : public:
54 : : SmToolBoxWindow(SfxBindings *pBindings,
55 : : SfxChildWindow *pChildWindow,
56 : : Window *pParent);
57 : : ~SmToolBoxWindow();
58 : :
59 : : // Window
60 : : virtual void StateChanged( StateChangedType nStateChange );
61 : : virtual void DataChanged( const DataChangedEvent &rEvt );
62 : :
63 : : void AdjustPosSize( bool bSetPos );
64 : : void SetCategory(sal_uInt16 nCategory);
65 : : };
66 : :
67 : : /**************************************************************************/
68 : :
69 [ - + ]: 68 : class SmToolBoxWrapper : public SfxChildWindow
70 : : {
71 : : SFX_DECL_CHILDWINDOW_WITHID(SmToolBoxWrapper);
72 : :
73 : : protected:
74 : : SmToolBoxWrapper(Window *pParentWindow,
75 : : sal_uInt16, SfxBindings*, SfxChildWinInfo*);
76 : : };
77 : :
78 : : #endif
79 : :
80 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|