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 : #include "uielement/comboboxtoolbarcontroller.hxx"
21 :
22 : #include <com/sun/star/util/XURLTransformer.hpp>
23 : #include <com/sun/star/frame/XDispatchProvider.hpp>
24 : #include <com/sun/star/beans/PropertyValue.hpp>
25 : #include <com/sun/star/frame/status/ItemStatus.hpp>
26 : #include <com/sun/star/frame/status/ItemState.hpp>
27 : #include <com/sun/star/frame/status/Visibility.hpp>
28 : #include <com/sun/star/frame/XControlNotificationListener.hpp>
29 : #include <com/sun/star/util/Color.hpp>
30 :
31 : #include <svtools/toolboxcontroller.hxx>
32 : #include <osl/mutex.hxx>
33 : #include <vcl/svapp.hxx>
34 : #include <vcl/mnemonic.hxx>
35 : #include <vcl/toolbox.hxx>
36 : #include <vcl/combobox.hxx>
37 :
38 : using namespace ::com::sun::star;
39 : using namespace ::com::sun::star::uno;
40 : using namespace ::com::sun::star::beans;
41 : using namespace ::com::sun::star::lang;
42 : using namespace ::com::sun::star::frame;
43 : using namespace ::com::sun::star::frame::status;
44 : using namespace ::com::sun::star::util;
45 :
46 : namespace framework
47 : {
48 :
49 : // Wrapper class to notify controller about events from combobox.
50 : // Unfortunaltly the events are notifed through virtual methods instead
51 : // of Listeners.
52 :
53 : class ComboBoxControl : public ComboBox
54 : {
55 : public:
56 : ComboBoxControl( vcl::Window* pParent, WinBits nStyle, IComboBoxListener* pComboBoxListener );
57 : virtual ~ComboBoxControl();
58 : virtual void dispose() SAL_OVERRIDE;
59 :
60 : virtual void Select() SAL_OVERRIDE;
61 : virtual void DoubleClick() SAL_OVERRIDE;
62 : virtual void Modify() SAL_OVERRIDE;
63 : virtual void KeyInput( const ::KeyEvent& rKEvt ) SAL_OVERRIDE;
64 : virtual void GetFocus() SAL_OVERRIDE;
65 : virtual void LoseFocus() SAL_OVERRIDE;
66 : virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
67 :
68 : private:
69 : IComboBoxListener* m_pComboBoxListener;
70 : };
71 :
72 0 : ComboBoxControl::ComboBoxControl( vcl::Window* pParent, WinBits nStyle, IComboBoxListener* pComboBoxListener ) :
73 : ComboBox( pParent, nStyle )
74 0 : , m_pComboBoxListener( pComboBoxListener )
75 : {
76 0 : }
77 :
78 0 : ComboBoxControl::~ComboBoxControl()
79 : {
80 0 : disposeOnce();
81 0 : }
82 :
83 0 : void ComboBoxControl::dispose()
84 : {
85 0 : m_pComboBoxListener = 0;
86 0 : ComboBox::dispose();
87 0 : }
88 :
89 0 : void ComboBoxControl::Select()
90 : {
91 0 : ComboBox::Select();
92 0 : if ( m_pComboBoxListener )
93 0 : m_pComboBoxListener->Select();
94 0 : }
95 :
96 0 : void ComboBoxControl::DoubleClick()
97 : {
98 0 : ComboBox::DoubleClick();
99 0 : if ( m_pComboBoxListener )
100 0 : m_pComboBoxListener->DoubleClick();
101 0 : }
102 :
103 0 : void ComboBoxControl::Modify()
104 : {
105 0 : ComboBox::Modify();
106 0 : if ( m_pComboBoxListener )
107 0 : m_pComboBoxListener->Modify();
108 0 : }
109 :
110 0 : void ComboBoxControl::KeyInput( const ::KeyEvent& rKEvt )
111 : {
112 0 : ComboBox::KeyInput( rKEvt );
113 0 : if ( m_pComboBoxListener )
114 0 : m_pComboBoxListener->KeyInput( rKEvt );
115 0 : }
116 :
117 0 : void ComboBoxControl::GetFocus()
118 : {
119 0 : ComboBox::GetFocus();
120 0 : if ( m_pComboBoxListener )
121 0 : m_pComboBoxListener->GetFocus();
122 0 : }
123 :
124 0 : void ComboBoxControl::LoseFocus()
125 : {
126 0 : ComboBox::LoseFocus();
127 0 : if ( m_pComboBoxListener )
128 0 : m_pComboBoxListener->LoseFocus();
129 0 : }
130 :
131 0 : bool ComboBoxControl::PreNotify( NotifyEvent& rNEvt )
132 : {
133 0 : bool nRet = false;
134 0 : if ( m_pComboBoxListener )
135 0 : nRet = m_pComboBoxListener->PreNotify( rNEvt );
136 0 : if ( !nRet )
137 0 : nRet = ComboBox::PreNotify( rNEvt );
138 :
139 0 : return nRet;
140 : }
141 :
142 0 : ComboboxToolbarController::ComboboxToolbarController(
143 : const Reference< XComponentContext >& rxContext,
144 : const Reference< XFrame >& rFrame,
145 : ToolBox* pToolbar,
146 : sal_uInt16 nID,
147 : sal_Int32 nWidth,
148 : const OUString& aCommand ) :
149 : ComplexToolbarController( rxContext, rFrame, pToolbar, nID, aCommand )
150 0 : , m_pComboBox( 0 )
151 : {
152 0 : m_pComboBox = VclPtr<ComboBoxControl>::Create( m_pToolbar, WB_DROPDOWN, this );
153 0 : if ( nWidth == 0 )
154 0 : nWidth = 100;
155 :
156 : // default dropdown size
157 0 : ::Size aLogicalSize( 8, 160 );
158 0 : ::Size aPixelSize = m_pComboBox->LogicToPixel( aLogicalSize, MAP_APPFONT );
159 :
160 0 : m_pComboBox->SetSizePixel( ::Size( nWidth, aPixelSize.Height() ));
161 0 : m_pToolbar->SetItemWindow( m_nID, m_pComboBox );
162 0 : }
163 :
164 0 : ComboboxToolbarController::~ComboboxToolbarController()
165 : {
166 0 : }
167 :
168 0 : void SAL_CALL ComboboxToolbarController::dispose()
169 : throw ( RuntimeException, std::exception )
170 : {
171 0 : SolarMutexGuard aSolarMutexGuard;
172 :
173 0 : m_pToolbar->SetItemWindow( m_nID, 0 );
174 0 : m_pComboBox.disposeAndClear();
175 :
176 0 : ComplexToolbarController::dispose();
177 0 : }
178 :
179 0 : Sequence<PropertyValue> ComboboxToolbarController::getExecuteArgs(sal_Int16 KeyModifier) const
180 : {
181 0 : Sequence<PropertyValue> aArgs( 2 );
182 0 : OUString aSelectedText = m_pComboBox->GetText();
183 :
184 : // Add key modifier to argument list
185 0 : aArgs[0].Name = "KeyModifier";
186 0 : aArgs[0].Value <<= KeyModifier;
187 0 : aArgs[1].Name = "Text";
188 0 : aArgs[1].Value <<= aSelectedText;
189 0 : return aArgs;
190 : }
191 :
192 0 : void ComboboxToolbarController::Select()
193 : {
194 0 : if ( m_pComboBox->GetEntryCount() > 0 )
195 : {
196 0 : vcl::Window::PointerState aState = m_pComboBox->GetPointerState();
197 :
198 0 : sal_uInt16 nKeyModifier = sal_uInt16( aState.mnState & KEY_MODIFIERS_MASK );
199 0 : execute( nKeyModifier );
200 : }
201 0 : }
202 :
203 0 : void ComboboxToolbarController::DoubleClick()
204 : {
205 0 : }
206 :
207 0 : void ComboboxToolbarController::Modify()
208 : {
209 0 : notifyTextChanged( m_pComboBox->GetText() );
210 0 : }
211 :
212 0 : void ComboboxToolbarController::KeyInput( const ::KeyEvent& )
213 : {
214 0 : }
215 :
216 0 : void ComboboxToolbarController::GetFocus()
217 : {
218 0 : notifyFocusGet();
219 0 : }
220 :
221 0 : void ComboboxToolbarController::LoseFocus()
222 : {
223 0 : notifyFocusLost();
224 0 : }
225 :
226 0 : bool ComboboxToolbarController::PreNotify( NotifyEvent& rNEvt )
227 : {
228 0 : switch ( rNEvt.GetType() )
229 : {
230 : case MouseNotifyEvent::KEYINPUT :
231 : {
232 0 : const ::KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
233 0 : const vcl::KeyCode& rKeyCode = pKeyEvent->GetKeyCode();
234 0 : if(( rKeyCode.GetModifier() | rKeyCode.GetCode()) == KEY_RETURN )
235 : {
236 : // Call execute only with non-empty text
237 0 : if ( !m_pComboBox->GetText().isEmpty() )
238 0 : execute( rKeyCode.GetModifier() );
239 0 : return true;
240 : }
241 : }
242 0 : break;
243 : case MouseNotifyEvent::GETFOCUS :
244 0 : notifyFocusGet();
245 0 : break;
246 : case MouseNotifyEvent::LOSEFOCUS :
247 0 : notifyFocusLost();
248 0 : break;
249 : default :
250 0 : break;
251 : }
252 0 : return false;
253 : }
254 :
255 0 : void ComboboxToolbarController::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )
256 : {
257 0 : if ( rControlCommand.Command == "SetText" )
258 : {
259 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
260 : {
261 0 : if ( rControlCommand.Arguments[i].Name == "Text" )
262 : {
263 0 : OUString aText;
264 0 : rControlCommand.Arguments[i].Value >>= aText;
265 0 : m_pComboBox->SetText( aText );
266 :
267 : // send notification
268 0 : notifyTextChanged( aText );
269 0 : break;
270 : }
271 : }
272 : }
273 0 : else if ( rControlCommand.Command == "SetList" )
274 : {
275 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
276 : {
277 0 : if ( rControlCommand.Arguments[i].Name == "List" )
278 : {
279 0 : Sequence< OUString > aList;
280 0 : m_pComboBox->Clear();
281 :
282 0 : rControlCommand.Arguments[i].Value >>= aList;
283 0 : for ( sal_Int32 j = 0; j < aList.getLength(); j++ )
284 0 : m_pComboBox->InsertEntry( aList[j] );
285 :
286 : // send notification
287 0 : uno::Sequence< beans::NamedValue > aInfo( 1 );
288 0 : aInfo[0].Name = "List";
289 0 : aInfo[0].Value <<= aList;
290 : addNotifyInfo( OUString( "ListChanged" ),
291 : getDispatchFromCommand( m_aCommandURL ),
292 0 : aInfo );
293 :
294 0 : break;
295 : }
296 : }
297 : }
298 0 : else if ( rControlCommand.Command == "AddEntry" )
299 : {
300 0 : sal_Int32 nPos( COMBOBOX_APPEND );
301 0 : OUString aText;
302 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
303 : {
304 0 : if ( rControlCommand.Arguments[i].Name == "Text" )
305 : {
306 0 : if ( rControlCommand.Arguments[i].Value >>= aText )
307 0 : m_pComboBox->InsertEntry( aText, nPos );
308 0 : break;
309 : }
310 0 : }
311 : }
312 0 : else if ( rControlCommand.Command == "InsertEntry" )
313 : {
314 0 : sal_Int32 nPos( COMBOBOX_APPEND );
315 0 : OUString aText;
316 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
317 : {
318 0 : if ( rControlCommand.Arguments[i].Name == "Pos" )
319 : {
320 0 : sal_Int32 nTmpPos = 0;
321 0 : if ( rControlCommand.Arguments[i].Value >>= nTmpPos )
322 : {
323 0 : if (( nTmpPos >= 0 ) &&
324 0 : ( nTmpPos < sal_Int32( m_pComboBox->GetEntryCount() )))
325 0 : nPos = nTmpPos;
326 : }
327 : }
328 0 : else if ( rControlCommand.Arguments[i].Name == "Text" )
329 0 : rControlCommand.Arguments[i].Value >>= aText;
330 : }
331 :
332 0 : m_pComboBox->InsertEntry( aText, nPos );
333 : }
334 0 : else if ( rControlCommand.Command == "RemoveEntryPos" )
335 : {
336 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
337 : {
338 0 : if ( rControlCommand.Arguments[i].Name == "Pos" )
339 : {
340 0 : sal_Int32 nPos( -1 );
341 0 : if ( rControlCommand.Arguments[i].Value >>= nPos )
342 : {
343 0 : if ( 0 <= nPos && nPos < sal_Int32( m_pComboBox->GetEntryCount() ))
344 0 : m_pComboBox->RemoveEntryAt(nPos);
345 : }
346 0 : break;
347 : }
348 : }
349 : }
350 0 : else if ( rControlCommand.Command == "RemoveEntryText" )
351 : {
352 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
353 : {
354 0 : if ( rControlCommand.Arguments[i].Name == "Text")
355 : {
356 0 : OUString aText;
357 0 : if ( rControlCommand.Arguments[i].Value >>= aText )
358 0 : m_pComboBox->RemoveEntry( aText );
359 0 : break;
360 : }
361 : }
362 : }
363 0 : else if ( rControlCommand.Command == "SetDropDownLines" )
364 : {
365 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
366 : {
367 0 : if ( rControlCommand.Arguments[i].Name == "Lines" )
368 : {
369 0 : sal_Int32 nValue( 5 );
370 0 : rControlCommand.Arguments[i].Value >>= nValue;
371 0 : m_pComboBox->SetDropDownLineCount( sal_uInt16( nValue ));
372 0 : break;
373 : }
374 : }
375 : }
376 0 : else if ( rControlCommand.Command == "SetBackgroundColor" )
377 : {
378 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
379 : {
380 0 : if ( rControlCommand.Arguments[i].Name == "Color" )
381 : {
382 0 : com::sun::star::util::Color aColor(0);
383 0 : if ( rControlCommand.Arguments[i].Value >>= aColor )
384 : {
385 0 : ::Color aBackColor( static_cast< sal_uInt32 >( aColor ));
386 0 : m_pComboBox->SetControlBackground( aBackColor );
387 : }
388 0 : break;
389 : }
390 : }
391 : }
392 0 : else if ( rControlCommand.Command == "SetTextColor" )
393 : {
394 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
395 : {
396 0 : if ( rControlCommand.Arguments[i].Name == "Color" )
397 : {
398 0 : com::sun::star::util::Color aColor(0);
399 0 : if ( rControlCommand.Arguments[i].Value >>= aColor )
400 : {
401 0 : ::Color aForeColor( static_cast< sal_uInt32 >( aColor ));
402 0 : m_pComboBox->SetControlForeground( aForeColor );
403 : }
404 0 : break;
405 : }
406 : }
407 : }
408 0 : }
409 :
410 648 : } // namespace
411 :
412 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|