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 INCLUDED_VCL_MENUBTN_HXX
21 : #define INCLUDED_VCL_MENUBTN_HXX
22 :
23 : #include <vcl/button.hxx>
24 : #include <vcl/dllapi.h>
25 :
26 : class Timer;
27 : class PopupMenu;
28 : class VclBuilder;
29 : class VclSimpleEvent;
30 :
31 : #define MENUBUTTON_MENUMODE_TIMED ((sal_uInt16)0x0001)
32 :
33 : class VCL_DLLPUBLIC MenuButton : public PushButton
34 : {
35 : private:
36 : friend class VclBuilder;
37 :
38 : Rectangle maFocusRect;
39 : Timer* mpMenuTimer;
40 : PopupMenu* mpOwnMenu;
41 : PopupMenu* mpMenu;
42 : sal_uInt16 mnCurItemId;
43 : sal_uInt16 mnMenuMode;
44 : Link maActivateHdl;
45 : Link maSelectHdl;
46 :
47 : SAL_DLLPRIVATE void ImplInitMenuButtonData();
48 : SAL_DLLPRIVATE void ImplExecuteMenu();
49 : DECL_DLLPRIVATE_LINK( ImplMenuTimeoutHdl, void* );
50 :
51 : // Copy assignment is forbidden and not implemented.
52 : SAL_DLLPRIVATE MenuButton( const MenuButton & );
53 : SAL_DLLPRIVATE MenuButton& operator=( const MenuButton & );
54 :
55 : protected:
56 : using Window::ImplInit;
57 : SAL_DLLPRIVATE void ImplInit( Window* pParent, WinBits nStyle );
58 : SAL_DLLPRIVATE void ImplLoadRes( const ResId& rResId );
59 :
60 : public:
61 : explicit MenuButton( Window* pParent, WinBits nStyle = 0 );
62 : explicit MenuButton( Window* pParent, const ResId& );
63 : virtual ~MenuButton();
64 :
65 : virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
66 : virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
67 :
68 : virtual void Activate() SAL_OVERRIDE;
69 : virtual void Select();
70 :
71 : void SetMenuMode( sal_uInt16 nMode );
72 : sal_uInt16 GetMenuMode() const { return mnMenuMode; }
73 :
74 : void SetPopupMenu( PopupMenu* pNewMenu );
75 0 : PopupMenu* GetPopupMenu() const { return mpMenu; }
76 :
77 0 : sal_uInt16 GetCurItemId() const { return mnCurItemId; }
78 : OString GetCurItemIdent() const;
79 : void SetCurItemId( sal_uInt16 nItemId ) { mnCurItemId = nItemId; }
80 :
81 0 : void SetActivateHdl( const Link& rLink ) { maActivateHdl = rLink; }
82 : const Link& GetActivateHdl() const { return maActivateHdl; }
83 0 : void SetSelectHdl( const Link& rLink ) { maSelectHdl = rLink; }
84 : const Link& GetSelectHdl() const { return maSelectHdl; }
85 : };
86 :
87 : #endif // INCLUDED_VCL_MENUBTN_HXX
88 :
89 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|