Patch #952053, wxToggleButton gains WS_VISIBLE flag
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27276 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -50,6 +50,8 @@ public:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual wxSize DoGetBestSize() const;
|
virtual wxSize DoGetBestSize() const;
|
||||||
|
virtual wxBorder GetDefaultBorder() const;
|
||||||
|
virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton)
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton)
|
||||||
|
@@ -3,6 +3,7 @@
|
|||||||
// Purpose: Definition of the wxToggleButton class, which implements a
|
// Purpose: Definition of the wxToggleButton class, which implements a
|
||||||
// toggle button under wxMSW.
|
// toggle button under wxMSW.
|
||||||
// Author: John Norris, minor changes by Axel Schlueter
|
// Author: John Norris, minor changes by Axel Schlueter
|
||||||
|
// and William Gallafent.
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 08.02.01
|
// Created: 08.02.01
|
||||||
// RCS-ID: $Id$
|
// RCS-ID: $Id$
|
||||||
@@ -73,62 +74,40 @@ bool wxToggleButton::Create(wxWindow *parent, wxWindowID id,
|
|||||||
const wxValidator& validator,
|
const wxValidator& validator,
|
||||||
const wxString& name)
|
const wxString& name)
|
||||||
{
|
{
|
||||||
// default border for this control is none
|
if ( !CreateControl(parent, id, pos, size, style, validator, name) )
|
||||||
if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
|
|
||||||
{
|
|
||||||
style |= wxBORDER_NONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!CreateBase(parent, id, pos, size, style, validator, name))
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
parent->AddChild(this);
|
if ( !MSWCreateControl(wxT("BUTTON"), label, pos, size) )
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
m_backgroundColour = parent->GetBackgroundColour();
|
return TRUE;
|
||||||
m_foregroundColour = parent->GetForegroundColour();
|
}
|
||||||
|
|
||||||
|
wxBorder wxToggleButton::GetDefaultBorder() const
|
||||||
|
{
|
||||||
|
return wxBORDER_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
WXDWORD wxToggleButton::MSWGetStyle(long style, WXDWORD *exstyle) const
|
||||||
|
{
|
||||||
|
WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle);
|
||||||
|
|
||||||
#ifndef BS_PUSHLIKE
|
#ifndef BS_PUSHLIKE
|
||||||
#define BS_PUSHLIKE 0x00001000L
|
#define BS_PUSHLIKE 0x00001000L
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
WXDWORD exStyle = 0;
|
|
||||||
long msStyle = MSWGetStyle(style, & exStyle) ;
|
|
||||||
|
|
||||||
msStyle |= BS_AUTOCHECKBOX | BS_PUSHLIKE | WS_TABSTOP;
|
msStyle |= BS_AUTOCHECKBOX | BS_PUSHLIKE | WS_TABSTOP;
|
||||||
|
|
||||||
#ifdef __WIN32__
|
if(style & wxBU_LEFT)
|
||||||
if(m_windowStyle & wxBU_LEFT)
|
|
||||||
msStyle |= BS_LEFT;
|
msStyle |= BS_LEFT;
|
||||||
if(m_windowStyle & wxBU_RIGHT)
|
if(style & wxBU_RIGHT)
|
||||||
msStyle |= BS_RIGHT;
|
msStyle |= BS_RIGHT;
|
||||||
if(m_windowStyle & wxBU_TOP)
|
if(style & wxBU_TOP)
|
||||||
msStyle |= BS_TOP;
|
msStyle |= BS_TOP;
|
||||||
if(m_windowStyle & wxBU_BOTTOM)
|
if(style & wxBU_BOTTOM)
|
||||||
msStyle |= BS_BOTTOM;
|
msStyle |= BS_BOTTOM;
|
||||||
#endif
|
|
||||||
|
|
||||||
m_hWnd = (WXHWND)CreateWindowEx(exStyle,
|
return msStyle;
|
||||||
wxT("BUTTON"), label,
|
|
||||||
msStyle, 0, 0, 0, 0,
|
|
||||||
(HWND)parent->GetHWND(),
|
|
||||||
(HMENU)m_windowId,
|
|
||||||
wxGetInstance(), NULL);
|
|
||||||
|
|
||||||
if ( m_hWnd == 0 )
|
|
||||||
{
|
|
||||||
wxLogError(_T("Failed to create a toggle button"));
|
|
||||||
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Subclass again for purposes of dialog editing mode
|
|
||||||
SubclassWin(m_hWnd);
|
|
||||||
|
|
||||||
SetFont(parent->GetFont());
|
|
||||||
|
|
||||||
SetSize(pos.x, pos.y, size.x, size.y);
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxToggleButton::SetLabel(const wxString& label)
|
void wxToggleButton::SetLabel(const wxString& label)
|
||||||
|
Reference in New Issue
Block a user