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/dropdownboxtoolbarcontroller.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 :
30 : #include <svtools/toolboxcontroller.hxx>
31 : #include <osl/mutex.hxx>
32 : #include <vcl/svapp.hxx>
33 : #include <vcl/mnemonic.hxx>
34 : #include <vcl/toolbox.hxx>
35 :
36 : using namespace ::com::sun::star;
37 : using namespace ::com::sun::star::awt;
38 : using namespace ::com::sun::star::uno;
39 : using namespace ::com::sun::star::beans;
40 : using namespace ::com::sun::star::lang;
41 : using namespace ::com::sun::star::frame;
42 : using namespace ::com::sun::star::frame::status;
43 : using namespace ::com::sun::star::util;
44 :
45 : namespace framework
46 : {
47 :
48 : // Wrapper class to notify controller about events from ListBox.
49 : // Unfortunaltly the events are notifed through virtual methods instead
50 : // of Listeners.
51 :
52 : class ListBoxControl : public ListBox
53 : {
54 : public:
55 : ListBoxControl( vcl::Window* pParent, WinBits nStyle, IListBoxListener* pListBoxListener );
56 : virtual ~ListBoxControl();
57 : virtual void dispose() SAL_OVERRIDE;
58 :
59 : virtual void Select() SAL_OVERRIDE;
60 : virtual void DoubleClick() SAL_OVERRIDE;
61 : virtual void GetFocus() SAL_OVERRIDE;
62 : virtual void LoseFocus() SAL_OVERRIDE;
63 : virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
64 :
65 : private:
66 : IListBoxListener* m_pListBoxListener;
67 : };
68 :
69 0 : ListBoxControl::ListBoxControl( vcl::Window* pParent, WinBits nStyle, IListBoxListener* pListBoxListener ) :
70 : ListBox( pParent, nStyle )
71 0 : , m_pListBoxListener( pListBoxListener )
72 : {
73 0 : }
74 :
75 0 : ListBoxControl::~ListBoxControl()
76 : {
77 0 : disposeOnce();
78 0 : }
79 :
80 0 : void ListBoxControl::dispose()
81 : {
82 0 : m_pListBoxListener = 0;
83 0 : ListBox::dispose();
84 0 : }
85 :
86 0 : void ListBoxControl::Select()
87 : {
88 0 : ListBox::Select();
89 0 : if ( m_pListBoxListener )
90 0 : m_pListBoxListener->Select();
91 0 : }
92 :
93 0 : void ListBoxControl::DoubleClick()
94 : {
95 0 : ListBox::DoubleClick();
96 0 : if ( m_pListBoxListener )
97 0 : m_pListBoxListener->DoubleClick();
98 0 : }
99 :
100 0 : void ListBoxControl::GetFocus()
101 : {
102 0 : ListBox::GetFocus();
103 0 : if ( m_pListBoxListener )
104 0 : m_pListBoxListener->GetFocus();
105 0 : }
106 :
107 0 : void ListBoxControl::LoseFocus()
108 : {
109 0 : ListBox::LoseFocus();
110 0 : if ( m_pListBoxListener )
111 0 : m_pListBoxListener->LoseFocus();
112 0 : }
113 :
114 0 : bool ListBoxControl::PreNotify( NotifyEvent& rNEvt )
115 : {
116 0 : bool nRet = false;
117 0 : if ( m_pListBoxListener )
118 0 : nRet = m_pListBoxListener->PreNotify( rNEvt );
119 0 : if ( !nRet )
120 0 : nRet = ListBox::PreNotify( rNEvt );
121 :
122 0 : return nRet;
123 : }
124 :
125 0 : DropdownToolbarController::DropdownToolbarController(
126 : const Reference< XComponentContext >& rxContext,
127 : const Reference< XFrame >& rFrame,
128 : ToolBox* pToolbar,
129 : sal_uInt16 nID,
130 : sal_Int32 nWidth,
131 : const OUString& aCommand ) :
132 : ComplexToolbarController( rxContext, rFrame, pToolbar, nID, aCommand )
133 0 : , m_pListBoxControl( 0 )
134 : {
135 0 : m_pListBoxControl = VclPtr<ListBoxControl>::Create( m_pToolbar, WB_DROPDOWN|WB_AUTOHSCROLL|WB_BORDER, this );
136 0 : if ( nWidth == 0 )
137 0 : nWidth = 100;
138 :
139 : // default dropdown size
140 0 : ::Size aLogicalSize( 0, 160 );
141 0 : ::Size aPixelSize = m_pListBoxControl->LogicToPixel( aLogicalSize, MAP_APPFONT );
142 :
143 0 : m_pListBoxControl->SetSizePixel( ::Size( nWidth, aPixelSize.Height() ));
144 0 : m_pToolbar->SetItemWindow( m_nID, m_pListBoxControl );
145 0 : m_pListBoxControl->SetDropDownLineCount( 5 );
146 0 : }
147 :
148 0 : DropdownToolbarController::~DropdownToolbarController()
149 : {
150 0 : }
151 :
152 0 : void SAL_CALL DropdownToolbarController::dispose()
153 : throw ( RuntimeException, std::exception )
154 : {
155 0 : SolarMutexGuard aSolarMutexGuard;
156 :
157 0 : m_pToolbar->SetItemWindow( m_nID, 0 );
158 0 : m_pListBoxControl.disposeAndClear();
159 :
160 0 : ComplexToolbarController::dispose();
161 0 : }
162 :
163 0 : Sequence<PropertyValue> DropdownToolbarController::getExecuteArgs(sal_Int16 KeyModifier) const
164 : {
165 0 : Sequence<PropertyValue> aArgs( 2 );
166 0 : OUString aSelectedText = m_pListBoxControl->GetSelectEntry();
167 :
168 : // Add key modifier to argument list
169 0 : aArgs[0].Name = "KeyModifier";
170 0 : aArgs[0].Value <<= KeyModifier;
171 0 : aArgs[1].Name = "Text";
172 0 : aArgs[1].Value <<= aSelectedText;
173 0 : return aArgs;
174 : }
175 :
176 0 : void DropdownToolbarController::Select()
177 : {
178 0 : if ( m_pListBoxControl->GetEntryCount() > 0 )
179 : {
180 0 : vcl::Window::PointerState aState = m_pListBoxControl->GetPointerState();
181 :
182 0 : sal_uInt16 nKeyModifier = sal_uInt16( aState.mnState & KEY_MODIFIERS_MASK );
183 0 : execute( nKeyModifier );
184 : }
185 0 : }
186 :
187 0 : void DropdownToolbarController::DoubleClick()
188 : {
189 0 : }
190 :
191 0 : void DropdownToolbarController::GetFocus()
192 : {
193 0 : notifyFocusGet();
194 0 : }
195 :
196 0 : void DropdownToolbarController::LoseFocus()
197 : {
198 0 : notifyFocusLost();
199 0 : }
200 :
201 0 : bool DropdownToolbarController::PreNotify( NotifyEvent& /*rNEvt*/ )
202 : {
203 0 : return false;
204 : }
205 :
206 0 : void DropdownToolbarController::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )
207 : {
208 0 : if ( rControlCommand.Command == "SetList" )
209 : {
210 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
211 : {
212 0 : if ( rControlCommand.Arguments[i].Name == "List" )
213 : {
214 0 : Sequence< OUString > aList;
215 0 : m_pListBoxControl->Clear();
216 :
217 0 : rControlCommand.Arguments[i].Value >>= aList;
218 0 : for ( sal_Int32 j = 0; j < aList.getLength(); j++ )
219 0 : m_pListBoxControl->InsertEntry( aList[j] );
220 :
221 0 : m_pListBoxControl->SelectEntryPos( 0 );
222 :
223 : // send notification
224 0 : uno::Sequence< beans::NamedValue > aInfo( 1 );
225 0 : aInfo[0].Name = "List";
226 0 : aInfo[0].Value <<= aList;
227 : addNotifyInfo( OUString( "ListChanged" ),
228 : getDispatchFromCommand( m_aCommandURL ),
229 0 : aInfo );
230 :
231 0 : break;
232 : }
233 : }
234 : }
235 0 : else if ( rControlCommand.Command == "AddEntry" )
236 : {
237 0 : sal_Int32 nPos( LISTBOX_APPEND );
238 0 : OUString aText;
239 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
240 : {
241 0 : if ( rControlCommand.Arguments[i].Name == "Text" )
242 : {
243 0 : if ( rControlCommand.Arguments[i].Value >>= aText )
244 0 : m_pListBoxControl->InsertEntry( aText, nPos );
245 0 : break;
246 : }
247 0 : }
248 : }
249 0 : else if ( rControlCommand.Command == "InsertEntry" )
250 : {
251 0 : sal_Int32 nPos( LISTBOX_APPEND );
252 0 : OUString aText;
253 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
254 : {
255 0 : if ( rControlCommand.Arguments[i].Name == "Pos" )
256 : {
257 0 : sal_Int32 nTmpPos = 0;
258 0 : if ( rControlCommand.Arguments[i].Value >>= nTmpPos )
259 : {
260 0 : if (( nTmpPos >= 0 ) &&
261 0 : ( nTmpPos < sal_Int32( m_pListBoxControl->GetEntryCount() )))
262 0 : nPos = nTmpPos;
263 : }
264 : }
265 0 : else if ( rControlCommand.Arguments[i].Name == "Text" )
266 0 : rControlCommand.Arguments[i].Value >>= aText;
267 : }
268 :
269 0 : m_pListBoxControl->InsertEntry( aText, nPos );
270 : }
271 0 : else if ( rControlCommand.Command == "RemoveEntryPos" )
272 : {
273 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
274 : {
275 0 : if ( rControlCommand.Arguments[i].Name == "Pos" )
276 : {
277 0 : sal_Int32 nPos( -1 );
278 0 : if ( rControlCommand.Arguments[i].Value >>= nPos )
279 : {
280 0 : if ( 0 <= nPos && nPos < sal_Int32( m_pListBoxControl->GetEntryCount() ))
281 0 : m_pListBoxControl->RemoveEntry( nPos );
282 : }
283 0 : break;
284 : }
285 : }
286 : }
287 0 : else if ( rControlCommand.Command == "RemoveEntryText" )
288 : {
289 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
290 : {
291 0 : if ( rControlCommand.Arguments[i].Name == "Text" )
292 : {
293 0 : OUString aText;
294 0 : if ( rControlCommand.Arguments[i].Value >>= aText )
295 0 : m_pListBoxControl->RemoveEntry( aText );
296 0 : break;
297 : }
298 : }
299 : }
300 0 : else if ( rControlCommand.Command == "SetDropDownLines" )
301 : {
302 0 : for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
303 : {
304 0 : if ( rControlCommand.Arguments[i].Name == "Lines" )
305 : {
306 0 : sal_Int32 nValue( 5 );
307 0 : rControlCommand.Arguments[i].Value >>= nValue;
308 0 : m_pListBoxControl->SetDropDownLineCount( sal_uInt16( nValue ));
309 0 : break;
310 : }
311 : }
312 : }
313 0 : }
314 :
315 : } // namespace
316 :
317 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|