added a few more composite functions
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
24181682fa
commit
052da7d572
@ -88,6 +88,15 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
// enable/disable everything
|
||||
void Enable(bool enable)
|
||||
{
|
||||
for ( size_t n = 0; n < m_count; n++ )
|
||||
{
|
||||
::EnableWindow(m_hwnds[n], enable);
|
||||
}
|
||||
}
|
||||
|
||||
// set font for all windows
|
||||
void SetFont(const wxFont& font)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user