Add missing interface items for Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-04-12 05:33:29 +00:00
parent c328f9d374
commit 575821fad8
5 changed files with 84 additions and 0 deletions

View File

@@ -6,6 +6,11 @@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#define wxPB_USE_TEXTCTRL 0x0002
#define wxPB_SMALL 0x8000
/**
@class wxPickerBase
@@ -33,6 +38,20 @@
class wxPickerBase : public wxControl
{
public:
wxPickerBase();
virtual ~wxPickerBase();
// if present, intercepts wxPB_USE_TEXTCTRL style and creates the text control
// The 3rd argument is the initial wxString to display in the text control
bool CreateBase(wxWindow *parent,
wxWindowID id,
const wxString& text = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr);
/**
Returns the margin (in pixel) between the picker and the text control.
@@ -138,5 +157,17 @@ public:
This function can be used only when HasTextCtrl() returns @true.
*/
void SetTextCtrlProportion(int prop);
void SetTextCtrl(wxTextCtrl* text);
void SetPickerCtrl(wxControl* picker);
virtual void UpdatePickerFromTextCtrl() = 0;
virtual void UpdateTextCtrlFromPicker() = 0;
protected:
virtual long GetTextCtrlStyle(long style) const;
virtual long GetPickerStyle(long style) const;
void PostCreation();
};