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 <tools/shl.hxx>
21 : #include <sfx2/dispatch.hxx>
22 : #include <sfx2/objsh.hxx>
23 : #include <sfx2/viewsh.hxx>
24 : #include <sfx2/module.hxx>
25 : #include <tools/urlobj.hxx>
26 :
27 : #define _SVX_ITEMWIN_CXX
28 :
29 : #include <vcl/svapp.hxx>
30 :
31 : #include <svx/dialogs.hrc>
32 :
33 : #define DELAY_TIMEOUT 100
34 :
35 : #include <svx/xlnclit.hxx>
36 : #include <svx/xlnwtit.hxx>
37 : #include <svx/xlineit0.hxx>
38 : #include <svx/xlndsit.hxx>
39 : #include <svx/xtable.hxx>
40 : #include "svx/drawitem.hxx"
41 : #include <svx/dialmgr.hxx>
42 : #include "svx/dlgutil.hxx"
43 : #include <svx/itemwin.hxx>
44 : #include "svx/linectrl.hxx"
45 : #include <svtools/colorcfg.hxx>
46 :
47 : #include "linectrl.hrc"
48 :
49 : using namespace ::com::sun::star::uno;
50 : using namespace ::com::sun::star::frame;
51 : using namespace ::com::sun::star::util;
52 : using namespace ::com::sun::star::lang;
53 : using namespace ::com::sun::star::beans;
54 :
55 : #define LOGICAL_EDIT_HEIGHT 12
56 : //========================================================================
57 : // SvxLineBox
58 : //========================================================================
59 :
60 0 : SvxLineBox::SvxLineBox( Window* pParent, const Reference< XFrame >& rFrame, WinBits nBits ) :
61 : LineLB( pParent, nBits ),
62 : nCurPos ( 0 ),
63 : aLogicalSize(40,140),
64 : bRelease ( sal_True ),
65 : mpSh ( NULL ),
66 0 : mxFrame ( rFrame )
67 : {
68 0 : SetSizePixel( LogicToPixel( aLogicalSize, MAP_APPFONT ));
69 0 : Show();
70 :
71 0 : aDelayTimer.SetTimeout( DELAY_TIMEOUT );
72 0 : aDelayTimer.SetTimeoutHdl( LINK( this, SvxLineBox, DelayHdl_Impl ) );
73 0 : aDelayTimer.Start();
74 0 : }
75 :
76 : // -----------------------------------------------------------------------
77 :
78 0 : SvxLineBox::~SvxLineBox()
79 : {
80 0 : }
81 :
82 : // -----------------------------------------------------------------------
83 :
84 0 : IMPL_LINK_NOARG(SvxLineBox, DelayHdl_Impl)
85 : {
86 0 : if ( GetEntryCount() == 0 )
87 : {
88 0 : mpSh = SfxObjectShell::Current();
89 0 : FillControl();
90 : }
91 0 : return 0;
92 : }
93 :
94 : // -----------------------------------------------------------------------
95 :
96 0 : void SvxLineBox::Select()
97 : {
98 : // Call the parent's Select() member to trigger accessibility events.
99 0 : LineLB::Select();
100 :
101 0 : if ( !IsTravelSelect() )
102 : {
103 : XLineStyle eXLS;
104 0 : sal_uInt16 nPos = GetSelectEntryPos();
105 :
106 0 : switch ( nPos )
107 : {
108 : case 0:
109 0 : eXLS = XLINE_NONE;
110 0 : break;
111 :
112 : case 1:
113 0 : eXLS = XLINE_SOLID;
114 0 : break;
115 :
116 : default:
117 : {
118 0 : eXLS = XLINE_DASH;
119 :
120 0 : if ( nPos != LISTBOX_ENTRY_NOTFOUND &&
121 0 : SfxObjectShell::Current() &&
122 0 : SfxObjectShell::Current()->GetItem( SID_DASH_LIST ) )
123 : {
124 : // LineDashItem wird nur geschickt, wenn es auch einen Dash besitzt.
125 : // Notify k"ummert sich darum!
126 : SvxDashListItem aItem( *(const SvxDashListItem*)(
127 0 : SfxObjectShell::Current()->GetItem( SID_DASH_LIST ) ) );
128 0 : XLineDashItem aLineDashItem( GetSelectEntry(),
129 0 : aItem.GetDashList()->GetDash( nPos - 2 )->GetDash() );
130 :
131 0 : Any a;
132 0 : Sequence< PropertyValue > aArgs( 1 );
133 0 : aArgs[0].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LineDash" ));
134 0 : aLineDashItem.QueryValue ( a );
135 0 : aArgs[0].Value = a;
136 0 : SfxToolBoxControl::Dispatch( Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
137 : ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:LineDash" )),
138 0 : aArgs );
139 : }
140 : }
141 0 : break;
142 : }
143 :
144 0 : XLineStyleItem aLineStyleItem( eXLS );
145 0 : Any a;
146 0 : Sequence< PropertyValue > aArgs( 1 );
147 0 : aArgs[0].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "XLineStyle" ));
148 0 : aLineStyleItem.QueryValue ( a );
149 0 : aArgs[0].Value = a;
150 0 : SfxToolBoxControl::Dispatch( Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
151 : ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:XLineStyle" )),
152 0 : aArgs );
153 :
154 0 : nCurPos = GetSelectEntryPos();
155 0 : ReleaseFocus_Impl();
156 : }
157 0 : }
158 :
159 : // -----------------------------------------------------------------------
160 :
161 0 : long SvxLineBox::PreNotify( NotifyEvent& rNEvt )
162 : {
163 0 : sal_uInt16 nType = rNEvt.GetType();
164 :
165 0 : switch(nType)
166 : {
167 : case EVENT_MOUSEBUTTONDOWN:
168 : case EVENT_GETFOCUS:
169 0 : nCurPos = GetSelectEntryPos();
170 0 : break;
171 : case EVENT_LOSEFOCUS:
172 0 : SelectEntryPos(nCurPos);
173 0 : break;
174 : case EVENT_KEYINPUT:
175 : {
176 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
177 0 : if( pKEvt->GetKeyCode().GetCode() == KEY_TAB)
178 : {
179 0 : bRelease = sal_False;
180 0 : Select();
181 : }
182 : }
183 0 : break;
184 : }
185 0 : return LineLB::PreNotify( rNEvt );
186 : }
187 :
188 : // -----------------------------------------------------------------------
189 :
190 0 : long SvxLineBox::Notify( NotifyEvent& rNEvt )
191 : {
192 0 : long nHandled = LineLB::Notify( rNEvt );
193 :
194 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
195 : {
196 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
197 :
198 0 : switch ( pKEvt->GetKeyCode().GetCode() )
199 : {
200 : case KEY_RETURN:
201 0 : Select();
202 0 : nHandled = 1;
203 0 : break;
204 :
205 : case KEY_ESCAPE:
206 0 : SelectEntryPos( nCurPos );
207 0 : ReleaseFocus_Impl();
208 0 : nHandled = 1;
209 0 : break;
210 : }
211 : }
212 0 : return nHandled;
213 : }
214 :
215 : // -----------------------------------------------------------------------
216 :
217 0 : void SvxLineBox::ReleaseFocus_Impl()
218 : {
219 0 : if(!bRelease)
220 : {
221 0 : bRelease = sal_True;
222 0 : return;
223 : }
224 :
225 0 : if( SfxViewShell::Current() )
226 : {
227 0 : Window* pShellWnd = SfxViewShell::Current()->GetWindow();
228 :
229 0 : if ( pShellWnd )
230 0 : pShellWnd->GrabFocus();
231 : }
232 : }
233 :
234 0 : void SvxLineBox::DataChanged( const DataChangedEvent& rDCEvt )
235 : {
236 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
237 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
238 : {
239 0 : SetSizePixel(LogicToPixel(aLogicalSize, MAP_APPFONT));
240 0 : Size aDropSize( aLogicalSize.Width(), LOGICAL_EDIT_HEIGHT);
241 0 : SetDropDownSizePixel(LogicToPixel(aDropSize, MAP_APPFONT));
242 : }
243 :
244 0 : LineLB::DataChanged( rDCEvt );
245 0 : }
246 :
247 0 : void SvxLineBox::FillControl()
248 : {
249 0 : FillStyles();
250 0 : if ( !mpSh )
251 0 : mpSh = SfxObjectShell::Current();
252 :
253 0 : if( mpSh )
254 : {
255 0 : const SvxDashListItem* pItem = (const SvxDashListItem*)( mpSh->GetItem( SID_DASH_LIST ) );
256 0 : if ( pItem )
257 0 : Fill( pItem->GetDashList() );
258 : }
259 0 : }
260 :
261 : //========================================================================
262 : // SvxColorBox
263 : //========================================================================
264 :
265 0 : SvxColorBox::SvxColorBox(
266 : Window* pParent,
267 : const ::rtl::OUString& rCommand,
268 : const Reference< XFrame >& rFrame,
269 : WinBits nBits ) :
270 : ColorLB( pParent, nBits ),
271 : nCurPos ( 0 ),
272 : aLogicalSize(45,80),
273 : bRelease ( sal_True ),
274 : maCommand ( rCommand ),
275 0 : mxFrame ( rFrame )
276 : {
277 0 : SetSizePixel( LogicToPixel( aLogicalSize , MAP_APPFONT));
278 0 : Show();
279 :
280 0 : SfxObjectShell* pSh = SfxObjectShell::Current();
281 :
282 0 : if ( pSh )
283 : {
284 : const SvxColorListItem* pItem =
285 0 : (const SvxColorListItem*)( pSh->GetItem( SID_COLOR_TABLE ) );
286 0 : if(pItem)
287 0 : Fill( pItem->GetColorList() );
288 : }
289 0 : }
290 :
291 : // -----------------------------------------------------------------------
292 :
293 0 : SvxColorBox::~SvxColorBox()
294 : {
295 0 : }
296 :
297 : // -----------------------------------------------------------------------
298 :
299 0 : void SvxColorBox::Update( const XLineColorItem* pItem )
300 : {
301 0 : if ( pItem )
302 0 : SelectEntry( pItem->GetColorValue() );
303 : else
304 0 : SetNoSelection();
305 0 : }
306 :
307 : // -----------------------------------------------------------------------
308 :
309 0 : void SvxColorBox::Select()
310 : {
311 : // OJ: base class call needed here because otherwise no event is send for accessibility
312 0 : ColorLB::Select();
313 0 : if ( !IsTravelSelect() )
314 : {
315 0 : XLineColorItem aLineColorItem( GetSelectEntry(), GetSelectEntryColor() );
316 :
317 0 : INetURLObject aObj( maCommand );
318 :
319 0 : Any a;
320 0 : Sequence< PropertyValue > aArgs( 1 );
321 0 : aArgs[0].Name = aObj.GetURLPath();
322 0 : aLineColorItem.QueryValue( a );
323 0 : aArgs[0].Value = a;
324 0 : SfxToolBoxControl::Dispatch( Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
325 : maCommand,
326 0 : aArgs );
327 :
328 0 : nCurPos = GetSelectEntryPos();
329 0 : ReleaseFocus_Impl();
330 : }
331 0 : }
332 :
333 : // -----------------------------------------------------------------------
334 :
335 0 : long SvxColorBox::PreNotify( NotifyEvent& rNEvt )
336 : {
337 0 : sal_uInt16 nType = rNEvt.GetType();
338 :
339 0 : switch(nType)
340 : {
341 : case EVENT_MOUSEBUTTONDOWN:
342 : case EVENT_GETFOCUS:
343 0 : nCurPos = GetSelectEntryPos();
344 0 : break;
345 : case EVENT_LOSEFOCUS:
346 0 : SelectEntryPos(nCurPos);
347 0 : break;
348 : case EVENT_KEYINPUT:
349 : {
350 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
351 :
352 0 : if( pKEvt->GetKeyCode().GetCode() == KEY_TAB)
353 : {
354 0 : bRelease = sal_False;
355 0 : Select();
356 : }
357 : }
358 : }
359 :
360 0 : return ColorLB::PreNotify( rNEvt );
361 : }
362 :
363 : // -----------------------------------------------------------------------
364 :
365 0 : long SvxColorBox::Notify( NotifyEvent& rNEvt )
366 : {
367 0 : long nHandled = ColorLB::Notify( rNEvt );
368 :
369 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
370 : {
371 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
372 :
373 0 : switch ( pKEvt->GetKeyCode().GetCode() )
374 : {
375 : case KEY_RETURN:
376 0 : Select();
377 0 : nHandled = 1;
378 0 : break;
379 :
380 : case KEY_ESCAPE:
381 0 : SelectEntryPos( nCurPos );
382 0 : ReleaseFocus_Impl();
383 0 : nHandled = 1;
384 0 : break;
385 : }
386 : }
387 0 : return nHandled;
388 : }
389 :
390 0 : void SvxColorBox::DataChanged( const DataChangedEvent& rDCEvt )
391 : {
392 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
393 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
394 : {
395 0 : SetSizePixel(LogicToPixel(aLogicalSize, MAP_APPFONT));
396 0 : Size aDropSize( aLogicalSize.Width(), LOGICAL_EDIT_HEIGHT);
397 0 : SetDropDownSizePixel(LogicToPixel(aDropSize, MAP_APPFONT));
398 : }
399 :
400 0 : ColorLB::DataChanged( rDCEvt );
401 0 : }
402 : // -----------------------------------------------------------------------
403 :
404 0 : void SvxColorBox::ReleaseFocus_Impl()
405 : {
406 0 : if(!bRelease)
407 : {
408 0 : bRelease = sal_True;
409 0 : return;
410 : }
411 :
412 0 : if( SfxViewShell::Current() )
413 : {
414 0 : Window* pShellWnd = SfxViewShell::Current()->GetWindow();
415 :
416 0 : if ( pShellWnd )
417 0 : pShellWnd->GrabFocus();
418 : }
419 : }
420 :
421 : //========================================================================
422 : // SvxMetricField
423 : //========================================================================
424 :
425 0 : SvxMetricField::SvxMetricField(
426 : Window* pParent, const Reference< XFrame >& rFrame, WinBits nBits ) :
427 : MetricField( pParent, nBits ),
428 : aCurTxt( String() ),
429 0 : mxFrame( rFrame )
430 : {
431 0 : Size aSize = Size(GetTextWidth( rtl::OUString("99,99mm") ),GetTextHeight());
432 0 : aSize.Width() += 20;
433 0 : aSize.Height() += 6;
434 0 : SetSizePixel( aSize );
435 0 : aLogicalSize = PixelToLogic(aSize, MAP_APPFONT);
436 0 : SetUnit( FUNIT_MM );
437 0 : SetDecimalDigits( 2 );
438 0 : SetMax( 5000 );
439 0 : SetMin( 0 );
440 0 : SetLast( 5000 );
441 0 : SetFirst( 0 );
442 :
443 0 : eDlgUnit = SfxModule::GetModuleFieldUnit( mxFrame );
444 0 : SetFieldUnit( *this, eDlgUnit, sal_False );
445 0 : Show();
446 0 : }
447 :
448 : // -----------------------------------------------------------------------
449 :
450 0 : SvxMetricField::~SvxMetricField()
451 : {
452 0 : }
453 :
454 : // -----------------------------------------------------------------------
455 :
456 0 : void SvxMetricField::Update( const XLineWidthItem* pItem )
457 : {
458 0 : if ( pItem )
459 : {
460 0 : if ( pItem->GetValue() != GetCoreValue( *this, ePoolUnit ) )
461 0 : SetMetricValue( *this, pItem->GetValue(), ePoolUnit );
462 : }
463 : else
464 0 : SetText( String() );
465 0 : }
466 :
467 : // -----------------------------------------------------------------------
468 :
469 0 : void SvxMetricField::Modify()
470 : {
471 0 : MetricField::Modify();
472 0 : long nTmp = GetCoreValue( *this, ePoolUnit );
473 0 : XLineWidthItem aLineWidthItem( nTmp );
474 :
475 0 : Any a;
476 0 : Sequence< PropertyValue > aArgs( 1 );
477 0 : aArgs[0].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LineWidth" ));
478 0 : aLineWidthItem.QueryValue( a );
479 0 : aArgs[0].Value = a;
480 0 : SfxToolBoxControl::Dispatch( Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
481 : ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:LineWidth" )),
482 0 : aArgs );
483 0 : }
484 :
485 : // -----------------------------------------------------------------------
486 :
487 0 : void SvxMetricField::ReleaseFocus_Impl()
488 : {
489 0 : if( SfxViewShell::Current() )
490 : {
491 0 : Window* pShellWnd = SfxViewShell::Current()->GetWindow();
492 0 : if ( pShellWnd )
493 0 : pShellWnd->GrabFocus();
494 : }
495 0 : }
496 :
497 : // -----------------------------------------------------------------------
498 :
499 0 : void SvxMetricField::Down()
500 : {
501 0 : sal_Int64 nValue = GetValue();
502 0 : nValue -= GetSpinSize();
503 :
504 : // Um unter OS/2 einen Sprung auf Max zu verhindern
505 0 : if ( nValue >= GetMin() )
506 0 : MetricField::Down();
507 0 : }
508 :
509 : // -----------------------------------------------------------------------
510 :
511 0 : void SvxMetricField::Up()
512 : {
513 0 : MetricField::Up();
514 0 : }
515 :
516 : // -----------------------------------------------------------------------
517 :
518 0 : void SvxMetricField::SetCoreUnit( SfxMapUnit eUnit )
519 : {
520 0 : ePoolUnit = eUnit;
521 0 : }
522 :
523 : // -----------------------------------------------------------------------
524 :
525 0 : void SvxMetricField::RefreshDlgUnit()
526 : {
527 0 : FieldUnit eTmpUnit = SfxModule::GetModuleFieldUnit( mxFrame );
528 0 : if ( eDlgUnit != eTmpUnit )
529 : {
530 0 : eDlgUnit = eTmpUnit;
531 0 : SetFieldUnit( *this, eDlgUnit, sal_False );
532 : }
533 0 : }
534 :
535 : // -----------------------------------------------------------------------
536 :
537 0 : long SvxMetricField::PreNotify( NotifyEvent& rNEvt )
538 : {
539 0 : sal_uInt16 nType = rNEvt.GetType();
540 :
541 0 : if ( EVENT_MOUSEBUTTONDOWN == nType || EVENT_GETFOCUS == nType )
542 0 : aCurTxt = GetText();
543 :
544 0 : return MetricField::PreNotify( rNEvt );
545 : }
546 :
547 : // -----------------------------------------------------------------------
548 :
549 0 : long SvxMetricField::Notify( NotifyEvent& rNEvt )
550 : {
551 0 : long nHandled = MetricField::Notify( rNEvt );
552 :
553 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
554 : {
555 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
556 0 : const KeyCode& rKey = pKEvt->GetKeyCode();
557 0 : SfxViewShell* pSh = SfxViewShell::Current();
558 :
559 0 : if ( rKey.GetModifier() && rKey.GetGroup() != KEYGROUP_CURSOR && pSh )
560 0 : pSh->KeyInput( *pKEvt );
561 : else
562 : {
563 0 : bool bHandled = false;
564 :
565 0 : switch ( rKey.GetCode() )
566 : {
567 : case KEY_RETURN:
568 0 : Reformat();
569 0 : bHandled = true;
570 0 : break;
571 :
572 : case KEY_ESCAPE:
573 0 : SetText( aCurTxt );
574 0 : bHandled = true;
575 0 : break;
576 : }
577 :
578 0 : if ( bHandled )
579 : {
580 0 : nHandled = 1;
581 0 : Modify();
582 0 : ReleaseFocus_Impl();
583 : }
584 : }
585 : }
586 0 : return nHandled;
587 : }
588 :
589 0 : void SvxMetricField::DataChanged( const DataChangedEvent& rDCEvt )
590 : {
591 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
592 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
593 : {
594 0 : SetSizePixel(LogicToPixel(aLogicalSize, MAP_APPFONT));
595 : }
596 :
597 0 : MetricField::DataChanged( rDCEvt );
598 0 : }
599 :
600 : //========================================================================
601 : // SvxFillTypeBox
602 : //========================================================================
603 :
604 0 : SvxFillTypeBox::SvxFillTypeBox( Window* pParent, WinBits nBits ) :
605 : FillTypeLB( pParent, nBits | WB_TABSTOP ),
606 : nCurPos ( 0 ),
607 : bSelect ( sal_False ),
608 0 : bRelease(sal_True)
609 : {
610 0 : SetSizePixel( LogicToPixel( Size(40, 40 ),MAP_APPFONT ));
611 0 : Fill();
612 0 : SelectEntryPos( XFILL_SOLID );
613 0 : Show();
614 0 : }
615 :
616 : // -----------------------------------------------------------------------
617 :
618 0 : SvxFillTypeBox::~SvxFillTypeBox()
619 : {
620 0 : }
621 :
622 : // -----------------------------------------------------------------------
623 :
624 0 : long SvxFillTypeBox::PreNotify( NotifyEvent& rNEvt )
625 : {
626 0 : sal_uInt16 nType = rNEvt.GetType();
627 :
628 0 : if ( EVENT_MOUSEBUTTONDOWN == nType || EVENT_GETFOCUS == nType )
629 0 : nCurPos = GetSelectEntryPos();
630 0 : else if ( EVENT_LOSEFOCUS == nType
631 0 : && Application::GetFocusWindow()
632 0 : && !IsWindowOrChild( Application::GetFocusWindow(), sal_True ) )
633 : {
634 0 : if ( !bSelect )
635 0 : SelectEntryPos( nCurPos );
636 : else
637 0 : bSelect = sal_False;
638 : }
639 :
640 0 : return FillTypeLB::PreNotify( rNEvt );
641 : }
642 :
643 : // -----------------------------------------------------------------------
644 :
645 0 : long SvxFillTypeBox::Notify( NotifyEvent& rNEvt )
646 : {
647 0 : long nHandled = FillTypeLB::Notify( rNEvt );
648 :
649 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
650 : {
651 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
652 0 : switch ( pKEvt->GetKeyCode().GetCode() )
653 : {
654 : case KEY_RETURN:
655 0 : nHandled = 1;
656 0 : ( (Link&)GetSelectHdl() ).Call( this );
657 0 : break;
658 : case KEY_TAB:
659 0 : bRelease = sal_False;
660 0 : ( (Link&)GetSelectHdl() ).Call( this );
661 0 : bRelease = sal_True;
662 0 : break;
663 :
664 : case KEY_ESCAPE:
665 0 : SelectEntryPos( nCurPos );
666 0 : ReleaseFocus_Impl();
667 0 : nHandled = 1;
668 0 : break;
669 : }
670 : }
671 0 : return nHandled;
672 : }
673 :
674 : // -----------------------------------------------------------------------
675 :
676 0 : void SvxFillTypeBox::ReleaseFocus_Impl()
677 : {
678 0 : if( SfxViewShell::Current() )
679 : {
680 0 : Window* pShellWnd = SfxViewShell::Current()->GetWindow();
681 :
682 0 : if ( pShellWnd )
683 0 : pShellWnd->GrabFocus();
684 : }
685 0 : }
686 :
687 : //========================================================================
688 : // SvxFillAttrBox
689 : //========================================================================
690 :
691 0 : SvxFillAttrBox::SvxFillAttrBox( Window* pParent, WinBits nBits ) :
692 :
693 : FillAttrLB( pParent, nBits | WB_TABSTOP ),
694 :
695 : nCurPos( 0 ),
696 0 : bRelease( sal_True )
697 :
698 : {
699 0 : SetPosPixel( Point( 90, 0 ) );
700 0 : SetSizePixel( LogicToPixel( Size(50, 80 ), MAP_APPFONT ));
701 0 : Show();
702 0 : }
703 :
704 : // -----------------------------------------------------------------------
705 :
706 0 : SvxFillAttrBox::~SvxFillAttrBox()
707 : {
708 0 : }
709 :
710 : // -----------------------------------------------------------------------
711 :
712 0 : long SvxFillAttrBox::PreNotify( NotifyEvent& rNEvt )
713 : {
714 0 : sal_uInt16 nType = rNEvt.GetType();
715 :
716 0 : if ( EVENT_MOUSEBUTTONDOWN == nType || EVENT_GETFOCUS == nType )
717 0 : nCurPos = GetSelectEntryPos();
718 :
719 0 : return FillAttrLB::PreNotify( rNEvt );
720 : }
721 :
722 : // -----------------------------------------------------------------------
723 :
724 0 : long SvxFillAttrBox::Notify( NotifyEvent& rNEvt )
725 : {
726 0 : long nHandled = FillAttrLB::Notify( rNEvt );
727 :
728 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
729 : {
730 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
731 :
732 0 : switch ( pKEvt->GetKeyCode().GetCode() )
733 : {
734 : case KEY_RETURN:
735 0 : ( (Link&)GetSelectHdl() ).Call( this );
736 0 : nHandled = 1;
737 0 : break;
738 : case KEY_TAB:
739 0 : bRelease = sal_False;
740 0 : GetSelectHdl().Call( this );
741 0 : bRelease = sal_True;
742 0 : break;
743 : case KEY_ESCAPE:
744 0 : SelectEntryPos( nCurPos );
745 0 : ReleaseFocus_Impl();
746 0 : nHandled = 1;
747 0 : break;
748 : }
749 : }
750 0 : return nHandled;
751 : }
752 :
753 : // -----------------------------------------------------------------------
754 :
755 0 : void SvxFillAttrBox::Select()
756 : {
757 0 : FillAttrLB::Select();
758 0 : }
759 :
760 : // -----------------------------------------------------------------------
761 :
762 0 : void SvxFillAttrBox::ReleaseFocus_Impl()
763 : {
764 0 : if( SfxViewShell::Current() )
765 : {
766 0 : Window* pShellWnd = SfxViewShell::Current()->GetWindow();
767 :
768 0 : if ( pShellWnd )
769 0 : pShellWnd->GrabFocus();
770 : }
771 57 : }
772 :
773 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|