]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/widgets/widgets.h
Use wxDELETE() and wxDELETEA() when possible.
[wxWidgets.git] / samples / widgets / widgets.h
index 679b8b369a9f8144ba2f6b467b28f7153d8630ca..d82b03d1bb45b2dc66d03beae7484fc187224d63 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Program:     wxWindows Widgets Sample
+// Program:     wxWidgets Widgets Sample
 // Name:        widgets.h
 // Purpose:     Common stuff for all widgets project files
 // Author:      Vadim Zeitlin
 #ifndef _WX_SAMPLE_WIDGETS_H_
 #define _WX_SAMPLE_WIDGETS_H_
 
-class WXDLLEXPORT wxCheckBox;
-class WXDLLEXPORT wxNotebook;
-class WXDLLEXPORT wxSizer;
-class WXDLLEXPORT wxTextCtrl;
+#if wxUSE_TREEBOOK && !defined(__WXHANDHELD__)
+    #include "wx/treebook.h"
+    #define USE_TREEBOOK 1
+    #define WidgetsBookCtrl wxTreebook
+    #define WidgetsBookCtrlEvent wxTreebookEvent
+    #define EVT_WIDGETS_PAGE_CHANGING(id,func) EVT_TREEBOOK_PAGE_CHANGING(id,func)
+    #define wxEVT_COMMAND_WIDGETS_PAGE_CHANGED wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
+    #define wxWidgetsbookEventHandler(func) wxTreebookEventHandler(func)
+#else
+    #include "wx/bookctrl.h"
+    #define USE_TREEBOOK 0
+    #define WidgetsBookCtrl wxBookCtrl
+    #define WidgetsBookCtrlEvent wxBookCtrlEvent
+    #define EVT_WIDGETS_PAGE_CHANGING(id,func) EVT_BOOKCTRL_PAGE_CHANGING(id,func)
+    #define wxEVT_COMMAND_WIDGETS_PAGE_CHANGED wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED
+    #define wxWidgetsbookEventHandler(func) wxBookCtrlEventHandler(func)
+#endif
+
+#if wxUSE_LOG && !defined(__WXHANDHELD__)
+    #define USE_LOG 1
+#else
+    #define USE_LOG 0
+#endif
+
+#if defined(__WXHANDHELD__)
+    #define USE_ICONS_IN_BOOK 0
+#else
+    #define USE_ICONS_IN_BOOK 1
+    #define ICON_SIZE         16
+#endif
+
+class WXDLLIMPEXP_FWD_CORE wxCheckBox;
+class WXDLLIMPEXP_FWD_CORE wxSizer;
+class WXDLLIMPEXP_FWD_CORE wxImageList;
+class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
+class WXDLLIMPEXP_FWD_CORE WidgetsBookCtrl;
 
 class WidgetsPageInfo;
 
 #include "wx/panel.h"
+#include "wx/vector.h"
 
-// all source files use wxImageList
-#include "wx/imaglist.h"
+// INTRODUCING NEW PAGES DON'T FORGET TO ADD ENTRIES TO 'WidgetsCategories'
+enum
+{
+    // On wxUniversal-based build (wxX11, wxMGL, wxMSWUniv, wxGTKUniv, etc.)
+    // 'native' means 'made with wxUniv port renderer'
+    NATIVE_PAGE = 0,
+    UNIVERSAL_PAGE = NATIVE_PAGE,
+    GENERIC_PAGE,
+    PICKER_PAGE,
+    COMBO_PAGE,
+    WITH_ITEMS_PAGE,
+    EDITABLE_PAGE,
+    BOOK_PAGE,
+    ALL_PAGE,
+    MAX_PAGES
+};
+
+enum
+{
+    NATIVE_CTRLS     = 1 << NATIVE_PAGE,
+    UNIVERSAL_CTRLS  = NATIVE_CTRLS,
+    GENERIC_CTRLS    = 1 << GENERIC_PAGE,
+    PICKER_CTRLS     = 1 << PICKER_PAGE,
+    COMBO_CTRLS      = 1 << COMBO_PAGE,
+    WITH_ITEMS_CTRLS = 1 << WITH_ITEMS_PAGE,
+    EDITABLE_CTRLS   = 1 << EDITABLE_PAGE,
+    BOOK_CTRLS       = 1 << BOOK_PAGE,
+    ALL_CTRLS        = 1 << ALL_PAGE
+};
+
+typedef wxVector<wxControl *> Widgets;
 
 // ----------------------------------------------------------------------------
-// WidgetsPage: a notebook page demonstrating some widget
+// WidgetsPage: a book page demonstrating some widget
 // ----------------------------------------------------------------------------
 
 class WidgetsPage : public wxPanel
 {
 public:
-    WidgetsPage(wxNotebook *notebook);
+    WidgetsPage(WidgetsBookCtrl *book,
+                wxImageList *imaglist,
+                const char *const icon[]);
+
+    // return the control shown by this page
+    virtual wxControl *GetWidget() const = 0;
+
+    // return the control shown by this page, if it supports text entry interface
+    virtual wxTextEntryBase *GetTextEntry() const { return NULL; }
+
+    // lazy creation of the content
+    virtual void CreateContent() = 0;
+
+    // some pages show additional controls, in this case override this one to
+    // return all of them (including the one returned by GetWidget())
+    virtual Widgets GetWidgets() const
+    {
+        Widgets widgets;
+        widgets.push_back(GetWidget());
+        return widgets;
+    }
+
+    // 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;
 
 protected:
     // several helper functions for page creation
@@ -71,14 +161,15 @@ public:
 class WidgetsPageInfo
 {
 public:
-    typedef WidgetsPage *(*Constructor)(wxNotebook *notebook,
+    typedef WidgetsPage *(*Constructor)(WidgetsBookCtrl *book,
                                         wxImageList *imaglist);
 
     // our ctor
-    WidgetsPageInfo(Constructor ctor, const wxChar *label);
+    WidgetsPageInfo(Constructor ctor, const wxChar *label, int categories);
 
     // accessors
     const wxString& GetLabel() const { return m_label; }
+    int GetCategories() const { return m_categories; }
     Constructor GetCtor() const { return m_ctor; }
     WidgetsPageInfo *GetNext() const { return m_next; }
 
@@ -88,6 +179,9 @@ private:
     // the label of the page
     wxString m_label;
 
+    // the list (flags) for sharing page between categories
+    int m_categories;
+
     // the function to create this page
     Constructor m_ctor;
 
@@ -104,11 +198,11 @@ private:
             { return &ms_info##classname; }
 
 // and this one must be inserted somewhere in the source file
-#define IMPLEMENT_WIDGETS_PAGE(classname, label)                            \
-    WidgetsPage *wxCtorFor##classname(wxNotebook *notebook,                 \
+#define IMPLEMENT_WIDGETS_PAGE(classname, label, categories)                \
+    WidgetsPage *wxCtorFor##classname(WidgetsBookCtrl *book,                \
                                       wxImageList *imaglist)                \
-        { return new classname(notebook, imaglist); }                       \
+        { return new classname(book, imaglist); }                           \
     WidgetsPageInfo classname::                                             \
-        ms_info##classname(wxCtorFor##classname, label)
+        ms_info##classname(wxCtorFor##classname, label, ALL_CTRLS | categories)
 
 #endif // _WX_SAMPLE_WIDGETS_H_