2001-06-26 17:05:06 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2004-05-25 07:20:37 -04:00
|
|
|
// Program: wxWidgets Widgets Sample
|
2001-06-26 17:05:06 -04:00
|
|
|
// Name: widgets.h
|
|
|
|
// Purpose: Common stuff for all widgets project files
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 27.03.01
|
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 2001 Vadim Zeitlin
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SAMPLE_WIDGETS_H_
|
|
|
|
#define _WX_SAMPLE_WIDGETS_H_
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxCheckBox;
|
2005-08-28 04:54:56 -04:00
|
|
|
class WXDLLEXPORT wxBookCtrlBase;
|
2001-06-26 17:05:06 -04:00
|
|
|
class WXDLLEXPORT wxSizer;
|
|
|
|
class WXDLLEXPORT wxTextCtrl;
|
|
|
|
|
2002-12-04 09:11:26 -05:00
|
|
|
class WidgetsPageInfo;
|
2001-06-26 17:05:06 -04:00
|
|
|
|
2001-11-25 10:54:25 -05:00
|
|
|
#include "wx/panel.h"
|
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
// all source files use wxImageList
|
|
|
|
#include "wx/imaglist.h"
|
|
|
|
|
2005-01-07 13:30:36 -05:00
|
|
|
#if wxUSE_LOG && !defined(__SMARTPHONE__)
|
|
|
|
#define USE_LOG 1
|
|
|
|
#else
|
|
|
|
#define USE_LOG 0
|
|
|
|
#endif
|
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
2004-11-23 06:45:07 -05:00
|
|
|
// WidgetsPage: a book page demonstrating some widget
|
2001-06-26 17:05:06 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WidgetsPage : public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
2005-08-28 04:54:56 -04:00
|
|
|
WidgetsPage(wxBookCtrlBase *book);
|
2001-06-26 17:05:06 -04:00
|
|
|
|
2004-11-19 14:03:04 -05:00
|
|
|
// return the control shown by this page
|
|
|
|
virtual wxControl *GetWidget() const = 0;
|
|
|
|
|
2005-02-27 20:15:46 -05:00
|
|
|
// some pages show 2 controls, in this case override this one as well
|
|
|
|
virtual wxControl *GetWidget2() const { return NULL; }
|
|
|
|
|
2006-04-16 19:39:11 -04:00
|
|
|
// recreate the control shown by this page
|
|
|
|
//
|
|
|
|
// this is currently used only to take into account the border flags
|
|
|
|
virtual void RecreateWidget() = 0;
|
|
|
|
|
|
|
|
// the default flags for the widget, currently only contains border flags
|
|
|
|
static int ms_defaultFlags;
|
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
protected:
|
|
|
|
// several helper functions for page creation
|
|
|
|
|
|
|
|
// create a horz sizer containing the given control and the text ctrl
|
|
|
|
// (pointer to which will be saved in the provided variable if not NULL)
|
|
|
|
// with the specified id
|
|
|
|
wxSizer *CreateSizerWithText(wxControl *control,
|
2003-12-11 05:32:15 -05:00
|
|
|
wxWindowID id = wxID_ANY,
|
2001-06-26 17:05:06 -04:00
|
|
|
wxTextCtrl **ppText = NULL);
|
|
|
|
|
|
|
|
// create a sizer containing a label and a text ctrl
|
|
|
|
wxSizer *CreateSizerWithTextAndLabel(const wxString& label,
|
2003-12-11 05:32:15 -05:00
|
|
|
wxWindowID id = wxID_ANY,
|
2001-06-26 17:05:06 -04:00
|
|
|
wxTextCtrl **ppText = NULL);
|
|
|
|
|
|
|
|
// create a sizer containing a button and a text ctrl
|
|
|
|
wxSizer *CreateSizerWithTextAndButton(wxWindowID idBtn,
|
|
|
|
const wxString& labelBtn,
|
2003-12-11 05:32:15 -05:00
|
|
|
wxWindowID id = wxID_ANY,
|
2001-06-26 17:05:06 -04:00
|
|
|
wxTextCtrl **ppText = NULL);
|
|
|
|
|
|
|
|
// create a checkbox and add it to the sizer
|
|
|
|
wxCheckBox *CreateCheckBoxAndAddToSizer(wxSizer *sizer,
|
|
|
|
const wxString& label,
|
2003-12-11 05:32:15 -05:00
|
|
|
wxWindowID id = wxID_ANY);
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// the head of the linked list containinginfo about all pages
|
|
|
|
static WidgetsPageInfo *ms_widgetPages;
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// dynamic WidgetsPage creation helpers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-12-04 09:11:26 -05:00
|
|
|
class WidgetsPageInfo
|
2001-06-26 17:05:06 -04:00
|
|
|
{
|
|
|
|
public:
|
2005-08-28 04:54:56 -04:00
|
|
|
typedef WidgetsPage *(*Constructor)(wxBookCtrlBase *book,
|
2001-06-26 17:05:06 -04:00
|
|
|
wxImageList *imaglist);
|
|
|
|
|
|
|
|
// our ctor
|
|
|
|
WidgetsPageInfo(Constructor ctor, const wxChar *label);
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
const wxString& GetLabel() const { return m_label; }
|
|
|
|
Constructor GetCtor() const { return m_ctor; }
|
|
|
|
WidgetsPageInfo *GetNext() const { return m_next; }
|
|
|
|
|
2004-01-19 08:27:24 -05:00
|
|
|
void SetNext(WidgetsPageInfo *next) { m_next = next; }
|
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
private:
|
|
|
|
// the label of the page
|
|
|
|
wxString m_label;
|
|
|
|
|
|
|
|
// the function to create this page
|
|
|
|
Constructor m_ctor;
|
|
|
|
|
|
|
|
// next node in the linked list or NULL
|
|
|
|
WidgetsPageInfo *m_next;
|
|
|
|
};
|
|
|
|
|
|
|
|
// to declare a page, this macro must be used in the class declaration
|
|
|
|
#define DECLARE_WIDGETS_PAGE(classname) \
|
|
|
|
private: \
|
|
|
|
static WidgetsPageInfo ms_info##classname; \
|
|
|
|
public: \
|
|
|
|
const WidgetsPageInfo *GetPageInfo() const \
|
|
|
|
{ return &ms_info##classname; }
|
|
|
|
|
|
|
|
// and this one must be inserted somewhere in the source file
|
|
|
|
#define IMPLEMENT_WIDGETS_PAGE(classname, label) \
|
2005-08-28 04:54:56 -04:00
|
|
|
WidgetsPage *wxCtorFor##classname(wxBookCtrlBase *book, \
|
2001-06-26 17:05:06 -04:00
|
|
|
wxImageList *imaglist) \
|
2004-11-23 06:45:07 -05:00
|
|
|
{ return new classname(book, imaglist); } \
|
2001-06-26 17:05:06 -04:00
|
|
|
WidgetsPageInfo classname:: \
|
|
|
|
ms_info##classname(wxCtorFor##classname, label)
|
|
|
|
|
|
|
|
#endif // _WX_SAMPLE_WIDGETS_H_
|