1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
23 #include <sfx2/basedlgs.hxx>
24 #include <sfx2/childwin.hxx>
25 #include <vcl/toolbox.hxx>
29 #include "toolbox.hrc"
31 class SmToolBoxWindow
: public SfxFloatingWindow
36 FixedLine aToolBoxCat_Delim
; // to visualy separate the catalog part
38 ToolBox
*vToolBoxCategories
[NUM_TBX_CATEGORIES
];
39 ImageList
*aImageLists
[NUM_TBX_CATEGORIES
+ 1]; /* regular */
40 sal_uInt16 nActiveCategoryRID
;
42 virtual sal_Bool
Close();
43 virtual void GetFocus();
45 void ApplyImageLists( sal_uInt16 nCategoryRID
);
47 DECL_LINK( CategoryClickHdl
, ToolBox
* );
48 DECL_LINK( CmdSelectHdl
, ToolBox
* );
50 SmViewShell
* GetView();
51 const ImageList
* GetImageList( sal_uInt16 nResId
);
54 SmToolBoxWindow(SfxBindings
*pBindings
,
55 SfxChildWindow
*pChildWindow
,
60 virtual void StateChanged( StateChangedType nStateChange
);
61 virtual void DataChanged( const DataChangedEvent
&rEvt
);
63 void AdjustPosSize( bool bSetPos
);
64 void SetCategory(sal_uInt16 nCategory
);
67 /**************************************************************************/
69 class SmToolBoxWrapper
: public SfxChildWindow
71 SFX_DECL_CHILDWINDOW_WITHID(SmToolBoxWrapper
);
74 SmToolBoxWrapper(Window
*pParentWindow
,
75 sal_uInt16
, SfxBindings
*, SfxChildWinInfo
*);
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */