wxMSW:
- small appearance fixes for native look under Windows XP
+- refresh the buttons properly when the window is resized (Hans Van Leemputten)
- huge (40*) speed up in wxMask::Create()
- changing wxWindows styles also changes the underlying Windows window style
- fixed flicker in wxTreeCtrl::SetItemXXX()
// send a notification event, return TRUE if processed
bool SendClickEvent();
+ // usually overridden base class virtuals
virtual wxSize DoGetBestSize() const;
+ virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
private:
DECLARE_DYNAMIC_CLASS(wxButton)
virtual wxSize DoGetBestSize() const;
+ // create the control of the given Window class
+ bool MSWCreateControl(const wxChar *classname,
+ const wxString& label,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style);
+
+ // NB: the method below is deprecated now, with MSWGetStyle() the method
+ // above should be used instead! Once all the controls are updated to
+ // implement MSWGetStyle() this version will disappear.
+ //
// create the control of the given class with the given style (combination
// of WS_XXX flags, i.e. Windows style, not wxWindows one), returns
// FALSE if creation failed
const wxString& label = wxEmptyString,
WXDWORD exstyle = (WXDWORD)-1);
- // determine the extended styles combination for this window (may slightly
- // modify style parameter, this is why it's non const)
- WXDWORD GetExStyle(WXDWORD& style, bool *want3D) const;
+ // default style for the control include WS_TABSTOP if it AcceptsFocus()
+ virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
private:
DECLARE_EVENT_TABLE()
const wxValidator& validator,
const wxString& name)
{
- if ( !CreateBase(parent, id, pos, size, style, validator, name) )
+ if ( !CreateControl(parent, id, pos, size, style, validator, name) )
return FALSE;
- parent->AddChild((wxButton *)this);
+ return MSWCreateControl(_T("BUTTON"), label, pos, size, style);
+}
- m_backgroundColour = parent->GetBackgroundColour();
- m_foregroundColour = parent->GetForegroundColour();
+wxButton::~wxButton()
+{
+}
- long msStyle = WS_VISIBLE | WS_TABSTOP | WS_CHILD /* | WS_CLIPSIBLINGS */ ;
+// ----------------------------------------------------------------------------
+// flags
+// ----------------------------------------------------------------------------
- if ( m_windowStyle & wxCLIP_SIBLINGS )
- msStyle |= WS_CLIPSIBLINGS;
+WXDWORD wxButton::MSWGetStyle(long style, WXDWORD *exstyle) const
+{
+ // buttons never have an external border, they draw their own one
+ WXDWORD msStyle = wxControl::MSWGetStyle
+ (
+ (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle
+ );
+
+ // we must use WS_CLIPSIBLINGS with the buttons or they would draw over
+ // each other in any resizeable dialog which has more than one button in
+ // the bottom
+ msStyle |= WS_CLIPSIBLINGS;
#ifdef __WIN32__
- if(m_windowStyle & wxBU_LEFT)
+ // don't use "else if" here: weird as it is, but you may combine wxBU_LEFT
+ // and wxBU_RIGHT to get BS_CENTER!
+ if ( style & wxBU_LEFT )
msStyle |= BS_LEFT;
- if(m_windowStyle & wxBU_RIGHT)
+ if ( style & wxBU_RIGHT )
msStyle |= BS_RIGHT;
- if(m_windowStyle & wxBU_TOP)
+ if ( style & wxBU_TOP )
msStyle |= BS_TOP;
- if(m_windowStyle & wxBU_BOTTOM)
+ if ( style & wxBU_BOTTOM )
msStyle |= BS_BOTTOM;
-#endif
-
- m_hWnd = (WXHWND)CreateWindowEx
- (
- MakeExtendedStyle(m_windowStyle),
- wxT("BUTTON"),
- label,
- msStyle,
- 0, 0, 0, 0,
- GetWinHwnd(parent),
- (HMENU)m_windowId,
- wxGetInstance(),
- NULL
- );
-
- if (m_hWnd == 0)
- {
- wxString msg;
-#ifdef __WIN16__
- msg.Printf(wxT("CreateWindowEx failed"));
-#else
- msg.Printf(wxT("CreateWindowEx failed with error number %ld"), (long) GetLastError());
-#endif
- wxFAIL_MSG(msg);
- }
-
- // 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;
-}
+#endif // __WIN32__
-wxButton::~wxButton()
-{
+ return msStyle;
}
// ----------------------------------------------------------------------------
// and conitnue with processing the message normally as well
}
+#if 0
+ else if ( nMsg == WM_MOVE )
+ {
+ Refresh();
+ }
+#endif
// let the base class do all real processing
return wxControl::MSWWindowProc(nMsg, wParam, lParam);
}
-bool wxControl::Create(wxWindow *parent, wxWindowID id,
+bool wxControl::Create(wxWindow *parent,
+ wxWindowID id,
const wxPoint& pos,
- const wxSize& size, long style,
+ const wxSize& size,
+ long style,
const wxValidator& validator,
const wxString& name)
{
- bool rval = wxWindow::Create(parent, id, pos, size, style, name);
- if (rval) {
+ if ( !wxWindow::Create(parent, id, pos, size, style, name) )
+ return FALSE;
+
#if wxUSE_VALIDATORS
- SetValidator(validator);
+ SetValidator(validator);
#endif
- }
- return rval;
+
+ return TRUE;
+}
+
+bool wxControl::MSWCreateControl(const wxChar *classname,
+ const wxString& label,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style)
+{
+ WXDWORD exstyle;
+ WXDWORD msStyle = MSWGetStyle(style, &exstyle);
+
+ return MSWCreateControl(classname, msStyle, pos, size, label, exstyle);
}
bool wxControl::MSWCreateControl(const wxChar *classname,
// if no extended style given, determine it ourselves
if ( exstyle == (WXDWORD)-1 )
{
- exstyle = GetExStyle(style, &want3D);
+ exstyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D);
}
- // all controls have these styles (wxWindows creates all controls visible
- // by default)
+ // all controls should have these styles (wxWindows creates all controls
+ // visible by default)
style |= WS_CHILD | WS_VISIBLE;
int x = pos.x == -1 ? 0 : pos.x,
return (WXHBRUSH)brush->GetResourceHandle();
}
-WXDWORD wxControl::GetExStyle(WXDWORD& style, bool *want3D) const
+WXDWORD wxControl::MSWGetStyle(long style, WXDWORD *exstyle) const
{
- WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, want3D);
+ long msStyle = wxWindow::MSWGetStyle(style, exstyle);
- // Even with extended styles, need to combine with WS_BORDER for them to
- // look right.
- if ( *want3D || wxStyleHasBorder(m_windowStyle) )
- style |= WS_BORDER;
+ if ( AcceptsFocus() )
+ {
+ msStyle |= WS_TABSTOP;
+ }
- return exStyle;
+ return msStyle;
}
// ---------------------------------------------------------------------------
long msStyle = wxControl::MSWGetStyle(style, exstyle);
// default styles
- msStyle |= ES_LEFT | WS_TABSTOP;
+ msStyle |= ES_LEFT;
if ( style & wxTE_MULTILINE )
{
// update the internal variable
wxWindowBase::SetWindowStyleFlag(flags);
- // now update the Windows style as well if needed
+ // now update the Windows style as well if needed - and if the window had
+ // been already created
+ if ( !GetHwnd() )
+ return;
+
WXDWORD exstyle, exstyleOld;
long style = MSWGetStyle(flags, &exstyle),
styleOld = MSWGetStyle(flagsOld, &exstyleOld);