fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / svx / lboxctrl.hxx
blob2c449b0db7457ef545a794fe87755ab6b6a5246a
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 _SVX_LBOXCTRL_HXX_
21 #define _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;
31 /////////////////////////////////////////////////////////////////
33 class SvxListBoxControl : public SfxToolBoxControl
35 protected:
36 String aActionStr;
37 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;
49 virtual SfxPopupWindow* CreatePopupWindow();
50 virtual void StateChanged( sal_uInt16 nSID,
51 SfxItemState eState,
52 const SfxPoolItem* pState );
55 /////////////////////////////////////////////////////////////////
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 );
72 virtual SfxPopupWindow* CreatePopupWindow();
75 #endif
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */