/////////////////////////////////////////////////////////////////////////////
// Name: dialogs.h
// Purpose: Common dialogs demo
-// Author: Julian Smart
-// Modified by: ABX (2004) - adjustementd for conditional building
+// Author: Julian Smart, Vadim Zeitlin, ABX
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
+// (c) 2004 ABX
+// (c) Vadim Zeitlin
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
public:
virtual bool OnInit();
- wxFont m_canvasFont;
- wxColour m_canvasTextColour;
-
protected:
#if wxUSE_LOG
virtual wxAppTraits *CreateTraits() { return new MyAppTraits; }
*m_chkCentre;
DECLARE_EVENT_TABLE()
- DECLARE_NO_COPY_CLASS(TestMessageBoxDialog)
+ wxDECLARE_NO_COPY_CLASS(TestMessageBoxDialog);
};
class TestDefaultActionDialog: public wxDialog
class MyFrame: public wxFrame
{
public:
- MyFrame(wxWindow *parent, const wxString& title);
+ MyFrame(const wxString& title);
virtual ~MyFrame();
#if wxUSE_MSGDLG
wxColourData m_clrData;
+ // just a window which we use to show the effect of font/colours selection
+ wxWindow *m_canvas;
+
DECLARE_EVENT_TABLE()
};
class MyCanvas: public wxScrolledWindow
{
public:
- MyCanvas(wxWindow *parent) :
- wxScrolledWindow(parent,wxID_ANY,wxDefaultPosition,wxDefaultSize,wxNO_FULL_REPAINT_ON_RESIZE) { }
+ MyCanvas(wxWindow *parent) : wxScrolledWindow(parent, wxID_ANY)
+ {
+ SetForegroundColour(*wxBLACK);
+ SetBackgroundColour(*wxWHITE);
+ SetFont(*wxNORMAL_FONT);
+ }
+private:
void OnPaint(wxPaintEvent& event);
DECLARE_EVENT_TABLE()