Branch libreoffice-5-0-4
[LibreOffice.git] / include / svx / lboxctrl.hxx
blobfe3062d18a4023b023c7e82038322cd4cfc63d95
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_SVX_LBOXCTRL_HXX
21 #define INCLUDED_SVX_LBOXCTRL_HXX
23 #include <sfx2/tbxctrl.hxx>
24 #include <rtl/ustring.hxx>
25 #include <vector>
26 #include <svx/svxdllapi.h>
28 class ToolBox;
29 class SvxPopupWindowListBox;
33 class SvxListBoxControl : public SfxToolBoxControl
35 protected:
36 OUString aActionStr;
37 VclPtr<SvxPopupWindowListBox> pPopupWin;
39 void Impl_SetInfo( sal_uInt16 nCount );
41 DECL_LINK( PopupModeEndHdl, void * );
42 DECL_LINK( SelectHdl, void * );
44 public:
45 SvxListBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
46 virtual ~SvxListBoxControl();
48 virtual SfxPopupWindowType GetPopupWindowType() const SAL_OVERRIDE;
49 virtual VclPtr<SfxPopupWindow> CreatePopupWindow() SAL_OVERRIDE;
50 virtual void StateChanged( sal_uInt16 nSID,
51 SfxItemState eState,
52 const SfxPoolItem* pState ) SAL_OVERRIDE;
57 class SVX_DLLPUBLIC SvxUndoRedoControl : public SvxListBoxControl
59 std::vector< OUString > aUndoRedoList;
60 OUString aDefaultText;
62 public:
63 SFX_DECL_TOOLBOX_CONTROL();
65 SvxUndoRedoControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
67 virtual ~SvxUndoRedoControl();
68 virtual void StateChanged( sal_uInt16 nSID,
69 SfxItemState eState,
70 const SfxPoolItem* pState ) SAL_OVERRIDE;
72 virtual VclPtr<SfxPopupWindow> CreatePopupWindow() SAL_OVERRIDE;
75 #endif
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */