git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27995
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
MyPanel *GetPanel() const { return m_panel; }
private:
MyPanel *GetPanel() const { return m_panel; }
private:
void UpdateStatusBar(const wxPoint& pos, const wxSize& size)
{
if ( m_frameStatusBar )
void UpdateStatusBar(const wxPoint& pos, const wxSize& size)
{
if ( m_frameStatusBar )
SetStatusText(msg, 1);
}
}
SetStatusText(msg, 1);
}
}
+#endif // wxUSE_STATUSBAR
+#endif // wxUSE_STATUSBAR
m_panel = new MyPanel( this, 10, 10, 300, 100 );
m_panel = new MyPanel( this, 10, 10, 300, 100 );
void MyFrame::OnMove( wxMoveEvent& event )
{
void MyFrame::OnMove( wxMoveEvent& event )
{
UpdateStatusBar(event.GetPosition(), GetSize());
UpdateStatusBar(event.GetPosition(), GetSize());
+#endif // wxUSE_STATUSBAR
event.Skip();
}
void MyFrame::OnSize( wxSizeEvent& event )
{
event.Skip();
}
void MyFrame::OnSize( wxSizeEvent& event )
{
UpdateStatusBar(GetPosition(), event.GetSize());
UpdateStatusBar(GetPosition(), event.GetSize());
+#endif // wxUSE_STATUSBAR
+#endif // wxUSE_STATUSBAR
void OnShow(wxCommandEvent &event);
void OnOption(wxCommandEvent &event);
void OnShow(wxCommandEvent &event);
void OnOption(wxCommandEvent &event);
+#endif // wxUSE_COLOURDLG
void PrepareDC(wxDC& dc);
int m_backgroundMode;
void PrepareDC(wxDC& dc);
int m_backgroundMode;
LogicalOrigin_Set,
LogicalOrigin_Restore,
LogicalOrigin_Set,
LogicalOrigin_Restore,
Colour_TextForeground,
Colour_TextBackground,
Colour_Background,
Colour_TextForeground,
Colour_TextBackground,
Colour_Background,
+#endif // wxUSE_COLOURDLG
Colour_BackgroundMode,
Colour_TextureBackgound,
Colour_BackgroundMode,
Colour_TextureBackgound,
void MyCanvas::OnMouseMove(wxMouseEvent &event)
{
void MyCanvas::OnMouseMove(wxMouseEvent &event)
{
wxClientDC dc(this);
PrepareDC(dc);
m_owner->PrepareDC(dc);
wxClientDC dc(this);
PrepareDC(dc);
m_owner->PrepareDC(dc);
wxString str;
str.Printf( wxT("Current mouse position: %d,%d"), (int)x, (int)y );
m_owner->SetStatusText( str );
wxString str;
str.Printf( wxT("Current mouse position: %d,%d"), (int)x, (int)y );
m_owner->SetStatusText( str );
+#else
+ wxUnusedVar(event);
+#endif // wxUSE_STATUSBAR
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
menuLogical->Append( LogicalOrigin_Restore, _T("&Restore to normal\tShift-Ctrl-0") );
wxMenu *menuColour = new wxMenu;
menuLogical->Append( LogicalOrigin_Restore, _T("&Restore to normal\tShift-Ctrl-0") );
wxMenu *menuColour = new wxMenu;
menuColour->Append( Colour_TextForeground, _T("Text &foreground...") );
menuColour->Append( Colour_TextBackground, _T("Text &background...") );
menuColour->Append( Colour_Background, _T("Background &colour...") );
menuColour->Append( Colour_TextForeground, _T("Text &foreground...") );
menuColour->Append( Colour_TextBackground, _T("Text &background...") );
menuColour->Append( Colour_Background, _T("Background &colour...") );
+#endif // wxUSE_COLOURDLG
menuColour->AppendCheckItem( Colour_BackgroundMode, _T("&Opaque/transparent\tCtrl-B") );
menuColour->AppendCheckItem( Colour_TextureBackgound, _T("Draw textured back&ground\tCtrl-T") );
menuColour->AppendCheckItem( Colour_BackgroundMode, _T("&Opaque/transparent\tCtrl-B") );
menuColour->AppendCheckItem( Colour_TextureBackgound, _T("Draw textured back&ground\tCtrl-T") );
// ... and attach this menu bar to the frame
SetMenuBar(menuBar);
// ... and attach this menu bar to the frame
SetMenuBar(menuBar);
CreateStatusBar(2);
SetStatusText(_T("Welcome to wxWidgets!"));
CreateStatusBar(2);
SetStatusText(_T("Welcome to wxWidgets!"));
+#endif // wxUSE_STATUSBAR
m_mapMode = wxMM_TEXT;
m_xUserScale = 1.0;
m_mapMode = wxMM_TEXT;
m_xUserScale = 1.0;
m_xAxisReversed = !m_xAxisReversed;
break;
m_xAxisReversed = !m_xAxisReversed;
break;
case Colour_TextForeground:
m_colourForeground = SelectColour();
break;
case Colour_TextForeground:
m_colourForeground = SelectColour();
break;
+#endif // wxUSE_COLOURDLG
+
case Colour_BackgroundMode:
m_backgroundMode = m_backgroundMode == wxSOLID ? wxTRANSPARENT
: wxSOLID;
case Colour_BackgroundMode:
m_backgroundMode = m_backgroundMode == wxSOLID ? wxTRANSPARENT
: wxSOLID;
dc.SetMapMode( m_mapMode );
}
dc.SetMapMode( m_mapMode );
}
wxColour MyFrame::SelectColour()
{
wxColour col;
wxColour MyFrame::SelectColour()
{
wxColour col;
+#endif // wxUSE_COLOURDLG
SetMenuBar(menuBar);
// also create status bar which we use in OnWizardCancel
SetMenuBar(menuBar);
// also create status bar which we use in OnWizardCancel
+#endif // wxUSE_STATUSBAR
}
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
}
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))