1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolWindow implementation.
4 // Author: Aleksandras Gluchovas
8 // Copyright: (c) Aleksandras Gluchovas
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "toolwnd.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/fl/toolwnd.h"
29 #define _IMG_A 0xAA // Note: modified from _A to _IMG_A, _A was already defined (cygwin)
30 #define _IMG_B 0x00 // Note: modified from _B to _IMG_A, _B was already defined (cygwin)
31 #define _IMG_C 0x55 // Note: modified from _C to _IMG_C, for consistency reasons.
32 #define _IMG_D 0x00 // Note: modified from _D to _IMG_D, for consistency reasons.
36 static const unsigned char _gCheckerImg
[16] = { _IMG_A
,_IMG_B
,_IMG_C
,_IMG_D
,
37 _IMG_A
,_IMG_B
,_IMG_C
,_IMG_D
,
38 _IMG_A
,_IMG_B
,_IMG_C
,_IMG_D
,
39 _IMG_A
,_IMG_B
,_IMG_C
,_IMG_D
42 /***** Implementation for class wxToolWindow *****/
44 IMPLEMENT_DYNAMIC_CLASS( wxToolWindow
, wxFrame
)
46 BEGIN_EVENT_TABLE( wxToolWindow
, wxFrame
)
48 EVT_PAINT ( wxToolWindow::OnPaint
)
49 EVT_MOTION ( wxToolWindow::OnMotion
)
50 EVT_LEFT_DOWN( wxToolWindow::OnLeftDown
)
51 EVT_LEFT_UP ( wxToolWindow::OnLeftUp
)
52 EVT_SIZE ( wxToolWindow::OnSize
)
55 EVT_ERASE_BACKGROUND( wxToolWindow::OnEraseBackground
)
59 enum INTERNAL_HIT_CODES
70 HITS_WND_TOP_LEFT_CORNER
,
71 HITS_WND_BOTTOM_RIGHT_CORNER
,
72 HITS_WND_TOP_RIGHT_CORNER
,
73 HITS_WND_BOTTOM_LEFT_CORNER
76 wxToolWindow::wxToolWindow()
78 : mpClientWnd ( NULL
),
81 mTitleFont( 8, wxSWISS
, wxNORMAL
, wxNORMAL
),
83 // just to simulate MS-Dev style
84 mTitleFont( 8, wxSWISS
, wxNORMAL
, wxNORMAL
, FALSE
, "MS Sans Serif" ),
97 mResizeStarted( FALSE
),
98 mRealTimeUpdatesOn( TRUE
),
100 mMTolerance ( 5 ), // mouse-resizing tollerance
102 mCursorType( HITS_WND_NOTHING
),
103 mMouseCaptured( FALSE
),
110 wxToolWindow::~wxToolWindow()
112 if ( mpScrDc
) delete mpScrDc
;
114 for( size_t i
= 0; i
!= mButtons
.Count(); ++i
)
119 void wxToolWindow::LayoutMiniButtons()
125 int x
= w
- mWndHorizGap
- mInTitleMargin
- BTN_BOX_WIDTH
;
126 int y
= mWndVertGap
+ 2;
128 for( size_t i
= 0; i
!= mButtons
.Count(); ++i
)
130 mButtons
[i
]->SetPos( wxPoint( x
,y
) );
131 x
-= BTN_BOX_WIDTH
+ mButtonGap
;
135 void wxToolWindow::SetClient( wxWindow
* pWnd
)
140 wxWindow
* wxToolWindow::GetClient()
145 void wxToolWindow::SetTitleFont( wxFont
& font
)
150 void wxToolWindow::AddMiniButton( cbMiniButton
* pBtn
)
154 mButtons
.Add( pBtn
);
156 // not necesserely now..
157 //LayoutMiniButtons();
160 void wxToolWindow::OnPaint( wxPaintEvent
& event
)
162 wxPaintDC
pdc( this );
163 wxWindowDC
dc( this );
168 wxBrush
backGround( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_BTNFACE
), wxSOLID
);
169 //dc.SetBrush( *wxLIGHT_GREY_BRUSH );
170 dc
.SetBrush( backGround
);
171 dc
.SetPen( *wxTRANSPARENT_PEN
);
173 int y
= mWndVertGap
+ mTitleHeight
+ mClntVertGap
;
174 dc
.DrawRectangle( 0,0, w
, y
); // Top grey part.
175 dc
.DrawRectangle( 0,y
-1, mWndHorizGap
+ mClntHorizGap
, h
- y
); // Left grey part.
176 dc
.DrawRectangle( w
- ( mWndHorizGap
+ mClntHorizGap
), y
-1,
177 mWndHorizGap
+ mClntHorizGap
, h
- y
); // Right grey part.
178 dc
.DrawRectangle( 0, h
- mWndVertGap
- mClntVertGap
, w
, mWndVertGap
+ mClntVertGap
); // Bottom grey part.
181 dc
.SetPen( *wxLIGHT_GREY_PEN
);
183 dc
.DrawLine( 0,0, w
, 0 );
184 dc
.DrawLine( 0,0, 0, h
);
186 dc
.SetPen( *wxWHITE_PEN
);
188 dc
.DrawLine( 1,1, w
, 1 );
189 dc
.DrawLine( 1,2, 1, h
);
191 dc
.SetPen( *wxGREY_PEN
);
193 dc
.DrawLine( w
- 2, 1, w
- 2, h
- 1 );
194 dc
.DrawLine( 1, h
- 2, w
- 2, h
- 2 );
196 dc
.SetPen( *wxBLACK_PEN
);
198 dc
.DrawLine( 0, h
- 1, w
, h
- 1 );
199 dc
.DrawLine( w
-1, 0, w
-1, h
);
203 dc
.SetBrush( *wxTheBrushList
->FindOrCreateBrush( wxColour( 0,0,128 ), wxSOLID
) );
205 dc
.DrawRectangle( mWndHorizGap
, mWndVertGap
, w
- mWndHorizGap
*2, mTitleHeight
);
207 dc
.SetFont( mTitleFont
);
209 for( size_t i
= 0; i
!= mButtons
.Count(); ++i
)
211 mButtons
[i
]->Draw( dc
);
213 int x1
= mWndHorizGap
+ mClntHorizGap
;
214 int x2
= mButtons
[ mButtons
.GetCount() - 1 ]->mPos
.x
- mClntHorizGap
*2;
216 dc
.SetClippingRegion( x1
, mWndVertGap
+ mClntVertGap
, x2
- x1
, mTitleHeight
);
218 dc
.SetTextForeground( *wxWHITE
);
219 dc
.SetBackgroundMode( wxTRANSPARENT
);
220 dc
.DrawText( GetTitle(), mWndHorizGap
+ 2, mWndVertGap
+ 1 );
223 void wxToolWindow::GetScrWindowRect( wxRect
& r
)
231 r
.width
= w
; r
.height
= h
;
234 void wxToolWindow::GetScrMousePos( wxMouseEvent
& event
, wxPoint
& pos
)
236 int x
= event
.m_x
, y
= event
.m_y
;
238 ClientToScreen( &x
, &y
);
240 pos
.x
= x
; pos
.y
= y
;
243 int wxToolWindow::HitTestWindow( wxMouseEvent
& event
)
248 GetScrMousePos( event
, pos
);
249 GetScrWindowRect( r
);
253 if ( !( pos
.x
>= r
.x
&& pos
.y
>= r
.y
&&
254 pos
.x
< r
.x
+ r
.width
&&
255 pos
.y
< r
.y
+ r
.height
)
257 return HITS_WND_NOTHING
;
259 if ( pos
.y
<= r
.y
+ k
)
261 if ( pos
.x
< r
.x
+ k
*2 )
263 return HITS_WND_TOP_LEFT_CORNER
;
265 if ( pos
.x
>= r
.x
+ r
.width
- k
*2 )
267 return HITS_WND_TOP_RIGHT_CORNER
;
269 return HITS_WND_TOP_EDGE
;
272 if ( pos
.y
>= r
.y
+ r
.height
- k
)
274 if ( pos
.x
< r
.x
+ k
*2 )
276 return HITS_WND_BOTTOM_LEFT_CORNER
;
278 if ( pos
.x
> r
.x
+ r
.width
- k
*2 )
280 return HITS_WND_BOTTOM_RIGHT_CORNER
;
282 return HITS_WND_BOTTOM_EDGE
;
285 if ( pos
.x
<= r
.x
+ k
)
287 return HITS_WND_LEFT_EDGE
;
289 if ( pos
.x
>= r
.x
+ r
.width
- k
)
291 return HITS_WND_RIGHT_EDGE
;
294 if ( pos
.y
<= r
.y
+ mWndVertGap
+ mTitleHeight
+ mClntVertGap
)
296 return HITS_WND_TITLE
;
298 return HITS_WND_CLIENT
;
302 void wxToolWindow::DrawHintRect( const wxRect
& r
)
304 // BUG BUG BUG (wx):: somehow stippled brush works only
305 // when the bitmap created on stack, not
306 // as a member of the class
308 int prevLF
= mpScrDc
->GetLogicalFunction();
310 mpScrDc
->SetLogicalFunction( wxXOR
);
312 wxBitmap
checker( (const char*)_gCheckerImg
, 8,8 );
314 wxBrush
checkerBrush( checker
);
316 mpScrDc
->SetPen( *wxTRANSPARENT_PEN
);
317 mpScrDc
->SetBrush( checkerBrush
);
319 int half
= mHintBorder
/ 2;
321 mpScrDc
->DrawRectangle( r
.x
- half
, r
.y
- half
,
322 r
.width
+ 2*half
, mHintBorder
);
324 mpScrDc
->DrawRectangle( r
.x
- half
, r
.y
+ r
.height
- half
,
325 r
.width
+ 2*half
, mHintBorder
);
327 mpScrDc
->DrawRectangle( r
.x
- half
, r
.y
+ half
- 1,
328 mHintBorder
, r
.height
- 2*half
+ 2);
330 mpScrDc
->DrawRectangle( r
.x
+ r
.width
- half
,
332 mHintBorder
, r
.height
- 2*half
+ 2);
334 mpScrDc
->SetBrush( wxNullBrush
);
336 mpScrDc
->SetLogicalFunction( prevLF
);
339 void wxToolWindow::SetHintCursor( int type
)
341 if ( mResizeStarted
)
344 if ( type
== HITS_WND_NOTHING
|| type
== HITS_WND_CLIENT
)
346 // the cursor is out of window - reset to arrow
348 if ( mMouseCaptured
)
351 mMouseCaptured
= FALSE
;
354 SetCursor( wxCURSOR_ARROW
);
361 if ( !mMouseCaptured
)
363 mMouseCaptured
= TRUE
;
367 // did the cursor actually changed?
369 if ( type
!= mCursorType
)
375 case HITS_WND_LEFT_EDGE
: SetCursor( wxCURSOR_SIZEWE
); break;
376 case HITS_WND_RIGHT_EDGE
: SetCursor( wxCURSOR_SIZEWE
); break;
377 case HITS_WND_TOP_EDGE
: SetCursor( wxCURSOR_SIZENS
); break;
378 case HITS_WND_BOTTOM_EDGE
: SetCursor( wxCURSOR_SIZENS
); break;
380 case HITS_WND_TOP_LEFT_CORNER
: SetCursor( wxCURSOR_SIZENWSE
); break;
381 case HITS_WND_BOTTOM_RIGHT_CORNER
: SetCursor( wxCURSOR_SIZENWSE
); break;
382 case HITS_WND_TOP_RIGHT_CORNER
: SetCursor( wxCURSOR_SIZENESW
); break;
383 case HITS_WND_BOTTOM_LEFT_CORNER
: SetCursor( wxCURSOR_SIZENESW
); break;
385 case HITS_WND_TITLE
: SetCursor( wxCURSOR_ARROW
); break;
386 case HITS_WND_CLIENT
: SetCursor( wxCURSOR_ARROW
); break;
393 #define INFINITY 32768
395 static inline void clip_to( int& value
, long from
, long till
)
404 void wxToolWindow::AdjustRectPos( const wxRect
& original
, const wxSize
& newDim
, wxRect
& newRect
)
406 if ( mCursorType
== HITS_WND_TOP_EDGE
||
407 mCursorType
== HITS_WND_TOP_LEFT_CORNER
)
409 newRect
.x
= original
.x
+ original
.width
- newDim
.x
;
410 newRect
.y
= original
.y
+ original
.height
- newDim
.y
;
413 if ( mCursorType
== HITS_WND_LEFT_EDGE
||
414 mCursorType
== HITS_WND_BOTTOM_LEFT_CORNER
)
416 newRect
.x
= original
.x
+ original
.width
- newDim
.x
;
417 newRect
.y
= original
.y
;
420 if ( mCursorType
== HITS_WND_RIGHT_EDGE
||
421 mCursorType
== HITS_WND_TOP_RIGHT_CORNER
)
423 newRect
.x
= original
.x
;
424 newRect
.y
= original
.y
+ original
.height
- newDim
.y
;
427 if ( mCursorType
== HITS_WND_BOTTOM_EDGE
||
428 mCursorType
== HITS_WND_BOTTOM_RIGHT_CORNER
)
430 newRect
.x
= original
.x
;
431 newRect
.y
= original
.y
;
434 newRect
.width
= newDim
.x
;
435 newRect
.height
= newDim
.y
;
438 void wxToolWindow::CalcResizedRect( wxRect
& rect
, wxPoint
& delta
, const wxSize
& minDim
)
440 // Microsoft's rect-coordinates are best suited
441 // for the case of corner-clipping
443 int left
= mInitialRect
.x
;
444 int top
= mInitialRect
.y
;
445 int right
= mInitialRect
.x
+ mInitialRect
.width
;
446 int bottom
= mInitialRect
.y
+ mInitialRect
.height
;
448 // constraint delta edge is dragged
450 switch ( mCursorType
)
452 case HITS_WND_LEFT_EDGE
: delta
.y
= 0; break;
453 case HITS_WND_RIGHT_EDGE
: delta
.y
= 0; break;
454 case HITS_WND_TOP_EDGE
: delta
.x
= 0; break;
455 case HITS_WND_BOTTOM_EDGE
: delta
.x
= 0; break;
459 if ( mCursorType
== HITS_WND_TOP_EDGE
||
460 mCursorType
== HITS_WND_TOP_LEFT_CORNER
)
465 clip_to( left
, -INFINITY
, mInitialRect
.x
+ mInitialRect
.width
- minDim
.x
);
466 clip_to( top
, -INFINITY
, mInitialRect
.y
+ mInitialRect
.height
- minDim
.y
);
469 if ( mCursorType
== HITS_WND_LEFT_EDGE
||
470 mCursorType
== HITS_WND_BOTTOM_LEFT_CORNER
)
475 clip_to( left
, -INFINITY
, mInitialRect
.x
+ mInitialRect
.width
- minDim
.x
);
476 clip_to( bottom
, mInitialRect
.y
+ minDim
.y
, INFINITY
);
479 if ( mCursorType
== HITS_WND_RIGHT_EDGE
||
480 mCursorType
== HITS_WND_TOP_RIGHT_CORNER
)
485 clip_to( right
, mInitialRect
.x
+ minDim
.x
, INFINITY
);
486 clip_to( top
, -INFINITY
, mInitialRect
.y
+ mInitialRect
.height
- minDim
.y
);
489 if ( mCursorType
== HITS_WND_BOTTOM_EDGE
||
490 mCursorType
== HITS_WND_BOTTOM_RIGHT_CORNER
)
495 clip_to( right
, mInitialRect
.x
+ minDim
.x
, INFINITY
);
496 clip_to( bottom
, mInitialRect
.y
+ minDim
.y
, INFINITY
);
500 wxFAIL( _T("what did the cursor hit?") );
505 rect
.width
= right
- left
;
506 rect
.height
= bottom
- top
;
509 wxSize
wxToolWindow::GetMinimalWndDim()
511 return wxSize( (mWndHorizGap
+ mClntHorizGap
)*2 + BTN_BOX_WIDTH
*4,
512 (mWndVertGap
+ mClntVertGap
)*2 + mTitleHeight
);
515 void wxToolWindow::OnMotion( wxMouseEvent
& event
)
517 if ( !mResizeStarted
)
519 for( size_t i
= 0; i
!= mButtons
.Count(); ++i
)
521 mButtons
[i
]->OnMotion( wxPoint( event
.m_x
, event
.m_y
) );
523 SetHintCursor( HitTestWindow( event
) );
528 GetScrMousePos( event
, pos
);
530 if ( mCursorType
== HITS_WND_TITLE
)
535 SetSize( mInitialRect
.x
+ pos
.x
- mDragOrigin
.x
,
536 mInitialRect
.y
+ pos
.y
- mDragOrigin
.y
,
542 wxPoint
delta( pos
.x
- mDragOrigin
.x
, pos
.y
- mDragOrigin
.y
);
546 wxSize minDim
= GetMinimalWndDim();
548 CalcResizedRect( newRect
, delta
, minDim
);
550 wxSize
borderDim( ( mWndHorizGap
+ mClntHorizGap
)*2,
551 ( mWndVertGap
+ mClntVertGap
)*2 + mTitleHeight
);
553 wxSize preferred
= GetPreferredSize( wxSize( newRect
.width
- borderDim
.x
,
554 newRect
.height
- borderDim
.y
) );
556 preferred
.x
+= borderDim
.x
;
557 preferred
.y
+= borderDim
.y
;
559 //CalcResizedRect( newRect, delta, preferred );
561 wxRect finalRect
= newRect
;
563 AdjustRectPos( newRect
, preferred
, finalRect
);
565 if ( mRealTimeUpdatesOn
)
567 SetSize( finalRect
.x
, finalRect
.y
,
568 finalRect
.width
, finalRect
.height
, 0 );
572 DrawHintRect( mPrevHintRect
);
573 DrawHintRect( finalRect
);
576 mPrevHintRect
= finalRect
;
580 void wxToolWindow::OnLeftDown( wxMouseEvent
& event
)
582 int result
= HitTestWindow( event
);
584 for( size_t i
= 0; i
!= mButtons
.Count(); ++i
)
586 mButtons
[i
]->OnLeftDown( wxPoint( event
.m_x
, event
.m_y
) );
588 if ( mButtons
[i
]->IsPressed() )
590 return; // button hitted,
593 if ( result
>= HITS_WND_LEFT_EDGE
|| result
== HITS_WND_TITLE
)
595 GetScrMousePos( event
, mDragOrigin
);
598 if ( mMouseCaptured `)
601 mMouseCaptured = FALSE;
604 if ( result
== HITS_WND_TITLE
&&
605 HandleTitleClick( event
)
612 mResizeStarted
= TRUE
;
615 GetPosition( &x
, &y
);
621 mInitialRect
.width
= x
;
622 mInitialRect
.height
= y
;
624 mPrevHintRect
= mInitialRect
;
626 if ( mCursorType
!= HITS_WND_TITLE
&& !mRealTimeUpdatesOn
)
628 mpScrDc
= new wxScreenDC();
630 wxScreenDC::StartDrawingOnTop( (wxRect
*)NULL
);
632 DrawHintRect( mInitialRect
);
637 void wxToolWindow::OnLeftUp( wxMouseEvent
& event
)
639 for( size_t i
= 0; i
!= mButtons
.Count(); ++i
)
641 mButtons
[i
]->OnLeftUp( wxPoint( event
.m_x
, event
.m_y
) );
643 if ( mButtons
[i
]->WasClicked() )
645 OnMiniButtonClicked( i
); // notify derived classes
646 mButtons
[i
]->Reset();
650 if ( mResizeStarted
)
652 mResizeStarted
= FALSE
;
654 if ( mCursorType
!= HITS_WND_TITLE
)
656 if ( !mRealTimeUpdatesOn
)
658 DrawHintRect( mPrevHintRect
);
660 wxScreenDC::EndDrawingOnTop();
666 SetSize( mPrevHintRect
.x
, mPrevHintRect
.y
,
667 mPrevHintRect
.width
, mPrevHintRect
.height
, 0 );
673 void wxToolWindow::OnSize( wxSizeEvent
& event
)
680 int x
= mWndHorizGap
+ mClntHorizGap
;
681 int y
= mWndVertGap
+ mTitleHeight
+ mClntVertGap
;
683 mpClientWnd
->SetSize( x
-1, y
-1,
684 w
- 2*(mWndHorizGap
+ mClntHorizGap
),
685 h
- y
- mClntVertGap
- mWndVertGap
,
693 wxSize
wxToolWindow::GetPreferredSize( const wxSize
& given
)
698 void wxToolWindow::OnEraseBackground( wxEraseEvent
& event
)
703 /***** Implementation for class cbMiniButton *****/
705 cbMiniButton::cbMiniButton()
715 mWasClicked( FALSE
),
716 mDragStarted( FALSE
),
720 void cbMiniButton::SetPos( const wxPoint
& pos
)
725 bool cbMiniButton::HitTest( const wxPoint
& pos
)
727 if ( !mVisible
) return FALSE
;
729 return ( pos
.x
>= mPos
.x
&& pos
.y
>= mPos
.y
&&
730 pos
.x
< mPos
.x
+ BTN_BOX_WIDTH
&&
731 pos
.y
< mPos
.y
+ BTN_BOX_HEIGHT
);
734 void cbMiniButton::OnLeftDown( const wxPoint
& pos
)
736 if ( !mVisible
|| mDragStarted
) return;
738 if ( HitTest( pos
) && mEnabled
)
742 mpLayout
->CaptureEventsForPane( mpPane
);
743 mpLayout
->CaptureEventsForPlugin( mpPlugin
);
746 mpWnd
->CaptureMouse();
756 void cbMiniButton::OnLeftUp( const wxPoint
& pos
)
758 if ( !mVisible
|| !mDragStarted
) return;
762 mpLayout
->ReleaseEventsFromPane( mpPane
);
763 mpLayout
->ReleaseEventsFromPlugin( mpPlugin
);
766 mpWnd
->ReleaseMouse();
768 mWasClicked
= mPressed
;
769 mDragStarted
= FALSE
;
775 void cbMiniButton::OnMotion( const wxPoint
& pos
)
777 if ( !mVisible
) return;
781 mPressed
= HitTest( pos
);
787 void cbMiniButton::Refresh()
791 wxClientDC
dc( &mpLayout
->GetParentFrame() );
797 wxWindowDC
dc( mpWnd
);
803 void cbMiniButton::Draw( wxDC
& dc
)
805 if ( !mVisible
) return;
807 dc
.SetPen( *wxTRANSPARENT_PEN
);
809 dc
.SetBrush( *wxLIGHT_GREY_BRUSH
);
811 dc
.DrawRectangle( mPos
.x
+ 1, mPos
.y
+ 1, BTN_BOX_WIDTH
- 2, BTN_BOX_HEIGHT
- 2 );
813 // "hard-code" metafile
817 dc
.SetPen( *wxWHITE_PEN
);
819 dc
.SetPen( *wxBLACK_PEN
);
821 dc
.DrawLine( mPos
.x
, mPos
.y
, mPos
.x
+ BTN_BOX_WIDTH
, mPos
.y
);
822 dc
.DrawLine( mPos
.x
, mPos
.y
, mPos
.x
, mPos
.y
+ BTN_BOX_HEIGHT
);
824 dc
.SetPen( *wxGREY_PEN
);
828 dc
.DrawLine( mPos
.x
+ 1, mPos
.y
+ BTN_BOX_HEIGHT
- 2,
829 mPos
.x
+ BTN_BOX_WIDTH
- 1, mPos
.y
+ BTN_BOX_HEIGHT
- 2 );
831 dc
.DrawLine( mPos
.x
+ BTN_BOX_WIDTH
- 2, mPos
.y
+ 1,
832 mPos
.x
+ BTN_BOX_WIDTH
- 2, mPos
.y
+ BTN_BOX_HEIGHT
- 1 );
836 dc
.DrawLine( mPos
.x
+ 1, mPos
.y
+ 1,
837 mPos
.x
+ BTN_BOX_WIDTH
- 2, mPos
.y
+ 1 );
839 dc
.DrawLine( mPos
.x
+ 1, mPos
.y
+ 1,
840 mPos
.x
+ 1, mPos
.y
+ BTN_BOX_HEIGHT
- 2 );
845 dc
.SetPen( *wxBLACK_PEN
);
847 dc
.SetPen( *wxWHITE_PEN
);
849 dc
.DrawLine( mPos
.x
, mPos
.y
+ BTN_BOX_HEIGHT
- 1,
850 mPos
.x
+ BTN_BOX_WIDTH
, mPos
.y
+ BTN_BOX_HEIGHT
- 1 );
852 dc
.DrawLine( mPos
.x
+ BTN_BOX_WIDTH
- 1, mPos
.y
,
853 mPos
.x
+ BTN_BOX_WIDTH
- 1, mPos
.y
+ BTN_BOX_HEIGHT
);
856 bool cbMiniButton::WasClicked()
861 void cbMiniButton::Reset()
866 /***** Implementation fro class cbCloseBox *****/
868 void cbCloseBox::Draw( wxDC
& dc
)
870 #if defined(__WXGTK__) || defined(__WXX11__)
872 cbMiniButton::Draw( dc
);
874 wxPen
pen( wxColour( 64,64,64 ) ,1, wxSOLID
);
878 int width
= BTN_BOX_WIDTH
- 7;
880 int xOfs
= (mPressed
) ? 4 : 3;
881 int yOfs
= (mPressed
) ? 4 : 3;
884 for( int i
= 0; i
!= BTN_X_WIEGHT
; ++i
)
886 dc
.DrawLine( mPos
.x
+ xOfs
+ i
- one
,
888 mPos
.x
+ xOfs
+ i
+ width
,
889 mPos
.y
+ yOfs
+ width
+ one
);
891 dc
.DrawLine( mPos
.x
+ xOfs
+ i
+ width
,
892 mPos
.y
+ yOfs
- one
- one
,
893 mPos
.x
+ xOfs
+ i
- one
,
894 mPos
.y
+ yOfs
+ width
);
899 cbMiniButton::Draw( dc
);
901 dc
.SetPen( *wxBLACK_PEN
);
903 int width
= BTN_BOX_WIDTH
- 7;
905 int xOfs
= (mPressed
) ? 4 : 3;
906 int yOfs
= (mPressed
) ? 4 : 3;
908 for( int i
= 0; i
!= BTN_X_WIEGHT
; ++i
)
910 dc
.DrawLine( mPos
.x
+ xOfs
+ i
,
912 mPos
.x
+ xOfs
+ i
+ width
,
913 mPos
.y
+ yOfs
+ width
);
915 dc
.DrawLine( mPos
.x
+ xOfs
+ i
+ width
- 1,
917 mPos
.x
+ xOfs
+ i
- 1,
918 mPos
.y
+ yOfs
+ width
);
925 /***** Implementation fro class cbCollapseBox *****/
927 inline static void my_swap( int& a
, int& b
)
934 void cbCollapseBox::Draw( wxDC
& dc
)
936 cbMiniButton::Draw( dc
);
938 dc
.SetPen( *wxTRANSPARENT_PEN
);
942 int yOfs
= (mPressed
) ? 3 : 2;
943 int xOfs
= (mPressed
) ? 5 : 4;
944 int width
= BTN_BOX_WIDTH
- 8;
946 // rotating/shifting triangle inside collapse box
951 arr
[2].y
= BTN_BOX_HEIGHT
- yOfs
- 1;
952 arr
[1].x
= xOfs
+ width
;
953 arr
[1].y
= (arr
[2].y
+ arr
[0].y
)/2;
957 arr
[0].x
= BTN_BOX_WIDTH
- arr
[0].x
;
958 arr
[1].x
= BTN_BOX_WIDTH
- arr
[1].x
;
959 arr
[2].x
= BTN_BOX_WIDTH
- arr
[2].x
;
962 if ( !mpPane
->IsHorizontal() )
964 my_swap( arr
[0].y
, arr
[0].x
);
965 my_swap( arr
[1].y
, arr
[1].x
);
966 my_swap( arr
[2].y
, arr
[2].x
);
982 if ( !mEnabled
) dc
.SetBrush( *wxGREY_BRUSH
);
983 else dc
.SetBrush( *wxBLACK_BRUSH
);
985 dc
.DrawPolygon( 3, arr
);
986 dc
.SetBrush( wxNullBrush
);
989 /***** Implementation for class cbDockBoxBox *****/
991 void cbDockBox::Draw( wxDC
& dc
)
993 cbMiniButton::Draw( dc
);
995 int width
= BTN_BOX_WIDTH
- 7;
997 int xOfs
= (mPressed
) ? 4 : 3;
998 int yOfs
= (mPressed
) ? 4 : 3;
1000 dc
.SetPen( *wxBLACK_PEN
);
1001 dc
.SetBrush( *wxBLACK_BRUSH
);
1003 dc
.DrawRectangle( mPos
.x
+ xOfs
, mPos
.y
+ yOfs
, width
, width
);
1008 dc
.SetBrush( *wxWHITE_BRUSH
);
1010 dc
.DrawRectangle( mPos
.x
+ xOfs
, mPos
.y
+ yOfs
, width
-2, width
-2 );
1013 /***** Implementation for class wxToolWindow *****/
1015 IMPLEMENT_DYNAMIC_CLASS( cbFloatedBarWindow
, wxToolWindow
)
1017 BEGIN_EVENT_TABLE( cbFloatedBarWindow
, wxToolWindow
)
1019 EVT_LEFT_DCLICK( cbFloatedBarWindow::OnDblClick
)
1023 cbFloatedBarWindow::cbFloatedBarWindow()
1027 AddMiniButton( new cbCloseBox() );
1028 AddMiniButton( new cbDockBox() );
1031 void cbFloatedBarWindow::SetBar( cbBarInfo
* pBar
)
1036 cbBarInfo
* cbFloatedBarWindow::GetBar()
1041 void cbFloatedBarWindow::SetLayout( wxFrameLayout
* pLayout
)
1046 void cbFloatedBarWindow::PositionFloatedWnd( int scrX
, int scrY
,
1047 int width
, int height
)
1049 wxSize minDim
= GetMinimalWndDim();
1051 SetSize( scrX
- mWndHorizGap
- mClntHorizGap
,
1052 scrY
- mClntVertGap
- mTitleHeight
- mWndVertGap
,
1053 width
+ minDim
.x
, height
+ minDim
.y
, 0 );
1056 wxSize
cbFloatedBarWindow::GetPreferredSize( const wxSize
& given
)
1058 if ( mpBar
->mDimInfo
.GetDimHandler() )
1061 cbBarDimHandlerBase
* pHandler
= mpBar
->mDimInfo
.GetDimHandler();
1065 // int vtad = *((int*)pHandler);
1067 pHandler
->OnResizeBar( mpBar
, given
, prefDim
);
1073 if ( mpBar
->IsFixed() )
1075 return mpBar
->mDimInfo
.mSizes
[ wxCBAR_FLOATING
];
1077 return given
; // not-fixed bars are resized exactly the way user wants
1081 void cbFloatedBarWindow::OnMiniButtonClicked( int btnIdx
)
1083 // #1 - close mini-button
1084 // #0 - dock mini-button
1088 mpBar
->mAlignment
= -1; // sepcial "marking" for hidden bars out of floated state
1089 mpLayout
->SetBarState( mpBar
, wxCBAR_HIDDEN
, TRUE
);
1092 mpLayout
->SetBarState( mpBar
, wxCBAR_DOCKED_HORIZONTALLY
, TRUE
);
1095 bool cbFloatedBarWindow::HandleTitleClick( wxMouseEvent
& event
)
1098 mMouseCaptured
= FALSE
;
1101 GetScrMousePos( event
, scrPos
);
1106 mpLayout
->GetParentFrame().ScreenToClient( &msX
, &msY
);
1113 wxSize minDim
= GetMinimalWndDim();
1118 x
+= mWndHorizGap
+ mClntHorizGap
;
1119 y
+= mWndVertGap
+ mTitleHeight
+ mClntVertGap
;
1121 mpLayout
->GetParentFrame().ScreenToClient( &x
, &y
);
1123 wxRect
& bounds
= mpBar
->mDimInfo
.mBounds
[ wxCBAR_FLOATING
];
1130 cbStartBarDraggingEvent
dragEvt( mpBar
, wxPoint(msX
,msY
),
1131 mpLayout
->GetPanesArray()[FL_ALIGN_TOP
] );
1133 mpLayout
->FirePluginEvent( dragEvt
);
1138 void cbFloatedBarWindow::OnDblClick( wxMouseEvent
& event
)
1140 mpLayout
->SetBarState( mpBar
, wxCBAR_DOCKED_HORIZONTALLY
, TRUE
);
1142 //wxMessageBox("toolWnd - dblClick!");