toolbar tooltips fix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -84,6 +84,31 @@ static const struct
|
|||||||
// empty C style string: points to 'string data' byte of g_strEmpty
|
// empty C style string: points to 'string data' byte of g_strEmpty
|
||||||
extern const char *g_szNul = &g_strEmpty.dummy;
|
extern const char *g_szNul = &g_strEmpty.dummy;
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// conditional compilation
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// we want to find out if the current platform supports vsnprintf()-like
|
||||||
|
// function: for Unix this is done with configure, for Windows we test the
|
||||||
|
// compiler explicitly.
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define wxVsprintf _vsnprintf
|
||||||
|
#endif
|
||||||
|
#else // !Windows
|
||||||
|
#ifdef HAVE_VSNPRINTF
|
||||||
|
#define wxVsprintf vsnprintf
|
||||||
|
#endif
|
||||||
|
#endif // Windows/!Windows
|
||||||
|
|
||||||
|
#ifndef wxVsprintf
|
||||||
|
// in this case we'll use vsprintf() (which is ANSI and thus should be
|
||||||
|
// always available), but it's unsafe because it doesn't check for buffer
|
||||||
|
// size - so give a warning
|
||||||
|
#define wxVsprintf(buffer,len,format,argptr) vsprintf(buffer,format, argptr)
|
||||||
|
#pragma message("Using sprintf() because no snprintf()-like function defined")
|
||||||
|
#endif
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// global functions
|
// global functions
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
@@ -947,9 +972,11 @@ int wxString::PrintfV(const char* pszFormat, va_list argptr)
|
|||||||
// static buffer to avoid dynamic memory allocation each time
|
// static buffer to avoid dynamic memory allocation each time
|
||||||
static char s_szScratch[1024];
|
static char s_szScratch[1024];
|
||||||
|
|
||||||
|
// NB: wxVsprintf() may return either less than the buffer size or -1 if there
|
||||||
|
// is not enough place depending on implementation
|
||||||
int iLen = wxVsprintf(s_szScratch, WXSIZEOF(s_szScratch), pszFormat, argptr);
|
int iLen = wxVsprintf(s_szScratch, WXSIZEOF(s_szScratch), pszFormat, argptr);
|
||||||
char *buffer;
|
char *buffer;
|
||||||
if ( (size_t)iLen < WXSIZEOF(s_szScratch) ) {
|
if ( iLen < (int)WXSIZEOF(s_szScratch) ) {
|
||||||
buffer = s_szScratch;
|
buffer = s_szScratch;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@@ -154,6 +154,7 @@ const char *wxUserResourceStr = "TEXT";
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if wxUSE_POSTSCRIPT
|
#if wxUSE_POSTSCRIPT
|
||||||
|
class wxPrintPaperDatabase;
|
||||||
wxPrintPaperDatabase* wxThePrintPaperDatabase = NULL;
|
wxPrintPaperDatabase* wxThePrintPaperDatabase = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
// Created: 04/01/98
|
// Created: 04/01/98
|
||||||
// RCS-ID: $Id$
|
// RCS-ID: $Id$
|
||||||
// Copyright: (c) Julian Smart and Markus Holzem
|
// Copyright: (c) Julian Smart and Markus Holzem
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#ifdef __GNUG__
|
#ifdef __GNUG__
|
||||||
@@ -72,19 +72,21 @@ NM_CUSTOMDRAW message and do your custom drawing.
|
|||||||
|
|
||||||
#if !USE_SHARED_LIBRARY
|
#if !USE_SHARED_LIBRARY
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxToolBar95, wxToolBarBase)
|
IMPLEMENT_DYNAMIC_CLASS(wxToolBar95, wxToolBarBase)
|
||||||
|
|
||||||
BEGIN_EVENT_TABLE(wxToolBar95, wxToolBarBase)
|
|
||||||
EVT_SIZE(wxToolBar95::OnSize)
|
|
||||||
EVT_PAINT(wxToolBar95::OnPaint)
|
|
||||||
EVT_KILL_FOCUS(wxToolBar95::OnKillFocus)
|
|
||||||
EVT_MOUSE_EVENTS(wxToolBar95::OnMouseEvent)
|
|
||||||
EVT_SYS_COLOUR_CHANGED(wxToolBar95::OnSysColourChanged)
|
|
||||||
END_EVENT_TABLE()
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void wxMapBitmap(HBITMAP hBitmap, int width, int height);
|
BEGIN_EVENT_TABLE(wxToolBar95, wxToolBarBase)
|
||||||
|
#if 0 // it seems like none of these functions does anything anyhow
|
||||||
|
EVT_SIZE(wxToolBar95::OnSize)
|
||||||
|
EVT_PAINT(wxToolBar95::OnPaint)
|
||||||
|
EVT_KILL_FOCUS(wxToolBar95::OnKillFocus)
|
||||||
|
EVT_MOUSE_EVENTS(wxToolBar95::OnMouseEvent)
|
||||||
|
#endif // 0
|
||||||
|
EVT_SYS_COLOUR_CHANGED(wxToolBar95::OnSysColourChanged)
|
||||||
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
wxToolBar95::wxToolBar95(void)
|
static void wxMapBitmap(HBITMAP hBitmap, int width, int height);
|
||||||
|
|
||||||
|
wxToolBar95::wxToolBar95()
|
||||||
{
|
{
|
||||||
m_maxWidth = -1;
|
m_maxWidth = -1;
|
||||||
m_maxHeight = -1;
|
m_maxHeight = -1;
|
||||||
@@ -93,40 +95,41 @@ wxToolBar95::wxToolBar95(void)
|
|||||||
m_defaultHeight = DEFAULTBITMAPY;
|
m_defaultHeight = DEFAULTBITMAPY;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxToolBar95::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
|
bool wxToolBar95::Create(wxWindow *parent,
|
||||||
long style, const wxString& name)
|
wxWindowID id,
|
||||||
|
const wxPoint& pos,
|
||||||
|
const wxSize& size,
|
||||||
|
long style,
|
||||||
|
const wxString& name)
|
||||||
{
|
{
|
||||||
m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
|
m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
|
||||||
GetGValue(GetSysColor(COLOR_BTNFACE)), GetBValue(GetSysColor(COLOR_BTNFACE)));
|
GetGValue(GetSysColor(COLOR_BTNFACE)),
|
||||||
|
GetBValue(GetSysColor(COLOR_BTNFACE)));
|
||||||
m_foregroundColour = *wxBLACK ;
|
m_foregroundColour = *wxBLACK ;
|
||||||
|
|
||||||
if (style & wxTB_VERTICAL)
|
wxASSERT_MSG( (style & wxTB_VERTICAL) == 0,
|
||||||
wxMessageBox("Sorry, wxToolBar95 under Windows 95 only supports horizontal orientation.", "wxToolBar95 usage", wxOK);
|
"Sorry, wxToolBar95 under Windows 95 only "
|
||||||
|
"supports horizontal orientation." );
|
||||||
|
|
||||||
m_maxWidth = -1;
|
m_maxWidth = -1;
|
||||||
m_maxHeight = -1;
|
m_maxHeight = -1;
|
||||||
|
|
||||||
m_hBitmap = 0;
|
m_hBitmap = 0;
|
||||||
|
|
||||||
m_defaultWidth = DEFAULTBITMAPX;
|
m_defaultWidth = DEFAULTBITMAPX;
|
||||||
m_defaultHeight = DEFAULTBITMAPY;
|
m_defaultHeight = DEFAULTBITMAPY;
|
||||||
SetName(name);
|
SetName(name);
|
||||||
|
|
||||||
|
m_windowStyle = style;
|
||||||
|
|
||||||
|
SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
|
||||||
|
SetParent(parent);
|
||||||
|
|
||||||
int x = pos.x;
|
int x = pos.x;
|
||||||
int y = pos.y;
|
int y = pos.y;
|
||||||
int width = size.x;
|
int width = size.x;
|
||||||
int height = size.y;
|
int height = size.y;
|
||||||
|
|
||||||
m_windowStyle = style;
|
|
||||||
|
|
||||||
SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
|
|
||||||
|
|
||||||
SetParent(parent);
|
|
||||||
|
|
||||||
DWORD msflags = 0;
|
|
||||||
if (style & wxBORDER)
|
|
||||||
msflags |= WS_BORDER;
|
|
||||||
msflags |= WS_CHILD | WS_VISIBLE;
|
|
||||||
|
|
||||||
if (width <= 0)
|
if (width <= 0)
|
||||||
width = 100;
|
width = 100;
|
||||||
if (height <= 0)
|
if (height <= 0)
|
||||||
@@ -137,37 +140,47 @@ bool wxToolBar95::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, co
|
|||||||
y = 0;
|
y = 0;
|
||||||
|
|
||||||
m_windowId = (id < 0 ? NewControlId() : id);
|
m_windowId = (id < 0 ? NewControlId() : id);
|
||||||
DWORD msStyle = WS_CHILD | WS_BORDER | WS_VISIBLE | TBSTYLE_TOOLTIPS;
|
DWORD msflags = 0;
|
||||||
|
if (style & wxBORDER)
|
||||||
|
msflags |= WS_BORDER;
|
||||||
|
msflags |= WS_CHILD | WS_VISIBLE | TBSTYLE_TOOLTIPS;
|
||||||
|
|
||||||
if (style & wxTB_FLAT)
|
if (style & wxTB_FLAT)
|
||||||
{
|
{
|
||||||
if (wxTheApp->GetComCtl32Version() > 400)
|
if (wxTheApp->GetComCtl32Version() > 400)
|
||||||
msStyle |= TBSTYLE_FLAT;
|
msflags |= TBSTYLE_FLAT;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the toolbar control.
|
// Create the toolbar control.
|
||||||
HWND hWndToolbar = CreateWindowEx(0L, // No extended styles.
|
HWND hWndToolbar = CreateWindowEx
|
||||||
TOOLBARCLASSNAME, // Class name for the toolbar.
|
(
|
||||||
"", // No default text.
|
0L, // No extended styles.
|
||||||
msStyle, // Styles and defaults.
|
TOOLBARCLASSNAME, // Class name for the toolbar.
|
||||||
x, y, width, height, // Standard toolbar size and position.
|
"", // No default text.
|
||||||
(HWND) parent->GetHWND(), // Parent window of the toolbar.
|
msflags, // Styles
|
||||||
(HMENU)m_windowId, // Toolbar ID.
|
x, y, width, height, // Standard toolbar size and position.
|
||||||
wxGetInstance(), // Current instance.
|
(HWND) parent->GetHWND(), // Parent window of the toolbar.
|
||||||
NULL ); // No class data.
|
(HMENU)m_windowId, // Toolbar ID.
|
||||||
|
wxGetInstance(), // Current instance.
|
||||||
|
NULL // No class data.
|
||||||
|
);
|
||||||
|
|
||||||
|
wxCHECK_MSG( hWndToolbar, FALSE, "Toolbar creation failed" );
|
||||||
|
|
||||||
// Toolbar-specific initialisation
|
// Toolbar-specific initialisation
|
||||||
::SendMessage(hWndToolbar, TB_BUTTONSTRUCTSIZE, (WPARAM)sizeof(TBBUTTON), (LPARAM)0);
|
::SendMessage(hWndToolbar, TB_BUTTONSTRUCTSIZE,
|
||||||
|
(WPARAM)sizeof(TBBUTTON), (LPARAM)0);
|
||||||
|
|
||||||
m_hWnd = (WXHWND) hWndToolbar;
|
m_hWnd = (WXHWND) hWndToolbar;
|
||||||
if (parent) parent->AddChild(this);
|
if (parent)
|
||||||
|
parent->AddChild(this);
|
||||||
SubclassWin((WXHWND) hWndToolbar);
|
|
||||||
|
SubclassWin((WXHWND)hWndToolbar);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxToolBar95::~wxToolBar95(void)
|
wxToolBar95::~wxToolBar95()
|
||||||
{
|
{
|
||||||
UnsubclassWin();
|
UnsubclassWin();
|
||||||
|
|
||||||
@@ -178,13 +191,13 @@ wxToolBar95::~wxToolBar95(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxToolBar95::CreateTools(void)
|
bool wxToolBar95::CreateTools()
|
||||||
{
|
{
|
||||||
if (m_tools.Number() == 0)
|
if (m_tools.Number() == 0)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
HBITMAP oldToolBarBitmap = (HBITMAP) m_hBitmap;
|
HBITMAP oldToolBarBitmap = (HBITMAP) m_hBitmap;
|
||||||
|
|
||||||
int totalBitmapWidth = (int)(m_defaultWidth * m_tools.Number());
|
int totalBitmapWidth = (int)(m_defaultWidth * m_tools.Number());
|
||||||
int totalBitmapHeight = (int)m_defaultHeight;
|
int totalBitmapHeight = (int)m_defaultHeight;
|
||||||
|
|
||||||
@@ -192,7 +205,7 @@ bool wxToolBar95::CreateTools(void)
|
|||||||
HDC dc = ::GetDC(NULL);
|
HDC dc = ::GetDC(NULL);
|
||||||
m_hBitmap = (WXHBITMAP) ::CreateCompatibleBitmap(dc, totalBitmapWidth, totalBitmapHeight);
|
m_hBitmap = (WXHBITMAP) ::CreateCompatibleBitmap(dc, totalBitmapWidth, totalBitmapHeight);
|
||||||
::ReleaseDC(NULL, dc);
|
::ReleaseDC(NULL, dc);
|
||||||
|
|
||||||
// Now blit all the tools onto this bitmap
|
// Now blit all the tools onto this bitmap
|
||||||
HDC memoryDC = ::CreateCompatibleDC(NULL);
|
HDC memoryDC = ::CreateCompatibleDC(NULL);
|
||||||
HBITMAP oldBitmap = (HBITMAP) ::SelectObject(memoryDC, (HBITMAP) m_hBitmap);
|
HBITMAP oldBitmap = (HBITMAP) ::SelectObject(memoryDC, (HBITMAP) m_hBitmap);
|
||||||
@@ -210,7 +223,7 @@ bool wxToolBar95::CreateTools(void)
|
|||||||
|
|
||||||
HBITMAP oldBitmap2 = (HBITMAP) ::SelectObject(memoryDC2, (HBITMAP) tool->m_bitmap1.GetHBITMAP());
|
HBITMAP oldBitmap2 = (HBITMAP) ::SelectObject(memoryDC2, (HBITMAP) tool->m_bitmap1.GetHBITMAP());
|
||||||
/* int bltResult = */
|
/* int bltResult = */
|
||||||
BitBlt(memoryDC, x, 0, (int) m_defaultWidth, (int) m_defaultHeight, memoryDC2,
|
BitBlt(memoryDC, x, 0, (int) m_defaultWidth, (int) m_defaultHeight, memoryDC2,
|
||||||
0, 0, SRCCOPY);
|
0, 0, SRCCOPY);
|
||||||
::SelectObject(memoryDC2, oldBitmap2);
|
::SelectObject(memoryDC2, oldBitmap2);
|
||||||
x += (int)m_defaultWidth;
|
x += (int)m_defaultWidth;
|
||||||
@@ -291,18 +304,18 @@ bool wxToolBar95::CreateTools(void)
|
|||||||
|
|
||||||
bitmapId ++;
|
bitmapId ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
i ++;
|
i ++;
|
||||||
node = node->Next();
|
node = node->Next();
|
||||||
}
|
}
|
||||||
|
|
||||||
int ans = (int)::SendMessage((HWND) GetHWND(), TB_ADDBUTTONS, (WPARAM)i, (LPARAM)& buttons);
|
long rc = ::SendMessage((HWND) GetHWND(), TB_ADDBUTTONS, (WPARAM)i, (LPARAM)& buttons);
|
||||||
ans = (int)::SendMessage((HWND) GetHWND(), TB_AUTOSIZE, (WPARAM)0, (LPARAM) 0);
|
|
||||||
|
|
||||||
RECT rect;
|
wxCHECK_MSG( rc, FALSE, "failed to add buttons to the toolbar" );
|
||||||
::SendMessage((HWND) GetHWND(), TB_SETROWS, MAKEWPARAM(m_maxRows, TRUE), (LPARAM) & rect);
|
|
||||||
m_maxWidth = (rect.right - rect.left + 2);
|
(void)::SendMessage((HWND) GetHWND(), TB_AUTOSIZE, (WPARAM)0, (LPARAM) 0);
|
||||||
m_maxHeight = (rect.bottom - rect.top + 2);
|
|
||||||
|
SetRows(m_maxRows);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
@@ -329,45 +342,60 @@ bool wxToolBar95::MSWNotify(WXWPARAM WXUNUSED(wParam),
|
|||||||
WXLPARAM lParam,
|
WXLPARAM lParam,
|
||||||
WXLPARAM *result)
|
WXLPARAM *result)
|
||||||
{
|
{
|
||||||
// First check if this applies to us
|
// First check if this applies to us
|
||||||
NMHDR *hdr = (NMHDR *)lParam;
|
NMHDR *hdr = (NMHDR *)lParam;
|
||||||
if (hdr->code != TTN_NEEDTEXT)
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
HWND toolTipWnd = (HWND) ::SendMessage((HWND) GetHWND(), TB_GETTOOLTIPS, 0, 0);
|
// the tooltips control created by the toolbar is sometimes Unicode, even in
|
||||||
if ( toolTipWnd != hdr->hwndFrom )
|
// an ANSI application
|
||||||
return FALSE;
|
if ( (hdr->code != TTN_NEEDTEXTA) && (hdr->code != TTN_NEEDTEXTW) )
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT) lParam;
|
HWND toolTipWnd = (HWND)::SendMessage((HWND)GetHWND(), TB_GETTOOLTIPS, 0, 0);
|
||||||
int id = (int)ttText->hdr.idFrom;
|
if ( toolTipWnd != hdr->hwndFrom )
|
||||||
wxNode *node = m_tools.Find((long)id);
|
return FALSE;
|
||||||
if (!node)
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
wxToolBarTool *tool = (wxToolBarTool *)node->Data();
|
|
||||||
|
|
||||||
switch (ttText->hdr.code)
|
LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
|
||||||
{
|
int id = (int)ttText->hdr.idFrom;
|
||||||
case TTN_NEEDTEXT:
|
wxNode *node = m_tools.Find((long)id);
|
||||||
|
if (!node)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
wxToolBarTool *tool = (wxToolBarTool *)node->Data();
|
||||||
|
|
||||||
|
if ( tool->m_shortHelpString != "" )
|
||||||
{
|
{
|
||||||
if (tool->m_shortHelpString != "")
|
if ( hdr->code == TTN_NEEDTEXTA )
|
||||||
ttText->lpszText = (char *) (const char *)tool->m_shortHelpString;
|
{
|
||||||
|
ttText->lpszText = (char *)(const char *)tool->m_shortHelpString;
|
||||||
|
}
|
||||||
|
#if (_WIN32_IE >= 0x0300)
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// FIXME this is a temp hack only until I understand better what
|
||||||
|
// must be done in both ANSI and Unicode builds
|
||||||
|
size_t lenAnsi = tool->m_shortHelpString.Len();
|
||||||
|
size_t lenUnicode = mbstowcs(NULL, tool->m_shortHelpString, lenAnsi);
|
||||||
|
wchar_t *pwz = new wchar_t[lenUnicode + 1];
|
||||||
|
mbstowcs(pwz, tool->m_shortHelpString, lenAnsi + 1);
|
||||||
|
memcpy(ttText->szText, pwz,
|
||||||
|
(sizeof(ttText->szText) - 1)/sizeof(ttText->szText[0]));
|
||||||
|
ttText->szText[WXSIZEOF(ttText->szText)] = 0;
|
||||||
|
|
||||||
// For backward compatibility...
|
delete [] pwz;
|
||||||
OnMouseEnter(tool->m_index);
|
}
|
||||||
break;
|
#endif // _WIN32_IE >= 0x0300
|
||||||
}
|
}
|
||||||
default:
|
|
||||||
return FALSE;
|
// For backward compatibility...
|
||||||
break;
|
OnMouseEnter(tool->m_index);
|
||||||
}
|
|
||||||
|
return TRUE;
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxToolBar95::SetToolBitmapSize(const wxSize& size)
|
void wxToolBar95::SetToolBitmapSize(const wxSize& size)
|
||||||
{
|
{
|
||||||
m_defaultWidth = size.x; m_defaultHeight = size.y;
|
m_defaultWidth = size.x;
|
||||||
|
m_defaultHeight = size.y;
|
||||||
::SendMessage((HWND) GetHWND(), TB_SETBITMAPSIZE, 0, (LPARAM) MAKELONG ((int)size.x, (int)size.y));
|
::SendMessage((HWND) GetHWND(), TB_SETBITMAPSIZE, 0, (LPARAM) MAKELONG ((int)size.x, (int)size.y));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -379,7 +407,7 @@ void wxToolBar95::SetRows(int nRows)
|
|||||||
m_maxHeight = (rect.bottom - rect.top + 2);
|
m_maxHeight = (rect.bottom - rect.top + 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
wxSize wxToolBar95::GetMaxSize(void) const
|
wxSize wxToolBar95::GetMaxSize() const
|
||||||
{
|
{
|
||||||
if ((m_maxWidth == -1) || (m_maxHeight == -1))
|
if ((m_maxWidth == -1) || (m_maxHeight == -1))
|
||||||
{
|
{
|
||||||
@@ -400,7 +428,7 @@ void wxToolBar95::GetSize(int *w, int *h) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The button size is bigger than the bitmap size
|
// The button size is bigger than the bitmap size
|
||||||
wxSize wxToolBar95::GetToolSize(void) const
|
wxSize wxToolBar95::GetToolSize() const
|
||||||
{
|
{
|
||||||
return wxSize(m_defaultWidth + 8, m_defaultHeight + 7);
|
return wxSize(m_defaultWidth + 8, m_defaultHeight + 7);
|
||||||
}
|
}
|
||||||
@@ -435,7 +463,7 @@ bool wxToolBar95::GetToolState(int toolIndex) const
|
|||||||
return (::SendMessage((HWND) GetHWND(), TB_ISBUTTONCHECKED, (WPARAM)toolIndex, (LPARAM)0) != 0);
|
return (::SendMessage((HWND) GetHWND(), TB_ISBUTTONCHECKED, (WPARAM)toolIndex, (LPARAM)0) != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxToolBar95::ClearTools(void)
|
void wxToolBar95::ClearTools()
|
||||||
{
|
{
|
||||||
// TODO: Don't know how to reset the toolbar bitmap, as yet.
|
// TODO: Don't know how to reset the toolbar bitmap, as yet.
|
||||||
// But adding tools and calling CreateTools should probably
|
// But adding tools and calling CreateTools should probably
|
||||||
@@ -472,7 +500,7 @@ wxToolBarTool *wxToolBar95::AddTool(int index, const wxBitmap& bitmap, const wxB
|
|||||||
void wxToolBar95::OnSysColourChanged(wxSysColourChangedEvent& event)
|
void wxToolBar95::OnSysColourChanged(wxSysColourChangedEvent& event)
|
||||||
{
|
{
|
||||||
m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
|
m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
|
||||||
GetGValue(GetSysColor(COLOR_BTNFACE)), GetBValue(GetSysColor(COLOR_BTNFACE)));
|
GetGValue(GetSysColor(COLOR_BTNFACE)), GetBValue(GetSysColor(COLOR_BTNFACE)));
|
||||||
|
|
||||||
// Remap the buttons
|
// Remap the buttons
|
||||||
CreateTools();
|
CreateTools();
|
||||||
|
Reference in New Issue
Block a user