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 :
21 : #include <tools/rc.h>
22 : #include <vcl/decoview.hxx>
23 : #include <vcl/event.hxx>
24 : #include <vcl/menu.hxx>
25 : #include <vcl/timer.hxx>
26 : #include <vcl/menubtn.hxx>
27 : #include <vcl/svapp.hxx>
28 :
29 : // =======================================================================
30 :
31 19 : void MenuButton::ImplInitMenuButtonData()
32 : {
33 19 : mnDDStyle = PUSHBUTTON_DROPDOWN_MENUBUTTON;
34 :
35 19 : mpMenuTimer = NULL;
36 19 : mpMenu = NULL;
37 19 : mpOwnMenu = NULL;
38 19 : mnCurItemId = 0;
39 19 : mnMenuMode = 0;
40 19 : }
41 :
42 : // -----------------------------------------------------------------------
43 :
44 19 : void MenuButton::ImplInit( Window* pParent, WinBits nStyle )
45 : {
46 19 : if ( !(nStyle & WB_NOTABSTOP) )
47 19 : nStyle |= WB_TABSTOP;
48 :
49 19 : PushButton::ImplInit( pParent, nStyle );
50 19 : EnableRTL( Application::GetSettings().GetLayoutRTL() );
51 19 : }
52 :
53 : // -----------------------------------------------------------------------
54 :
55 0 : void MenuButton::ImplExecuteMenu()
56 : {
57 0 : Activate();
58 :
59 0 : if ( mpMenu )
60 : {
61 0 : Point aPos( 0, 1 );
62 0 : Size aSize = GetSizePixel();
63 0 : Rectangle aRect( aPos, aSize );
64 0 : SetPressed( sal_True );
65 0 : EndSelection();
66 0 : mnCurItemId = mpMenu->Execute( this, aRect, POPUPMENU_EXECUTE_DOWN );
67 0 : SetPressed( sal_False );
68 0 : if ( mnCurItemId )
69 : {
70 0 : Select();
71 0 : mnCurItemId = 0;
72 : }
73 : }
74 0 : }
75 :
76 : // -----------------------------------------------------------------------
77 :
78 19 : MenuButton::MenuButton( Window* pParent, WinBits nWinBits )
79 19 : : PushButton( WINDOW_MENUBUTTON )
80 : {
81 19 : ImplInitMenuButtonData();
82 19 : ImplInit( pParent, nWinBits );
83 19 : }
84 :
85 : // -----------------------------------------------------------------------
86 :
87 0 : MenuButton::MenuButton( Window* pParent, const ResId& rResId )
88 0 : : PushButton( WINDOW_MENUBUTTON )
89 : {
90 0 : ImplInitMenuButtonData();
91 0 : rResId.SetRT( RSC_MENUBUTTON );
92 0 : WinBits nStyle = ImplInitRes( rResId );
93 0 : ImplInit( pParent, nStyle );
94 0 : ImplLoadRes( rResId );
95 :
96 0 : if ( !(nStyle & WB_HIDE) )
97 0 : Show();
98 0 : }
99 :
100 : // -----------------------------------------------------------------------
101 :
102 0 : void MenuButton::ImplLoadRes( const ResId& rResId )
103 : {
104 0 : Control::ImplLoadRes( rResId );
105 :
106 0 : sal_uLong nObjMask = ReadLongRes();
107 :
108 0 : if ( RSCMENUBUTTON_MENU & nObjMask )
109 : {
110 0 : mpOwnMenu = new PopupMenu( ResId( (RSHEADER_TYPE*)GetClassRes(), *rResId.GetResMgr() ) );
111 0 : SetPopupMenu( mpOwnMenu );
112 0 : IncrementRes( GetObjSizeRes( (RSHEADER_TYPE*)GetClassRes() ) );
113 : }
114 0 : }
115 :
116 : // -----------------------------------------------------------------------
117 :
118 8 : MenuButton::~MenuButton()
119 : {
120 4 : delete mpMenuTimer;
121 4 : delete mpOwnMenu;
122 4 : }
123 :
124 : // -----------------------------------------------------------------------
125 :
126 0 : IMPL_LINK_NOARG(MenuButton, ImplMenuTimeoutHdl)
127 : {
128 : // Abfragen, ob Button-Benutzung noch aktiv ist, da diese ja auch
129 : // vorher abgebrochen wurden sein koennte
130 0 : if ( IsTracking() )
131 : {
132 0 : if ( !(GetStyle() & WB_NOPOINTERFOCUS) )
133 0 : GrabFocus();
134 0 : ImplExecuteMenu();
135 : }
136 :
137 0 : return 0;
138 : }
139 :
140 : // -----------------------------------------------------------------------
141 :
142 0 : void MenuButton::MouseButtonDown( const MouseEvent& rMEvt )
143 : {
144 0 : bool bExecute = true;
145 0 : if ( mnMenuMode & MENUBUTTON_MENUMODE_TIMED )
146 : {
147 : // if the separated dropdown symbol is not hit, delay the popup execution
148 0 : if( mnDDStyle != PUSHBUTTON_DROPDOWN_MENUBUTTON || // no separator at all
149 0 : rMEvt.GetPosPixel().X() <= ImplGetSeparatorX() )
150 : {
151 0 : if ( !mpMenuTimer )
152 : {
153 0 : mpMenuTimer = new Timer;
154 0 : mpMenuTimer->SetTimeoutHdl( LINK( this, MenuButton, ImplMenuTimeoutHdl ) );
155 : }
156 :
157 0 : mpMenuTimer->SetTimeout( GetSettings().GetMouseSettings().GetActionDelay() );
158 0 : mpMenuTimer->Start();
159 :
160 0 : PushButton::MouseButtonDown( rMEvt );
161 0 : bExecute = false;
162 : }
163 : }
164 0 : if( bExecute )
165 : {
166 0 : if ( PushButton::ImplHitTestPushButton( this, rMEvt.GetPosPixel() ) )
167 : {
168 0 : if ( !(GetStyle() & WB_NOPOINTERFOCUS) )
169 0 : GrabFocus();
170 0 : ImplExecuteMenu();
171 : }
172 : }
173 0 : }
174 :
175 : // -----------------------------------------------------------------------
176 :
177 0 : void MenuButton::KeyInput( const KeyEvent& rKEvt )
178 : {
179 0 : KeyCode aKeyCode = rKEvt.GetKeyCode();
180 0 : sal_uInt16 nCode = aKeyCode.GetCode();
181 0 : if ( (nCode == KEY_DOWN) && aKeyCode.IsMod2() )
182 0 : ImplExecuteMenu();
183 0 : else if ( !(mnMenuMode & MENUBUTTON_MENUMODE_TIMED) &&
184 0 : !aKeyCode.GetModifier() &&
185 : ((nCode == KEY_RETURN) || (nCode == KEY_SPACE)) )
186 0 : ImplExecuteMenu();
187 : else
188 0 : PushButton::KeyInput( rKEvt );
189 0 : }
190 :
191 : // -----------------------------------------------------------------------
192 :
193 0 : void MenuButton::Activate()
194 : {
195 0 : maActivateHdl.Call( this );
196 0 : }
197 :
198 : // -----------------------------------------------------------------------
199 :
200 0 : void MenuButton::Select()
201 : {
202 0 : maSelectHdl.Call( this );
203 0 : }
204 :
205 : // -----------------------------------------------------------------------
206 :
207 0 : void MenuButton::SetMenuMode( sal_uInt16 nMode )
208 : {
209 : // Fuer die 5.1-Auslieferung besser noch nicht inline, ansonsten kann
210 : // diese Funktion zur 6.0 inline werden
211 0 : mnMenuMode = nMode;
212 0 : }
213 :
214 19 : void MenuButton::SetPopupMenu( PopupMenu* pNewMenu )
215 : {
216 19 : if (pNewMenu == mpMenu)
217 19 : return;
218 : // Fuer die 5.1-Auslieferung besser noch nicht inline, ansonsten kann
219 : // diese Funktion zur 6.0 inline werden
220 19 : mpMenu = pNewMenu;
221 : }
222 :
223 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|