1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/tbar95.cpp
3 // Purpose: wxToolBar95
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "tbar95.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/dynarray.h"
37 #if wxUSE_BUTTONBAR && wxUSE_TOOLBAR && defined(__WIN95__)
39 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
43 #include "wx/msw/private.h"
47 #ifdef __GNUWIN32_OLD__
48 #include "wx/msw/gnuwin32/extra.h"
55 #include "wx/msw/dib.h"
56 #include "wx/tbar95.h"
57 #include "wx/app.h" // for GetComCtl32Version
59 // ----------------------------------------------------------------------------
61 // ----------------------------------------------------------------------------
63 // these standard constants are not always defined in compilers headers
67 #define TBSTYLE_LIST 0x1000
68 #define TBSTYLE_FLAT 0x0800
69 #define TBSTYLE_TRANSPARENT 0x8000
71 // use TBSTYLE_TRANSPARENT if you use TBSTYLE_FLAT
75 #define TB_GETSTYLE (WM_USER + 57)
76 #define TB_SETSTYLE (WM_USER + 56)
79 // these values correspond to those used by comctl32.dll
80 #define DEFAULTBITMAPX 16
81 #define DEFAULTBITMAPY 15
82 #define DEFAULTBUTTONX 24
83 #define DEFAULTBUTTONY 24
84 #define DEFAULTBARHEIGHT 27
86 // ----------------------------------------------------------------------------
87 // function prototypes
88 // ----------------------------------------------------------------------------
90 static void wxMapBitmap(HBITMAP hBitmap
, int width
, int height
);
92 // ----------------------------------------------------------------------------
94 // ----------------------------------------------------------------------------
96 #if !USE_SHARED_LIBRARY
97 IMPLEMENT_DYNAMIC_CLASS(wxToolBar95
, wxToolBarBase
)
100 BEGIN_EVENT_TABLE(wxToolBar95
, wxToolBarBase
)
101 EVT_MOUSE_EVENTS(wxToolBar95::OnMouseEvent
)
102 EVT_SYS_COLOUR_CHANGED(wxToolBar95::OnSysColourChanged
)
105 // ============================================================================
107 // ============================================================================
109 // ----------------------------------------------------------------------------
110 // wxToolBar95 construction
111 // ----------------------------------------------------------------------------
113 void wxToolBar95::Init()
118 m_defaultWidth
= DEFAULTBITMAPX
;
119 m_defaultHeight
= DEFAULTBITMAPY
;
122 bool wxToolBar95::Create(wxWindow
*parent
,
127 const wxString
& name
)
129 wxASSERT_MSG( (style
& wxTB_VERTICAL
) == 0,
130 wxT("Sorry, wxToolBar95 under Windows 95 only "
131 "supports horizontal orientation.") );
133 // common initialisation
134 if ( !CreateControl(parent
, id
, pos
, size
, style
, name
) )
137 // set up the colors and fonts
139 wxRGBToColour(m_backgroundColour
, GetSysColor(COLOR_BTNFACE
));
140 m_foregroundColour
= *wxBLACK
;
142 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
146 DWORD msflags
= 0; // WS_VISIBLE | WS_CHILD always included
147 if (style
& wxBORDER
)
148 msflags
|= WS_BORDER
;
149 msflags
|= TBSTYLE_TOOLTIPS
;
151 if (style
& wxTB_FLAT
)
153 if (wxTheApp
->GetComCtl32Version() > 400)
154 msflags
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
157 // MSW-specific initialisation
158 if ( !wxControl::MSWCreateControl(TOOLBARCLASSNAME
, msflags
) )
161 // Toolbar-specific initialisation
162 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
173 height
= m_defaultHeight
;
179 SetSize(x
, y
, width
, height
);
184 wxToolBar95::~wxToolBar95()
190 ::DeleteObject((HBITMAP
) m_hBitmap
);
194 void wxToolBar95::ClearTools()
196 // TODO: Don't know how to reset the toolbar bitmap, as yet.
197 // But adding tools and calling CreateTools should probably
198 // recreate a buttonbar OK.
199 wxToolBarBase::ClearTools();
202 bool wxToolBar95::AddControl(wxControl
*control
)
204 wxCHECK_MSG( control
, FALSE
, _T("toolbar: can't insert NULL control") );
206 wxCHECK_MSG( control
->GetParent() == this, FALSE
,
207 _T("control must have toolbar as parent") );
209 wxToolBarTool
*tool
= new wxToolBarTool(control
);
211 m_tools
.Append(control
->GetId(), tool
);
216 wxToolBarTool
*wxToolBar95::AddTool(int index
,
217 const wxBitmap
& bitmap
,
218 const wxBitmap
& pushedBitmap
,
220 long xPos
, long yPos
,
221 wxObject
*clientData
,
222 const wxString
& helpString1
,
223 const wxString
& helpString2
)
225 wxToolBarTool
*tool
= new wxToolBarTool(index
, bitmap
, wxNullBitmap
,
227 helpString1
, helpString2
);
228 tool
->m_clientData
= clientData
;
233 tool
->m_x
= m_xMargin
;
238 tool
->m_y
= m_yMargin
;
240 tool
->SetSize(GetToolSize().x
, GetToolSize().y
);
242 m_tools
.Append((long)index
, tool
);
247 bool wxToolBar95::CreateTools()
249 size_t nTools
= m_tools
.GetCount();
253 HBITMAP oldToolBarBitmap
= (HBITMAP
) m_hBitmap
;
255 int totalBitmapWidth
= (int)(m_defaultWidth
* nTools
);
256 int totalBitmapHeight
= (int)m_defaultHeight
;
258 // Create a bitmap for all the tool bitmaps
259 HDC dc
= ::GetDC(NULL
);
260 m_hBitmap
= (WXHBITMAP
) ::CreateCompatibleBitmap(dc
,
263 ::ReleaseDC(NULL
, dc
);
265 // Now blit all the tools onto this bitmap
266 HDC memoryDC
= ::CreateCompatibleDC(NULL
);
267 HBITMAP oldBitmap
= (HBITMAP
) ::SelectObject(memoryDC
, (HBITMAP
)m_hBitmap
);
269 HDC memoryDC2
= ::CreateCompatibleDC(NULL
);
271 // the button position
274 // the number of buttons (not separators)
277 wxNode
*node
= m_tools
.First();
280 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
281 if ( tool
->m_toolStyle
== wxTOOL_STYLE_BUTTON
&& tool
->m_bitmap1
.Ok() )
283 HBITMAP hbmp
= GetHbitmapOf(tool
->m_bitmap1
);
286 HBITMAP oldBitmap2
= (HBITMAP
)::SelectObject(memoryDC2
, hbmp
);
287 if ( !BitBlt(memoryDC
, x
, 0, m_defaultWidth
, m_defaultHeight
,
288 memoryDC2
, 0, 0, SRCCOPY
) )
290 wxLogLastError("BitBlt");
293 ::SelectObject(memoryDC2
, oldBitmap2
);
302 ::SelectObject(memoryDC
, oldBitmap
);
303 ::DeleteDC(memoryDC
);
304 ::DeleteDC(memoryDC2
);
306 // Map to system colours
307 wxMapBitmap((HBITMAP
) m_hBitmap
, totalBitmapWidth
, totalBitmapHeight
);
309 if ( oldToolBarBitmap
)
311 TBREPLACEBITMAP replaceBitmap
;
312 replaceBitmap
.hInstOld
= NULL
;
313 replaceBitmap
.hInstNew
= NULL
;
314 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
315 replaceBitmap
.nIDNew
= (UINT
) (HBITMAP
) m_hBitmap
;
316 replaceBitmap
.nButtons
= noButtons
;
317 if ( ::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
318 0, (LPARAM
) &replaceBitmap
) == -1 )
320 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
323 ::DeleteObject((HBITMAP
) oldToolBarBitmap
);
325 // Now delete all the buttons
329 // TODO: What about separators???? They don't have an id!
330 if ( ! ::SendMessage( GetHwnd(), TB_DELETEBUTTON
, i
, 0 ) )
336 TBADDBITMAP addBitmap
;
338 addBitmap
.nID
= (UINT
)m_hBitmap
;
339 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
340 (WPARAM
) noButtons
, (LPARAM
)&addBitmap
) == -1 )
342 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
346 // Now add the buttons.
347 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
349 // this array will holds the indices of all controls in the toolbar
350 wxArrayInt controlIds
;
355 node
= m_tools
.First();
358 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
359 TBBUTTON
& button
= buttons
[i
];
361 wxZeroMemory(button
);
363 switch ( tool
->m_toolStyle
)
365 case wxTOOL_STYLE_CONTROL
:
367 button
.idCommand
= tool
->m_index
;
368 // fall through: create just a separator too
370 case wxTOOL_STYLE_SEPARATOR
:
371 button
.fsState
= TBSTATE_ENABLED
;
372 button
.fsStyle
= TBSTYLE_SEP
;
375 case wxTOOL_STYLE_BUTTON
:
376 button
.iBitmap
= bitmapId
;
377 button
.idCommand
= tool
->m_index
;
380 button
.fsState
|= TBSTATE_ENABLED
;
381 if (tool
->m_toggleState
)
382 button
.fsState
|= TBSTATE_CHECKED
;
383 button
.fsStyle
= tool
->m_isToggle
? TBSTYLE_CHECK
394 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
,
395 (WPARAM
)i
, (LPARAM
)buttons
) )
397 wxLogLastError("TB_ADDBUTTONS");
402 // adjust the controls size to fit nicely in the toolbar
403 size_t nControls
= controlIds
.GetCount();
404 for ( size_t nCtrl
= 0; nCtrl
< nControls
; nCtrl
++ )
406 wxToolBarTool
*tool
= (wxToolBarTool
*)
407 m_tools
.Nth(controlIds
[nCtrl
])->Data();
408 wxControl
*control
= tool
->GetControl();
410 wxSize size
= control
->GetSize();
412 // set the (underlying) separators width to be that of the control
414 tbbi
.cbSize
= sizeof(tbbi
);
415 tbbi
.dwMask
= TBIF_SIZE
;
417 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
418 tool
->m_index
, (LPARAM
)&tbbi
) )
420 // the index is probably invalid
421 wxLogLastError("TB_SETBUTTONINFO");
424 // and position the control itself correctly vertically
426 SendMessage(GetHwnd(), TB_GETRECT
, 0, (LPARAM
)(LPRECT
)&r
);
428 int height
= r
.bottom
- r
.top
;
429 int diff
= height
- size
.y
;
432 // the control is too high, resize to fit
433 control
->SetSize(-1, height
- 2);
438 control
->Move(r
.left
, r
.top
+ diff
/ 2);
441 (void)::SendMessage(GetHwnd(), TB_AUTOSIZE
, (WPARAM
)0, (LPARAM
) 0);
448 // ----------------------------------------------------------------------------
450 // ----------------------------------------------------------------------------
452 bool wxToolBar95::MSWCommand(WXUINT cmd
, WXWORD id
)
454 wxNode
*node
= m_tools
.Find((long)id
);
458 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
459 if (tool
->m_isToggle
)
461 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
462 tool
->m_toggleState
= state
& TBSTATE_CHECKED
;
465 BOOL ret
= OnLeftClick((int)id
, tool
->m_toggleState
);
466 if ( ret
== FALSE
&& tool
->m_isToggle
)
468 tool
->m_toggleState
= !tool
->m_toggleState
;
469 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
470 (WPARAM
)id
, (LPARAM
)MAKELONG(tool
->m_toggleState
, 0));
476 bool wxToolBar95::MSWOnNotify(int WXUNUSED(idCtrl
),
480 // First check if this applies to us
481 NMHDR
*hdr
= (NMHDR
*)lParam
;
483 // the tooltips control created by the toolbar is sometimes Unicode, even
484 // in an ANSI application - this seems to be a bug in comctl32.dll v5
485 int code
= (int)hdr
->code
;
486 if ( (code
!= TTN_NEEDTEXTA
) && (code
!= TTN_NEEDTEXTW
) )
489 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
490 if ( toolTipWnd
!= hdr
->hwndFrom
)
493 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
494 int id
= (int)ttText
->hdr
.idFrom
;
495 wxNode
*node
= m_tools
.Find((long)id
);
499 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
501 const wxString
& help
= tool
->m_shortHelpString
;
503 if ( !help
.IsEmpty() )
505 if ( code
== TTN_NEEDTEXTA
)
507 ttText
->lpszText
= (wxChar
*)help
.c_str();
509 #if (_WIN32_IE >= 0x0300)
512 // FIXME this is a temp hack only until I understand better what
513 // must be done in both ANSI and Unicode builds
515 size_t lenAnsi
= help
.Len();
517 // MetroWerks doesn't like calling mbstowcs with NULL argument
518 size_t lenUnicode
= 2*lenAnsi
;
520 size_t lenUnicode
= mbstowcs(NULL
, help
, lenAnsi
);
523 // using the pointer of right type avoids us doing all sorts of
524 // pointer arithmetics ourselves
525 wchar_t *dst
= (wchar_t *)ttText
->szText
,
526 *pwz
= new wchar_t[lenUnicode
+ 1];
527 mbstowcs(pwz
, help
, lenAnsi
+ 1);
528 memcpy(dst
, pwz
, lenUnicode
*sizeof(wchar_t));
530 // put the terminating _wide_ NUL
535 #endif // _WIN32_IE >= 0x0300
538 // For backward compatibility...
539 OnMouseEnter(tool
->m_index
);
544 // ----------------------------------------------------------------------------
546 // ----------------------------------------------------------------------------
548 void wxToolBar95::SetToolBitmapSize(const wxSize
& size
)
550 wxToolBarBase::SetToolBitmapSize(size
);
552 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
555 void wxToolBar95::SetRows(int nRows
)
557 // TRUE in wParam means to create at least as many rows
559 ::SendMessage(GetHwnd(), TB_SETROWS
,
560 MAKEWPARAM(nRows
, TRUE
), (LPARAM
) &rect
);
562 m_maxWidth
= (rect
.right
- rect
.left
+ 2);
563 m_maxHeight
= (rect
.bottom
- rect
.top
+ 2);
568 wxSize
wxToolBar95::GetMaxSize() const
570 if ( (m_maxWidth
== -1) || (m_maxHeight
== -1) )
572 // it has a side effect of filling m_maxWidth/Height variables
573 ((wxToolBar95
*)this)->SetRows(m_maxRows
); // const_cast
576 return wxSize(m_maxWidth
, m_maxHeight
);
579 // The button size is bigger than the bitmap size
580 wxSize
wxToolBar95::GetToolSize() const
582 // FIXME: this is completely bogus (VZ)
583 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
586 // ----------------------------------------------------------------------------
588 // ----------------------------------------------------------------------------
590 void wxToolBar95::EnableTool(int toolIndex
, bool enable
)
592 wxNode
*node
= m_tools
.Find((long)toolIndex
);
595 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
596 tool
->m_enabled
= enable
;
597 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
598 (WPARAM
)toolIndex
, (LPARAM
)MAKELONG(enable
, 0));
602 void wxToolBar95::ToggleTool(int toolIndex
, bool toggle
)
604 wxNode
*node
= m_tools
.Find((long)toolIndex
);
607 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
608 if (tool
->m_isToggle
)
610 tool
->m_toggleState
= toggle
;
611 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
612 (WPARAM
)toolIndex
, (LPARAM
)MAKELONG(toggle
, 0));
617 bool wxToolBar95::GetToolState(int toolIndex
) const
619 return (::SendMessage(GetHwnd(), TB_ISBUTTONCHECKED
, (WPARAM
)toolIndex
, (LPARAM
)0) != 0);
622 // ----------------------------------------------------------------------------
624 // ----------------------------------------------------------------------------
626 // Responds to colour changes, and passes event on to children.
627 void wxToolBar95::OnSysColourChanged(wxSysColourChangedEvent
& event
)
629 m_backgroundColour
= wxColour(GetRValue(GetSysColor(COLOR_BTNFACE
)),
630 GetGValue(GetSysColor(COLOR_BTNFACE
)), GetBValue(GetSysColor(COLOR_BTNFACE
)));
637 // Propagate the event to the non-top-level children
638 wxWindow::OnSysColourChanged(event
);
641 void wxToolBar95::OnMouseEvent(wxMouseEvent
& event
)
643 if (event
.RightDown())
645 // For now, we don't have an id. Later we could
646 // try finding the tool.
647 OnRightClick((int)-1, event
.GetX(), event
.GetY());
655 // ----------------------------------------------------------------------------
657 // ----------------------------------------------------------------------------
659 // These are the default colors used to map the bitmap colors
660 // to the current system colors
662 // VZ: why are they BGR and not RGB? just to confuse the people or is there a
664 #define BGR_BUTTONTEXT (RGB(000,000,000)) // black
665 #define BGR_BUTTONSHADOW (RGB(128,128,128)) // dark grey
666 #define BGR_BUTTONFACE (RGB(192,192,192)) // bright grey
667 #define BGR_BUTTONHILIGHT (RGB(255,255,255)) // white
668 #define BGR_BACKGROUNDSEL (RGB(255,000,000)) // blue
669 #define BGR_BACKGROUND (RGB(255,000,255)) // magenta
671 void wxMapBitmap(HBITMAP hBitmap
, int width
, int height
)
673 COLORMAP ColorMap
[] =
675 {BGR_BUTTONTEXT
, COLOR_BTNTEXT
}, // black
676 {BGR_BUTTONSHADOW
, COLOR_BTNSHADOW
}, // dark grey
677 {BGR_BUTTONFACE
, COLOR_BTNFACE
}, // bright grey
678 {BGR_BUTTONHILIGHT
, COLOR_BTNHIGHLIGHT
},// white
679 {BGR_BACKGROUNDSEL
, COLOR_HIGHLIGHT
}, // blue
680 {BGR_BACKGROUND
, COLOR_WINDOW
} // magenta
683 int NUM_MAPS
= (sizeof(ColorMap
)/sizeof(COLORMAP
));
685 for ( n
= 0; n
< NUM_MAPS
; n
++)
687 ColorMap
[n
].to
= ::GetSysColor(ColorMap
[n
].to
);
691 HDC hdcMem
= CreateCompatibleDC(NULL
);
695 hbmOld
= (HBITMAP
) SelectObject(hdcMem
, hBitmap
);
698 for ( i
= 0; i
< width
; i
++)
700 for ( j
= 0; j
< height
; j
++)
702 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
704 BYTE red = GetRValue(pixel);
705 BYTE green = GetGValue(pixel);
706 BYTE blue = GetBValue(pixel);
709 for ( k
= 0; k
< NUM_MAPS
; k
++)
711 if ( ColorMap
[k
].from
== pixel
)
713 /* COLORREF actualPixel = */ ::SetPixel(hdcMem
, i
, j
, ColorMap
[k
].to
);
721 SelectObject(hdcMem
, hbmOld
);
722 DeleteObject(hdcMem
);
727 // Some experiments...
729 // What we want to do is create another bitmap which has a depth of 4,
730 // and set the bits. So probably we want to convert this HBITMAP into a
731 // DIB, then call SetDIBits.
732 // AAAGH. The stupid thing is that if newBitmap has a depth of 4 (less than that of
733 // the screen), then SetDIBits fails.
734 HBITMAP newBitmap
= ::CreateBitmap(totalBitmapWidth
, totalBitmapHeight
, 1, 4, NULL
);
735 HANDLE newDIB
= ::BitmapToDIB((HBITMAP
) m_hBitmap
, NULL
);
736 LPBITMAPINFOHEADER lpbmi
= (LPBITMAPINFOHEADER
) GlobalLock(newDIB
);
739 // LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) newDIB;
741 int result
= ::SetDIBits(dc
, newBitmap
, 0, lpbmi
->biHeight
, FindDIBBits((LPSTR
)lpbmi
), (LPBITMAPINFO
)lpbmi
,
743 DWORD err
= GetLastError();
745 ::ReleaseDC(NULL
, dc
);
748 GlobalUnlock (newDIB
);
751 // WXHBITMAP hBitmap2 = wxCreateMappedBitmap((WXHINSTANCE) wxGetInstance(), (WXHBITMAP) m_hBitmap);
752 // Substitute our new bitmap for the old one
753 ::DeleteObject((HBITMAP
) m_hBitmap
);
754 m_hBitmap
= (WXHBITMAP
) newBitmap
;
758 #endif // !(wxUSE_TOOLBAR && Win95)