Adding new widget to wxSmith

From Code::Blocks
Revision as of 00:00, 13 December 2005 by Byo (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Warning: Not finished yet


Hi. Because wxSmith is stil lunnder development it misses some standard widgets in it's palette. I hope this will change soon. But If You really need some kind of widget maybe You could help us liuttle bit with wxSmith development :).

At the very beginning I must point that technique described here will work with default widget set and I can not grant that this will work with external ones. There may be a problem even with standard ones but hopefully we could work on that together ;)

Quick guide

Here I will show how to add new widget realy fast. It will work only with widgets that have no children. Let's see an example (source files should be placed inside defwidgets directory since wxSmith uses such convention). Here's extra-commented source code for wxSpinButton widget:

wxsspinbutton.h:

 #ifndef __WXSSPINBUTTON_H
 #define __WXSSPINBUTTON_H
 
 #include "../wxsdefwidget.h"             // this file declares most of usefull macros 
 #include "wxsstdmanager.h"               // declaration of default widget manager
 
 WXS_ST_DECLARE(wxsSpinButtonStyles)      // declaring styles for wxsSpinButton class
 WXS_EV_DECLARE(wxsSpinButtonEvents)      // declaring events for wxsSpinButtin class
 
 wxsDWDeclareBegin(wxsSpinButton,wxsSpinButtonId)   // Beginning of class declaration
 
     // Here are additional properties (standard ones like position/size etc. are processeed automatically)
     int value;
     int min;
     int max;
 wxsDWDeclareEnd()                                  // End of class declaration
 
 
 #endif

wxsxspinbutton.cpp:

 #include "../wxsheaders.h"                         // Standard include for precompiled headers
 #include "wxsspinbutton.h"
 
 #include <wx/spinbutt.h>
 
 // Here's definition of spin button styles
 WXS_ST_BEGIN(wxsSpinButtonStyles)
     WXS_ST_CATEGORY("wxSpinButton")                        // Category definition - currently not used but maybe in future ;)
     WXS_ST_MASK(wxSP_HORIZONTAL,wxsSFAll,wxsSFGTK,true)    // Example of masked style (available in one platform / not available in xrc or something else)
     WXS_ST(wxSP_VERTICAL)                                  // Example of standard style (available everywhere)
     WXS_ST(wxSP_ARROW_KEYS)
     WXS_ST(wxSP_WRAP)
 WXS_ST_END(wxsSpinButtonStyles)
 
 // Here's dedfinition of spin button events
 WXS_EV_BEGIN(wxsSpinButtonEvents)
     WXS_EVI(EVT_SPIN,wxSpinEvent,Change)
     WXS_EVI(EVT_SPIN_UP,wxSpinEvent,ChangeUp)
     WXS_EVI(EVT_SPIN_DOWN,wxSpinEvent,ChangeDown)
     WXS_EV_DEFAULTS()
 WXS_EV_END(wxsSpinButtonEvents)
 
 // Declaration of spin button widget  
 wxsDWDefineBegin(wxsSpinButton,wxSpinButton,
         WXS_THIS = new wxSpinButton(WXS_PARENT,WXS_ID,WXS_POS,WXS_SIZE,WXS_STYLE);
         WXS_THIS->SetRange(min,max);
         WXS_THIS->SetValue(value); // This is code producing this widget
     )
 
     // Bindings for additional properties
     wxsDWDefInt(value,"Default:",0);
     wxsDWDefInt(min,"Min:",0)
     wxsDWDefInt(max,"Max:",100)
 
 wxsDWDefineEnd()


Maybe it seems to be a little bit complicated but If You think so, just take a look at wxsWidget class ;) Without most of usefull macros it would be a nightmare :)

Ok, let's explain this code:

Each widget has set of styles it uses and events it throws. All is done in:

 WXS_ST_DECLARE(wxsSpinButtonStyles)      // declaring styles for wxsSpinButton class
 WXS_EV_DECLARE(wxsSpinButtonEvents)      // declaring events for wxsSpinButtin class

and

 WXS_ST_BEGIN(wxsSpinButtonStyles)
   ...
 WXS_ST_END(wxsSpinButtonStyles)
 
 WXS_EV_BEGIN(wxsSpinButtonEvents)
   ...
 WXS_EV_END(wxsSpinButtonEvents)

code.

First one declares events and styles (note that argument for WXS_ST_DECLARE and WXS_EV_DECLARE is name of class inside wxSmith - with wxs prefix). Second one will be described in more details.

Each entry between WXS_ST_BEGIN and WXS_ST_END can be:

  • category definition - WXS_ST_CATEGORY(name) - this is currently not used but will probably be in future to dividee styles
  • global style - WXS_ST(style_name)
  • global extra style - WXS_EXST(style_name)
  • masked style - WXS_ST_MASK(style_name,include_mask,exclude_mask,can_use_in_xrc)
  • masked extra style - WXS_EXST_MASK(style_name,include_mask,exclude_mask,can_use_in_xrc)

Masked styles were added to notify that some styles work on some platforms, some other don't work on other platforms. Some styles are not used insided XRC. Platforms are defined in wxsstyle.h:

const unsigned int wxsSFWin    = 0x00000002;    ///< This style can be used in Windows (any)
const unsigned int wxsSFWin95  = 0x00000004;    ///< This style can be used in Win95
const unsigned int wxsSFWinCE  = 0x00000008;    ///< This style can be used in WinCE
const unsigned int wxsSFGTK    = 0x00000010;    ///< This style can be used in GTK+ (any GTK)
const unsigned int wxsSFGTK12  = 0x00000020;    ///< This style can be used in GTK (1.2 only)
const unsigned int wxsSFGTK20  = 0x00000040;    ///< This style can be used in GTK (1.2 only)
const unsigned int wxsSFOSX    = 0x00000080;    ///< This style can be used in MAC (any OSX port Cocoa or Carbon)
const unsigned int wxsSFCOCOA  = 0x00000100;    ///< This style can be used in MAC (OSX port Cocoa API)
const unsigned int wxsSFCARBON = 0x00000200;    ///< This style can be used in MAC (MacOS for Carbon CFM)
const unsigned int wxsSFMotif  = 0x00000400;    ///< This style can be used in Motif
const unsigned int wxsSFMGL    = 0x00000800;    ///< This style can be used in MGL
const unsigned int wxsSFOS2    = 0x00001000;    ///< This style can be used in OS2
const unsigned int wxsSFX11    = 0x00002000;    ///< This style can be used in X11
const unsigned int wxsSFPALMOS = 0x00004000;    ///< This style can be used in PALMOS
const unsigned int wxsSFUNIV   = 0x00008000;    ///< This style can be used in wxUNIV

Meaning of macro arguments is as follows:

  • include_mask - mask of platforms where style can be used. If this argument is specified, exclude_mask should be 0
  • exclude_mask - mask of platforms where style does not work. If this argument is specified, include_mask should be wxsSFAll (all platforms)
  • can_use_in_xrc - set to true when xrc uses this style or false if not (but it's listed in documentation)

Next thing are events. They are defined between WXS_EV_BEGIN and WXS_EV_END macros:

  • Event using identifier: WXS_EVI(entry_name,argument_type,default_name) - where entry_name is name of this entry in event array, argumetn_name is name of wxEvent-derived class passed as argument in this handler, default_name - default suffix for new event handlers (without "")
  • Event not using identifiers: WXS_EV(entry_name,argument_type,default_name) - these may be only used in top-level objects like wxDialog. Meaning of arguments is the same.