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 <string>
21 : #include <vcl/toolbox.hxx>
22 : #include <vcl/button.hxx>
23 : #include <vcl/settings.hxx>
24 : #include <svl/intitem.hxx>
25 : #include <sfx2/dispatch.hxx>
26 : #include <sfx2/app.hxx>
27 :
28 : #include <svx/dialogs.hrc>
29 : #include "svx/layctrl.hxx"
30 : #include <svx/dialmgr.hxx>
31 : #include <comphelper/processfactory.hxx>
32 : #include <comphelper/string.hxx>
33 : #include <svtools/colorcfg.hxx>
34 : #include <com/sun/star/util/URLTransformer.hpp>
35 :
36 : // namespaces
37 : using namespace ::com::sun::star::uno;
38 : using namespace ::com::sun::star::beans;
39 : using namespace ::com::sun::star::util;
40 : using namespace ::com::sun::star::frame;
41 :
42 548 : SFX_IMPL_TOOLBOX_CONTROL(SvxTableToolBoxControl,SfxUInt16Item);
43 177 : SFX_IMPL_TOOLBOX_CONTROL(SvxColumnsToolBoxControl,SfxUInt16Item);
44 :
45 : class TableWindow : public SfxPopupWindow
46 : {
47 : private:
48 : VclPtr<PushButton> aTableButton;
49 : ::Color aLineColor;
50 : ::Color aFillColor;
51 : ::Color aHighlightFillColor;
52 : ::Color aBackgroundColor;
53 : long nCol;
54 : long nLine;
55 : bool bInitialKeyInput;
56 : bool m_bMod1;
57 : ToolBox& rTbx;
58 : Reference< XFrame > mxFrame;
59 : OUString maCommand;
60 :
61 : static const long TABLE_CELLS_HORIZ;
62 : static const long TABLE_CELLS_VERT;
63 :
64 : long mnTableCellWidth;
65 : long mnTableCellHeight;
66 :
67 : long mnTablePosX;
68 : long mnTablePosY;
69 :
70 : long mnTableWidth;
71 : long mnTableHeight;
72 :
73 : DECL_LINK( SelectHdl, void * );
74 :
75 : public:
76 : TableWindow( sal_uInt16 nSlotId,
77 : const OUString& rCmd,
78 : const OUString& rText,
79 : ToolBox& rParentTbx,
80 : const Reference< XFrame >& rFrame );
81 : virtual ~TableWindow();
82 : virtual void dispose() SAL_OVERRIDE;
83 :
84 : void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
85 : virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
86 : virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
87 : virtual void Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& ) SAL_OVERRIDE;
88 : virtual void PopupModeEnd() SAL_OVERRIDE;
89 : virtual VclPtr<SfxPopupWindow> Clone() const SAL_OVERRIDE;
90 :
91 : private:
92 : void Update( long nNewCol, long nNewLine );
93 : void TableDialog( const Sequence< PropertyValue >& rArgs );
94 : void CloseAndShowTableDialog();
95 : };
96 :
97 : const long TableWindow::TABLE_CELLS_HORIZ = 10;
98 : const long TableWindow::TABLE_CELLS_VERT = 15;
99 :
100 :
101 :
102 0 : IMPL_LINK_NOARG(TableWindow, SelectHdl)
103 : {
104 0 : CloseAndShowTableDialog();
105 0 : return 0;
106 : }
107 :
108 :
109 :
110 0 : TableWindow::TableWindow( sal_uInt16 nSlotId, const OUString& rCmd, const OUString& rText,
111 : ToolBox& rParentTbx, const Reference< XFrame >& rFrame )
112 : : SfxPopupWindow( nSlotId, rFrame, WinBits( WB_STDPOPUP ) )
113 : , aTableButton( VclPtr<PushButton>::Create(this) )
114 : , nCol( 0 )
115 : , nLine( 0 )
116 : , bInitialKeyInput(false)
117 : , m_bMod1(false)
118 : , rTbx(rParentTbx)
119 : , mxFrame( rFrame )
120 : , maCommand( rCmd )
121 : , mnTablePosX(2)
122 0 : , mnTablePosY(2)
123 : {
124 0 : mnTableCellWidth = 15 * GetDPIScaleFactor();
125 0 : mnTableCellHeight = 15 * GetDPIScaleFactor();
126 :
127 0 : mnTableWidth = mnTablePosX + TABLE_CELLS_HORIZ*mnTableCellWidth;
128 0 : mnTableHeight = mnTablePosY + TABLE_CELLS_VERT*mnTableCellHeight;
129 :
130 0 : const StyleSettings& rStyles = Application::GetSettings().GetStyleSettings();
131 0 : svtools::ColorConfig aColorConfig;
132 :
133 0 : aLineColor = rStyles.GetShadowColor();
134 0 : aFillColor = rStyles.GetWindowColor();
135 0 : aHighlightFillColor = rStyles.GetHighlightColor();
136 0 : aBackgroundColor = GetSettings().GetStyleSettings().GetFaceColor();
137 :
138 0 : SetBackground( aBackgroundColor );
139 0 : vcl::Font aFont = GetFont();
140 0 : aFont.SetColor( ::Color( aColorConfig.GetColorValue( svtools::FONTCOLOR ).nColor ) );
141 0 : aFont.SetFillColor( aBackgroundColor );
142 0 : aFont.SetTransparent( false );
143 0 : SetFont( aFont );
144 :
145 0 : SetText( rText );
146 :
147 0 : aTableButton->SetPosSizePixel( Point( mnTablePosX, mnTableHeight + 5 ),
148 0 : Size( mnTableWidth - mnTablePosX, 24 ) );
149 0 : aTableButton->SetText( SVX_RESSTR( RID_SVXSTR_MORE ) );
150 0 : aTableButton->SetClickHdl( LINK( this, TableWindow, SelectHdl ) );
151 0 : aTableButton->Show();
152 :
153 0 : SetOutputSizePixel( Size( mnTableWidth + 3, mnTableHeight + 33 ) );
154 0 : }
155 :
156 :
157 :
158 0 : TableWindow::~TableWindow()
159 : {
160 0 : disposeOnce();
161 0 : }
162 :
163 0 : void TableWindow::dispose()
164 : {
165 0 : aTableButton.disposeAndClear();
166 0 : SfxPopupWindow::dispose();
167 0 : }
168 :
169 0 : VclPtr<SfxPopupWindow> TableWindow::Clone() const
170 : {
171 0 : return VclPtr<TableWindow>::Create( GetId(), maCommand, GetText(), rTbx, mxFrame );
172 : }
173 :
174 :
175 :
176 0 : void TableWindow::MouseMove( const MouseEvent& rMEvt )
177 : {
178 0 : SfxPopupWindow::MouseMove( rMEvt );
179 0 : Point aPos = rMEvt.GetPosPixel();
180 0 : Point aMousePos( aPos );
181 :
182 0 : long nNewCol = ( aMousePos.X() - mnTablePosX + mnTableCellWidth ) / mnTableCellWidth;
183 0 : long nNewLine = ( aMousePos.Y() - mnTablePosY + mnTableCellHeight ) / mnTableCellHeight;
184 :
185 0 : Update( nNewCol, nNewLine );
186 0 : }
187 :
188 :
189 :
190 0 : void TableWindow::KeyInput( const KeyEvent& rKEvt )
191 : {
192 0 : bool bHandled = false;
193 0 : sal_uInt16 nModifier = rKEvt.GetKeyCode().GetModifier();
194 0 : sal_uInt16 nKey = rKEvt.GetKeyCode().GetCode();
195 0 : if ( !nModifier )
196 : {
197 0 : bHandled = true;
198 0 : long nNewCol = nCol;
199 0 : long nNewLine = nLine;
200 0 : switch(nKey)
201 : {
202 : case KEY_UP:
203 0 : if ( nNewLine > 1 )
204 0 : nNewLine--;
205 : else
206 0 : EndPopupMode( FloatWinPopupEndFlags::Cancel );
207 0 : break;
208 : case KEY_DOWN:
209 0 : if ( nNewLine < TABLE_CELLS_VERT )
210 0 : nNewLine++;
211 : else
212 0 : CloseAndShowTableDialog();
213 0 : break;
214 : case KEY_LEFT:
215 0 : if ( nNewCol > 1 )
216 0 : nNewCol--;
217 : else
218 0 : EndPopupMode( FloatWinPopupEndFlags::Cancel );
219 0 : break;
220 : case KEY_RIGHT:
221 0 : if ( nNewCol < TABLE_CELLS_HORIZ )
222 0 : nNewCol++;
223 : else
224 0 : CloseAndShowTableDialog();
225 0 : break;
226 : case KEY_ESCAPE:
227 0 : EndPopupMode( FloatWinPopupEndFlags::Cancel );
228 0 : break;
229 : case KEY_RETURN:
230 0 : EndPopupMode( FloatWinPopupEndFlags::CloseAll );
231 0 : break;
232 : case KEY_TAB:
233 0 : CloseAndShowTableDialog();
234 0 : break;
235 : default:
236 0 : bHandled = false;
237 : }
238 0 : if ( bHandled )
239 : {
240 : //make sure that a table can initially be created
241 0 : if(bInitialKeyInput)
242 : {
243 0 : bInitialKeyInput = false;
244 0 : if(!nNewLine)
245 0 : nNewLine = 1;
246 0 : if(!nNewCol)
247 0 : nNewCol = 1;
248 : }
249 0 : Update( nNewCol, nNewLine );
250 : }
251 : }
252 0 : else if(KEY_MOD1 == nModifier && KEY_RETURN == nKey)
253 : {
254 0 : m_bMod1 = true;
255 0 : EndPopupMode( FloatWinPopupEndFlags::CloseAll );
256 : }
257 :
258 0 : if(!bHandled)
259 0 : SfxPopupWindow::KeyInput(rKEvt);
260 0 : }
261 :
262 :
263 :
264 0 : void TableWindow::MouseButtonUp( const MouseEvent& rMEvt )
265 : {
266 0 : SfxPopupWindow::MouseButtonUp( rMEvt );
267 0 : EndPopupMode( FloatWinPopupEndFlags::CloseAll );
268 0 : }
269 :
270 :
271 :
272 0 : void TableWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
273 : {
274 0 : const long nSelectionWidth = mnTablePosX + nCol * mnTableCellWidth;
275 0 : const long nSelectionHeight = mnTablePosY + nLine * mnTableCellHeight;
276 :
277 : // the non-selected parts of the table
278 0 : rRenderContext.SetLineColor(aLineColor);
279 0 : rRenderContext.SetFillColor(aFillColor);
280 0 : rRenderContext.DrawRect(Rectangle(nSelectionWidth, mnTablePosY, mnTableWidth, nSelectionHeight));
281 0 : rRenderContext.DrawRect(Rectangle(mnTablePosX, nSelectionHeight, nSelectionWidth, mnTableHeight));
282 0 : rRenderContext.DrawRect(Rectangle(nSelectionWidth, nSelectionHeight, mnTableWidth, mnTableHeight));
283 :
284 : // the selection
285 0 : if (nCol > 0 && nLine > 0)
286 : {
287 0 : rRenderContext.SetFillColor(aHighlightFillColor);
288 0 : rRenderContext.DrawRect(Rectangle(mnTablePosX, mnTablePosY, nSelectionWidth, nSelectionHeight));
289 : }
290 :
291 : // lines inside of the table
292 0 : rRenderContext.SetLineColor(aLineColor);
293 0 : for (long i = 1; i < TABLE_CELLS_VERT; ++i)
294 : {
295 0 : rRenderContext.DrawLine(Point(mnTablePosX, mnTablePosY + i*mnTableCellHeight),
296 0 : Point(mnTableWidth, mnTablePosY + i*mnTableCellHeight));
297 : }
298 :
299 0 : for (long i = 1; i < TABLE_CELLS_HORIZ; ++i)
300 : {
301 0 : rRenderContext.DrawLine(Point( mnTablePosX + i*mnTableCellWidth, mnTablePosY),
302 0 : Point( mnTablePosX + i*mnTableCellWidth, mnTableHeight));
303 : }
304 :
305 : // the text near the mouse cursor telling the table dimensions
306 0 : if (nCol && nLine)
307 : {
308 0 : OUString aText;
309 0 : aText += OUString::number( nCol );
310 0 : aText += " x ";
311 0 : aText += OUString::number( nLine );
312 0 : if(GetId() == FN_SHOW_MULTIPLE_PAGES)
313 : {
314 0 : aText += " ";
315 0 : aText += SVX_RESSTR(RID_SVXSTR_PAGES);
316 : }
317 :
318 0 : Size aTextSize(rRenderContext.GetTextWidth(aText), rRenderContext.GetTextHeight());
319 :
320 0 : long nTextX = nSelectionWidth + mnTableCellWidth;
321 0 : long nTextY = nSelectionHeight + mnTableCellHeight;
322 0 : const long nTipBorder = 2;
323 :
324 0 : if (aTextSize.Width() + mnTablePosX + mnTableCellWidth + 2 * nTipBorder < nSelectionWidth)
325 0 : nTextX = nSelectionWidth - mnTableCellWidth - aTextSize.Width();
326 :
327 0 : if (aTextSize.Height() + mnTablePosY + mnTableCellHeight + 2 * nTipBorder < nSelectionHeight)
328 0 : nTextY = nSelectionHeight - mnTableCellHeight - aTextSize.Height();
329 :
330 0 : rRenderContext.SetLineColor(aLineColor);
331 0 : rRenderContext.SetFillColor(aBackgroundColor);
332 : rRenderContext.DrawRect(Rectangle(nTextX - 2 * nTipBorder,
333 : nTextY - 2 * nTipBorder,
334 0 : nTextX + aTextSize.Width() + nTipBorder,
335 0 : nTextY + aTextSize.Height() + nTipBorder));
336 :
337 : // #i95350# force RTL output
338 0 : if (IsRTLEnabled())
339 0 : aText = OUString(0x202D) + aText;
340 :
341 0 : rRenderContext.DrawText(Point(nTextX, nTextY), aText);
342 : }
343 0 : }
344 :
345 :
346 :
347 0 : void TableWindow::PopupModeEnd()
348 : {
349 0 : if ( !IsPopupModeCanceled() && nCol && nLine )
350 : {
351 0 : Sequence< PropertyValue > aArgs( 2 );
352 0 : aArgs[0].Name = "Columns";
353 0 : aArgs[0].Value = makeAny( sal_Int16( nCol ));
354 0 : aArgs[1].Name = "Rows";
355 0 : aArgs[1].Value = makeAny( sal_Int16( nLine ));
356 :
357 0 : TableDialog( aArgs );
358 : }
359 :
360 0 : SfxPopupWindow::PopupModeEnd();
361 0 : }
362 :
363 :
364 :
365 0 : void TableWindow::Update( long nNewCol, long nNewLine )
366 : {
367 0 : if ( nNewCol < 0 || nNewCol > TABLE_CELLS_HORIZ )
368 0 : nNewCol = 0;
369 :
370 0 : if ( nNewLine < 0 || nNewLine > TABLE_CELLS_VERT )
371 0 : nNewLine = 0;
372 :
373 0 : if ( nNewCol != nCol || nNewLine != nLine )
374 : {
375 0 : nCol = nNewCol;
376 0 : nLine = nNewLine;
377 0 : Invalidate(Rectangle(mnTablePosX, mnTablePosY, mnTableWidth, mnTableHeight));
378 : }
379 0 : }
380 :
381 :
382 :
383 0 : void TableWindow::TableDialog( const Sequence< PropertyValue >& rArgs )
384 : {
385 0 : Reference< XDispatchProvider > xDispatchProvider( mxFrame, UNO_QUERY );
386 0 : if ( xDispatchProvider.is() )
387 : {
388 0 : com::sun::star::util::URL aTargetURL;
389 0 : Reference < XURLTransformer > xTrans( URLTransformer::create(::comphelper::getProcessComponentContext()) );
390 0 : aTargetURL.Complete = maCommand;
391 0 : xTrans->parseStrict( aTargetURL );
392 :
393 0 : Reference< XDispatch > xDispatch = xDispatchProvider->queryDispatch( aTargetURL, OUString(), 0 );
394 0 : if ( xDispatch.is() )
395 0 : xDispatch->dispatch( aTargetURL, rArgs );
396 0 : }
397 0 : }
398 :
399 :
400 :
401 0 : void TableWindow::CloseAndShowTableDialog()
402 : {
403 : // close the toolbar tool
404 0 : EndPopupMode( FloatWinPopupEndFlags::Cancel );
405 :
406 : // and open the table dialog instead
407 0 : TableDialog( Sequence< PropertyValue >() );
408 0 : }
409 :
410 0 : class ColumnsWindow : public SfxPopupWindow
411 : {
412 : private:
413 : ::Color aLineColor;
414 : ::Color aHighlightLineColor;
415 : ::Color aFillColor;
416 : ::Color aHighlightFillColor;
417 : ::Color aFaceColor;
418 : long nCol;
419 : long nWidth;
420 : long nMX;
421 : long nTextHeight;
422 : bool bInitialKeyInput;
423 : bool m_bMod1;
424 : ToolBox& rTbx;
425 : Reference< XFrame > mxFrame;
426 : OUString maCommand;
427 :
428 : void UpdateSize_Impl( long nNewCol );
429 : public:
430 : ColumnsWindow( sal_uInt16 nId, const OUString& rCmd, const OUString &rText, ToolBox& rParentTbx, const Reference< XFrame >& rFrame );
431 :
432 : void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
433 : virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
434 : virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
435 : virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
436 : virtual void Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& ) SAL_OVERRIDE;
437 : virtual void PopupModeEnd() SAL_OVERRIDE;
438 : virtual VclPtr<SfxPopupWindow> Clone() const SAL_OVERRIDE;
439 : };
440 :
441 :
442 :
443 0 : ColumnsWindow::ColumnsWindow( sal_uInt16 nId, const OUString& rCmd, const OUString& rText, ToolBox& rParentTbx, const Reference< XFrame >& rFrame ) :
444 : SfxPopupWindow( nId, rFrame, WB_STDPOPUP ),
445 : bInitialKeyInput(true),
446 : m_bMod1(false),
447 : rTbx(rParentTbx),
448 : mxFrame(rFrame),
449 0 : maCommand( rCmd )
450 : {
451 0 : const StyleSettings& rStyles = Application::GetSettings().GetStyleSettings();
452 0 : svtools::ColorConfig aColorConfig;
453 0 : aLineColor = ::Color( aColorConfig.GetColorValue( svtools::FONTCOLOR ).nColor );
454 0 : aHighlightLineColor = rStyles.GetHighlightTextColor();
455 0 : aFillColor = rStyles.GetWindowColor();
456 0 : aHighlightFillColor = rStyles.GetHighlightColor();
457 0 : aFaceColor = rStyles.GetFaceColor();
458 :
459 0 : nTextHeight = GetTextHeight()+1;
460 0 : SetBackground();
461 0 : vcl::Font aFont( GetFont() );
462 0 : aFont.SetColor( aLineColor );
463 0 : aFont.SetFillColor( aFaceColor );
464 0 : aFont.SetTransparent( false );
465 0 : SetFont( aFont );
466 :
467 0 : nCol = 0;
468 0 : nWidth = 4;
469 :
470 0 : SetText( rText );
471 :
472 0 : Size aLogicSize = LogicToPixel( Size( 95, 155 ), MapMode( MAP_10TH_MM ) );
473 0 : nMX = aLogicSize.Width();
474 0 : SetOutputSizePixel( Size( nMX*nWidth-1, aLogicSize.Height()+nTextHeight ) );
475 0 : StartCascading();
476 0 : }
477 :
478 :
479 :
480 0 : VclPtr<SfxPopupWindow> ColumnsWindow::Clone() const
481 : {
482 0 : return VclPtr<ColumnsWindow>::Create( GetId(), maCommand, GetText(), rTbx, mxFrame );
483 : }
484 :
485 :
486 :
487 0 : void ColumnsWindow::MouseMove( const MouseEvent& rMEvt )
488 : {
489 0 : SfxPopupWindow::MouseMove( rMEvt );
490 0 : Point aPos = rMEvt.GetPosPixel();
491 0 : Point aMousePos = aPos;
492 :
493 0 : if ( rMEvt.IsEnterWindow() )
494 0 : CaptureMouse();
495 0 : else if ( aMousePos.X() < 0 || aMousePos.Y() < 0 )
496 : {
497 0 : nCol = 0;
498 0 : ReleaseMouse();
499 0 : Invalidate();
500 0 : return;
501 : }
502 :
503 0 : long nNewCol = 0;
504 0 : if ( aPos.X() > 0 )
505 0 : nNewCol = aPos.X() / nMX + 1;
506 0 : if ( aPos.Y() < 0 )
507 0 : nNewCol = 0;
508 0 : if ( nNewCol > 20 )
509 0 : nNewCol = 20;
510 0 : UpdateSize_Impl( nNewCol );
511 : }
512 :
513 0 : void ColumnsWindow::UpdateSize_Impl( long nNewCol )
514 : {
515 0 : Size aWinSize = GetOutputSizePixel();
516 0 : Point aWinPos;// = GetPosPixel();
517 :
518 0 : if ( nWidth <= nNewCol )
519 : {
520 0 : Point aMaxPos = OutputToScreenPixel( GetDesktopRectPixel().BottomRight() );
521 :
522 0 : if ( nWidth <= nNewCol )
523 : {
524 0 : nWidth = nNewCol;
525 0 : nWidth++;
526 : }
527 :
528 0 : while ( nWidth > 0 &&
529 0 : (short)(aWinPos.X()+(nMX*nWidth-1)) >= aMaxPos.X()-3 )
530 0 : nWidth--;
531 :
532 0 : if ( nNewCol > nWidth )
533 0 : nNewCol = nWidth;
534 :
535 0 : Invalidate( Rectangle( 0, aWinSize.Height()-nTextHeight+2,
536 0 : aWinSize.Width(), aWinSize.Height() ) );
537 0 : SetOutputSizePixel( Size( nMX*nWidth-1, aWinSize.Height() ) );
538 : }
539 :
540 :
541 0 : if ( nNewCol != nCol )
542 : {
543 0 : Invalidate( Rectangle( 0, aWinSize.Height()-nTextHeight+2,
544 0 : aWinSize.Width(), aWinSize.Height() ) );
545 :
546 0 : long nMinCol = 0, nMaxCol = 0;
547 :
548 0 : if ( nNewCol < nCol )
549 : {
550 0 : nMinCol = nNewCol;
551 0 : nMaxCol = nCol;
552 : }
553 : else
554 : {
555 0 : nMinCol = nCol;
556 0 : nMaxCol = nNewCol;
557 : }
558 :
559 0 : Invalidate( Rectangle( nMinCol*nMX-1, 0,
560 0 : nMaxCol*nMX+1, aWinSize.Height()-nTextHeight+2 ) );
561 0 : nCol = nNewCol;
562 : }
563 0 : Update();
564 0 : }
565 :
566 :
567 0 : void ColumnsWindow::MouseButtonDown( const MouseEvent& rMEvt )
568 : {
569 0 : SfxPopupWindow::MouseButtonDown( rMEvt );
570 0 : CaptureMouse();
571 0 : }
572 :
573 0 : void ColumnsWindow::KeyInput( const KeyEvent& rKEvt )
574 : {
575 0 : bool bHandled = false;
576 0 : sal_uInt16 nModifier = rKEvt.GetKeyCode().GetModifier();
577 0 : sal_uInt16 nKey = rKEvt.GetKeyCode().GetCode();
578 0 : if(!nModifier)
579 : {
580 0 : if( KEY_LEFT == nKey || KEY_RIGHT == nKey ||
581 0 : KEY_RETURN == nKey ||KEY_ESCAPE == nKey ||
582 : KEY_UP == nKey)
583 : {
584 0 : bHandled = true;
585 0 : long nNewCol = nCol;
586 0 : switch(nKey)
587 : {
588 : case KEY_LEFT :
589 0 : if(nNewCol)
590 0 : nNewCol--;
591 0 : break;
592 : case KEY_RIGHT :
593 0 : nNewCol++;
594 0 : break;
595 : case KEY_RETURN :
596 0 : if(IsMouseCaptured())
597 0 : ReleaseMouse();
598 0 : EndPopupMode(FloatWinPopupEndFlags::CloseAll );
599 0 : break;
600 : case KEY_ESCAPE :
601 : case KEY_UP :
602 0 : EndPopupMode( FloatWinPopupEndFlags::Cancel);
603 0 : break;
604 : }
605 : //make sure that a table can initially be created
606 0 : if(bInitialKeyInput)
607 : {
608 0 : bInitialKeyInput = false;
609 0 : if(!nNewCol)
610 0 : nNewCol = 1;
611 : }
612 0 : UpdateSize_Impl( nNewCol );
613 : }
614 : }
615 0 : else if(KEY_MOD1 == nModifier && KEY_RETURN == nKey)
616 : {
617 0 : m_bMod1 = true;
618 0 : if(IsMouseCaptured())
619 0 : ReleaseMouse();
620 0 : EndPopupMode(FloatWinPopupEndFlags::CloseAll );
621 : }
622 0 : if(!bHandled)
623 0 : SfxPopupWindow::KeyInput(rKEvt);
624 0 : }
625 :
626 :
627 :
628 0 : void ColumnsWindow::MouseButtonUp( const MouseEvent& rMEvt )
629 : {
630 0 : SfxPopupWindow::MouseButtonUp( rMEvt );
631 0 : ReleaseMouse();
632 :
633 0 : if ( IsInPopupMode() )
634 0 : EndPopupMode( FloatWinPopupEndFlags::CloseAll );
635 0 : }
636 :
637 :
638 :
639 0 : void ColumnsWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
640 : {
641 : long i;
642 : long nLineWidth;
643 0 : Size aSize = rRenderContext.GetOutputSizePixel();
644 :
645 0 : for (i = 0; i < nWidth; i++)
646 : {
647 0 : if (i < nCol)
648 : {
649 0 : rRenderContext.SetLineColor(aHighlightLineColor);
650 0 : rRenderContext.SetFillColor(aHighlightFillColor);
651 : }
652 : else
653 : {
654 0 : rRenderContext.SetLineColor(aLineColor);
655 0 : rRenderContext.SetFillColor(aFillColor);
656 : }
657 :
658 0 : rRenderContext.DrawRect(Rectangle(i * nMX - 1, -1, i * nMX + nMX, aSize.Height() - nTextHeight + 1));
659 :
660 0 : long j = 4;
661 0 : while (j < aSize.Height() - nTextHeight - 4)
662 : {
663 0 : if (!(j % 16))
664 0 : nLineWidth = 10;
665 : else
666 0 : nLineWidth = 4;
667 0 : rRenderContext.DrawLine(Point(i * nMX + 4, j), Point(i * nMX + nMX - nLineWidth - 4, j));
668 0 : j += 4;
669 : }
670 : }
671 :
672 0 : rRenderContext.SetLineColor();
673 0 : rRenderContext.SetFillColor(aFaceColor);
674 0 : OUString aText;
675 0 : if (nCol)
676 0 : aText = OUString::number(nCol);
677 : else
678 0 : aText = comphelper::string::remove(Button::GetStandardText(StandardButtonType::Cancel), '~');
679 :
680 0 : Size aTextSize(rRenderContext.GetTextWidth(aText), rRenderContext.GetTextHeight());
681 0 : rRenderContext.DrawText(Point((aSize.Width() - aTextSize.Width()) / 2, aSize.Height() - nTextHeight + 2), aText);
682 :
683 : rRenderContext.DrawRect(Rectangle(0,
684 0 : aSize.Height() - nTextHeight + 2,
685 0 : (aSize.Width() - aTextSize.Width()) / 2 - 1,
686 0 : aSize.Height()));
687 :
688 0 : rRenderContext.DrawRect(Rectangle((aSize.Width() - aTextSize.Width()) / 2 + aTextSize.Width(),
689 0 : aSize.Height() - nTextHeight + 2,
690 0 : aSize.Width(),
691 0 : aSize.Height()));
692 :
693 0 : rRenderContext.SetLineColor(aLineColor);
694 0 : rRenderContext.SetFillColor();
695 0 : rRenderContext.DrawRect(Rectangle( 0, 0, aSize.Width() - 1, aSize.Height() - nTextHeight + 1));
696 0 : }
697 :
698 :
699 :
700 0 : void ColumnsWindow::PopupModeEnd()
701 : {
702 0 : if ( !IsPopupModeCanceled() && nCol )
703 : {
704 0 : Sequence< PropertyValue > aArgs( 2 );
705 0 : aArgs[0].Name = "Columns";
706 0 : aArgs[0].Value = makeAny( sal_Int16( nCol ));
707 0 : aArgs[1].Name = "Modifier";
708 0 : aArgs[1].Value = makeAny( sal_Int16( m_bMod1 ? KEY_MOD1 : 0 ));
709 :
710 0 : SfxToolBoxControl::Dispatch( Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
711 : maCommand,
712 0 : aArgs );
713 : }
714 0 : else if ( IsPopupModeCanceled() )
715 0 : ReleaseMouse();
716 0 : SfxPopupWindow::PopupModeEnd();
717 0 : }
718 :
719 409 : SvxTableToolBoxControl::SvxTableToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
720 : SfxToolBoxControl( nSlotId, nId, rTbx ),
721 409 : bEnabled( true )
722 : {
723 409 : rTbx.SetItemBits( nId, ToolBoxItemBits::DROPDOWNONLY | rTbx.GetItemBits( nId ) );
724 409 : rTbx.Invalidate();
725 409 : }
726 :
727 :
728 :
729 818 : SvxTableToolBoxControl::~SvxTableToolBoxControl()
730 : {
731 818 : }
732 :
733 :
734 :
735 0 : SfxPopupWindowType SvxTableToolBoxControl::GetPopupWindowType() const
736 : {
737 0 : return SfxPopupWindowType::ONTIMEOUTANDMOVE;
738 : }
739 :
740 :
741 :
742 0 : VclPtr<SfxPopupWindow> SvxTableToolBoxControl::CreatePopupWindow()
743 : {
744 0 : if ( bEnabled )
745 : {
746 0 : ToolBox& rTbx = GetToolBox();
747 0 : VclPtr<TableWindow> pWin = VclPtr<TableWindow>::Create( GetSlotId(), m_aCommandURL, GetToolBox().GetItemText( GetId() ), rTbx, m_xFrame );
748 0 : pWin->StartPopupMode( &rTbx, FloatWinPopupFlags::GrabFocus|FloatWinPopupFlags::NoKeyClose );
749 0 : SetPopupWindow( pWin );
750 0 : return pWin;
751 : }
752 0 : return 0;
753 : }
754 :
755 702 : void SvxTableToolBoxControl::StateChanged( sal_uInt16, SfxItemState eState, const SfxPoolItem* pState )
756 : {
757 702 : if ( pState && pState->ISA(SfxUInt16Item) )
758 : {
759 0 : sal_Int16 nValue = static_cast< const SfxUInt16Item* >( pState )->GetValue();
760 0 : bEnabled = ( nValue != 0 );
761 : }
762 : else
763 702 : bEnabled = SfxItemState::DISABLED != eState;
764 :
765 702 : sal_uInt16 nId = GetId();
766 702 : ToolBox& rTbx = GetToolBox();
767 :
768 702 : rTbx.EnableItem( nId, SfxItemState::DISABLED != eState );
769 : rTbx.SetItemState( nId,
770 702 : ( SfxItemState::DONTCARE == eState ) ? TRISTATE_INDET : TRISTATE_FALSE );
771 702 : }
772 :
773 0 : SvxColumnsToolBoxControl::SvxColumnsToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
774 : : SfxToolBoxControl(nSlotId, nId, rTbx)
775 0 : , bEnabled(false)
776 : {
777 0 : rTbx.SetItemBits( nId, ToolBoxItemBits::DROPDOWN | rTbx.GetItemBits( nId ) );
778 0 : rTbx.Invalidate();
779 0 : }
780 :
781 :
782 :
783 0 : SvxColumnsToolBoxControl::~SvxColumnsToolBoxControl()
784 : {
785 0 : }
786 :
787 :
788 :
789 0 : SfxPopupWindowType SvxColumnsToolBoxControl::GetPopupWindowType() const
790 : {
791 0 : return SfxPopupWindowType::ONTIMEOUTANDMOVE;
792 : }
793 :
794 :
795 :
796 0 : VclPtr<SfxPopupWindow> SvxColumnsToolBoxControl::CreatePopupWindow()
797 : {
798 0 : ColumnsWindow* pWin = 0;
799 0 : if(bEnabled)
800 : {
801 0 : pWin = VclPtr<ColumnsWindow>::Create( GetSlotId(), m_aCommandURL, GetToolBox().GetItemText( GetId() ), GetToolBox(), m_xFrame );
802 0 : pWin->StartPopupMode( &GetToolBox(),
803 0 : FloatWinPopupFlags::GrabFocus|FloatWinPopupFlags::NoKeyClose );
804 0 : SetPopupWindow( pWin );
805 : }
806 0 : return pWin;
807 : }
808 :
809 0 : void SvxColumnsToolBoxControl::StateChanged( sal_uInt16 nSID,
810 : SfxItemState eState,
811 : const SfxPoolItem* pState )
812 : {
813 0 : bEnabled = SfxItemState::DISABLED != eState;
814 0 : SfxToolBoxControl::StateChanged(nSID, eState, pState );
815 390 : }
816 :
817 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|