Sorry, I went and removed consts as per the style guide :-)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@179 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
eafc087e69
commit
debe6624c1
@ -27,6 +27,8 @@ which is generated by a wxCheckBox control.}
|
||||
which is generated by a wxChoice control.}
|
||||
\twocolitem{{\bf EVT\_LISTBOX(id, func)}}{Process a wxEVT\_COMMAND\_LISTBOX\_SELECTED command,
|
||||
which is generated by a wxListBox control.}
|
||||
\twocolitem{{\bf EVT\_LISTBOX_DCLICK(id, func)}}{Process a wxEVT\_COMMAND\_LISTBOX\_DOUBLECLICKED command,
|
||||
which is generated by a wxListBox control.}
|
||||
\twocolitem{{\bf EVT\_TEXT(id, func)}}{Process a wxEVT\_COMMAND\_TEXT\_UPDATED command,
|
||||
which is generated by a wxTextCtrl control.}
|
||||
\twocolitem{{\bf EVT\_TEXT\_ENTER(id, func)}}{Process a wxEVT\_COMMAND\_TEXT\_ENTER command,
|
||||
|
@ -10,8 +10,7 @@ selections).
|
||||
List box elements are numbered from zero.
|
||||
|
||||
A listbox callback gets an event wxEVT\_COMMAND\_LISTBOX\_SELECT for single clicks, and
|
||||
wxEVT\_COMMAND\_LISTBOX\_DOUBLE\_CLICKED for double clicks. Another way of intercepting
|
||||
double clicks is to override \helpref{wxWindow::OnDefaultAction}{wxwindowondefaultaction}.
|
||||
wxEVT\_COMMAND\_LISTBOX\_DOUBLE\_CLICKED for double clicks.
|
||||
|
||||
\wxheading{Derived from}
|
||||
|
||||
|
@ -841,21 +841,6 @@ destroying the window if it returns TRUE or if the close is being forced.
|
||||
\helpref{wxWindow::Destroy}{wxwindowdestroy},\rtfsp
|
||||
\helpref{wxCloseEvent}{wxcloseevent}
|
||||
|
||||
\membersection{wxWindow::OnDefaultAction}\label{wxwindowondefaultaction}
|
||||
|
||||
\func{virtual void}{OnDefaultAction}{\param{wxControl* }{control}}
|
||||
|
||||
Called when the user initiates the default action for a panel or
|
||||
dialog box, for example by double clicking on a listbox.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
\docparam{control}{The control which caused the default action.}
|
||||
|
||||
\wxheading{Remarks}
|
||||
|
||||
TODO: eliminate this?? Or keep it for backward compatibility?
|
||||
|
||||
\membersection{wxWindow::OnDropFiles}\label{wxwindowondropfiles}
|
||||
|
||||
\func{void}{OnDropFiles}{\param{wxDropFilesEvent\&}{ event}}
|
||||
|
@ -47,8 +47,8 @@ class WXDLLEXPORT wxDate: public wxObject
|
||||
|
||||
public:
|
||||
wxDate ();
|
||||
wxDate (const long j);
|
||||
wxDate (const int m, const int d, const int y);
|
||||
wxDate (long j);
|
||||
wxDate (int m, int d, int y);
|
||||
wxDate (const wxString& dat);
|
||||
wxDate (const wxDate &dt);
|
||||
|
||||
@ -56,16 +56,16 @@ class WXDLLEXPORT wxDate: public wxObject
|
||||
void operator = (const wxDate& date);
|
||||
void operator = (const wxString& date);
|
||||
|
||||
wxDate operator + (const long i);
|
||||
wxDate operator + (const int i);
|
||||
wxDate operator + (long i);
|
||||
wxDate operator + (int i);
|
||||
|
||||
wxDate operator - (const long i);
|
||||
wxDate operator - (const int i);
|
||||
wxDate operator - (long i);
|
||||
wxDate operator - (int i);
|
||||
|
||||
long operator - (const wxDate &dt);
|
||||
|
||||
wxDate &operator += (const long i);
|
||||
wxDate &operator -= (const long i);
|
||||
wxDate &operator += (long i);
|
||||
wxDate &operator -= (long i);
|
||||
|
||||
wxDate &operator ++ (); // Prefix increment
|
||||
wxDate &operator ++ (int); // Postfix increment
|
||||
@ -81,9 +81,9 @@ class WXDLLEXPORT wxDate: public wxObject
|
||||
|
||||
friend ostream &operator << (ostream &os, const wxDate &dt);
|
||||
|
||||
wxString FormatDate (const int type=-1) const;
|
||||
void SetFormat (const int format);
|
||||
int SetOption (const int option, const bool enable=TRUE);
|
||||
wxString FormatDate (int type=-1) const;
|
||||
void SetFormat (int format);
|
||||
int SetOption (int option, bool enable=TRUE);
|
||||
|
||||
long GetJulianDate() const; // returns julian date
|
||||
int GetDayOfYear() const; // returns relative date since Jan. 1
|
||||
@ -123,7 +123,7 @@ class WXDLLEXPORT wxDate: public wxObject
|
||||
|
||||
bool IsBetween(const wxDate& first, const wxDate& second) const;
|
||||
|
||||
wxDate Previous(const int dayOfWeek) const;
|
||||
wxDate Previous(int dayOfWeek) const;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -357,7 +357,7 @@ class WXDLLEXPORT wxDocChildFrame: public wxFrame
|
||||
public:
|
||||
wxDocChildFrame(wxDocument *doc, wxView *view, wxFrame *frame, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long type = wxDEFAULT_FRAME_STYLE, const wxString& name = "frame");
|
||||
long type = wxDEFAULT_FRAME_STYLE, const wxString& name = "frame");
|
||||
~wxDocChildFrame(void);
|
||||
|
||||
bool OnClose(void);
|
||||
@ -389,7 +389,7 @@ class WXDLLEXPORT wxDocParentFrame: public wxFrame
|
||||
public:
|
||||
wxDocParentFrame(wxDocManager *manager, wxFrame *frame, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long type = wxDEFAULT_FRAME, const wxString& name = "frame");
|
||||
long type = wxDEFAULT_FRAME, const wxString& name = "frame");
|
||||
|
||||
bool OnClose(void);
|
||||
// Extend event processing to search the document manager's event table
|
||||
|
@ -261,7 +261,7 @@ public:
|
||||
|
||||
// Can instruct event processor that we wish to ignore this event
|
||||
// (treat as if the event table entry had not been found)
|
||||
inline void Skip(const bool skip = TRUE) { m_skipped = skip; }
|
||||
inline void Skip(bool skip = TRUE) { m_skipped = skip; }
|
||||
inline bool GetSkipped(void) const { return m_skipped; };
|
||||
|
||||
public:
|
||||
@ -965,6 +965,8 @@ class WXDLLEXPORT wxEvtHandler: public wxObject
|
||||
// callback function
|
||||
// Default behaviour
|
||||
virtual long Default(void) { if (GetNextHandler()) return GetNextHandler()->Default(); else return 0; };
|
||||
|
||||
/*
|
||||
#if WXWIN_COMPATIBILITY
|
||||
virtual void OldOnMenuCommand(int WXUNUSED(cmd));
|
||||
virtual void OldOnMenuSelect(int WXUNUSED(cmd));
|
||||
@ -982,12 +984,14 @@ class WXDLLEXPORT wxEvtHandler: public wxObject
|
||||
virtual void OldOnKillFocus(void);
|
||||
virtual bool OldOnSysColourChange(void);
|
||||
virtual void OldOnDropFiles(int n, char *files[], int x, int y);
|
||||
#endif
|
||||
|
||||
virtual bool OnClose(void);
|
||||
virtual void OnDefaultAction(wxControl *WXUNUSED(initiatingItem)) {};
|
||||
virtual void OnChangeFocus(wxControl *WXUNUSED(from), wxControl *WXUNUSED(to)) {};
|
||||
virtual bool OnFunctionKey(wxKeyEvent &WXUNUSED(event)) { return FALSE; };
|
||||
#endif
|
||||
*/
|
||||
|
||||
virtual bool OnClose(void);
|
||||
|
||||
inline char *GetClientData(void) const { return m_clientData; }
|
||||
inline void SetClientData(char *clientData) { m_clientData = clientData; }
|
||||
@ -995,8 +999,8 @@ class WXDLLEXPORT wxEvtHandler: public wxObject
|
||||
virtual bool ProcessEvent(wxEvent& event);
|
||||
virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
|
||||
|
||||
void Connect( const int id, const int lastId,
|
||||
const int eventType,
|
||||
void Connect( int id, int lastId,
|
||||
int eventType,
|
||||
wxObjectEventFunction func,
|
||||
wxObject *userData = NULL );
|
||||
|
||||
@ -1163,6 +1167,7 @@ const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
|
||||
#define EVT_CHECKBOX(id, fn) { wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
#define EVT_CHOICE(id, fn) { wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
#define EVT_LISTBOX(id, fn) { wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
#define EVT_LISTBOX_DCLICK(id, fn) { wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
#define EVT_TEXT(id, fn) { wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
#define EVT_TEXT_ENTER(id, fn) { wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
#define EVT_MENU(id, fn) { wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
|
||||
|
@ -112,19 +112,19 @@ class WXDLLEXPORT wxRect : public wxObject {
|
||||
DECLARE_DYNAMIC_CLASS(wxRect)
|
||||
public:
|
||||
wxRect(void) ;
|
||||
wxRect(const long x, const long y, const long w, const long h);
|
||||
wxRect(long x, long y, long w, long h);
|
||||
wxRect(const wxPoint& topLeft, const wxPoint& bottomRight);
|
||||
wxRect(const wxPoint& pos, const wxSize& size);
|
||||
wxRect(const wxRect& rect);
|
||||
|
||||
inline long GetX(void) const { return x; }
|
||||
inline void SetX(const long X) { x = X; }
|
||||
inline void SetX(long X) { x = X; }
|
||||
inline long GetY(void) const { return y; }
|
||||
inline void SetY(const long Y) { y = Y; }
|
||||
inline void SetY(long Y) { y = Y; }
|
||||
inline long GetWidth() const { return width; }
|
||||
inline void SetWidth(const long w) { width = w; }
|
||||
inline void SetWidth(long w) { width = w; }
|
||||
inline long GetHeight() const { return height; }
|
||||
inline void SetHeight(const long h) { height = h; }
|
||||
inline void SetHeight(long h) { height = h; }
|
||||
|
||||
inline wxPoint GetPosition(void) { return wxPoint(x, y); }
|
||||
inline wxSize GetSize(void) { return wxSize(width, height); }
|
||||
@ -189,8 +189,8 @@ class WXDLLEXPORT wxPenList: public wxList
|
||||
~wxPenList(void);
|
||||
void AddPen(wxPen *pen);
|
||||
void RemovePen(wxPen *pen);
|
||||
wxPen *FindOrCreatePen(const wxColour& colour, const int width, const int style);
|
||||
wxPen *FindOrCreatePen(const wxString& colour, const int width, const int style);
|
||||
wxPen *FindOrCreatePen(const wxColour& colour, int width, int style);
|
||||
wxPen *FindOrCreatePen(const wxString& colour, int width, int style);
|
||||
};
|
||||
|
||||
class WXDLLEXPORT wxBrushList: public wxList
|
||||
@ -202,8 +202,8 @@ class WXDLLEXPORT wxBrushList: public wxList
|
||||
~wxBrushList(void);
|
||||
void AddBrush(wxBrush *brush);
|
||||
void RemoveBrush(wxBrush *brush);
|
||||
wxBrush *FindOrCreateBrush(const wxColour& colour, const int style);
|
||||
wxBrush *FindOrCreateBrush(const wxString& colour, const int style);
|
||||
wxBrush *FindOrCreateBrush(const wxColour& colour, int style);
|
||||
wxBrush *FindOrCreateBrush(const wxString& colour, int style);
|
||||
};
|
||||
|
||||
WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
|
||||
@ -217,8 +217,8 @@ class WXDLLEXPORT wxFontList: public wxList
|
||||
~wxFontList(void);
|
||||
void AddFont(wxFont *font);
|
||||
void RemoveFont(wxFont *font);
|
||||
wxFont *FindOrCreateFont(const int pointSize, const int family, const int style, const int weight,
|
||||
const bool underline = FALSE, const wxString& face = wxEmptyString);
|
||||
wxFont *FindOrCreateFont(int pointSize, int family, int style, int weight,
|
||||
bool underline = FALSE, const wxString& face = wxEmptyString);
|
||||
};
|
||||
|
||||
class WXDLLEXPORT wxColourDatabase: public wxList
|
||||
|
@ -29,13 +29,13 @@ class WXDLLEXPORT wxSingleChoiceDialog: public wxDialog
|
||||
DECLARE_DYNAMIC_CLASS(wxSingleChoiceDialog)
|
||||
public:
|
||||
wxSingleChoiceDialog(wxWindow *parent, const wxString& message, const wxString& caption,
|
||||
const int n, const wxString *choices, char **clientData = NULL, long style = wxOK|wxCANCEL|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
||||
int n, const wxString *choices, char **clientData = NULL, long style = wxOK|wxCANCEL|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
||||
|
||||
wxSingleChoiceDialog(wxWindow *parent, const wxString& message, const wxString& caption,
|
||||
const wxStringList& choices, char **clientData = NULL, long style = wxOK|wxCANCEL|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
||||
|
||||
bool Create(wxWindow *parent, const wxString& message, const wxString& caption,
|
||||
const int n, const wxString *choices, char **clientData = NULL, long style = wxOK|wxCANCEL|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
||||
int n, const wxString *choices, char **clientData = NULL, long style = wxOK|wxCANCEL|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
||||
bool Create(wxWindow *parent, const wxString& message, const wxString& caption,
|
||||
const wxStringList& choices, char **clientData = NULL, long style = wxOK|wxCANCEL|wxCENTRE, const wxPoint& pos = wxDefaultPosition);
|
||||
|
||||
@ -45,6 +45,7 @@ public:
|
||||
inline char *GetSelectionClientData(void) const { return m_clientData; }
|
||||
|
||||
void OnOK(wxCommandEvent& event);
|
||||
void OnListBoxDClick(wxCommandEvent& event);
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
@ -56,46 +57,46 @@ protected:
|
||||
};
|
||||
|
||||
wxString WXDLLEXPORT wxGetSingleChoice(const wxString& message, const wxString& caption,
|
||||
const int n, const wxString *choices, wxWindow *parent = NULL,
|
||||
const int x = -1, const int y = -1, const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, const wxString *choices, wxWindow *parent = NULL,
|
||||
int x = -1, int y = -1, bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
|
||||
wxString WXDLLEXPORT wxGetSingleChoice(const wxString& message, const wxString& caption,
|
||||
const int n, char *choices[], wxWindow *parent = NULL,
|
||||
const int x = -1, const int y = -1, const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, char *choices[], wxWindow *parent = NULL,
|
||||
int x = -1, int y = -1, bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
|
||||
// Same as above but gets position in list of strings, instead of string,
|
||||
// or -1 if no selection
|
||||
int WXDLLEXPORT wxGetSingleChoiceIndex(const wxString& message, const wxString& caption,
|
||||
const int n, const wxString *choices, wxWindow *parent = NULL,
|
||||
const int x = -1, const int y = -1, const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, const wxString *choices, wxWindow *parent = NULL,
|
||||
int x = -1, int y = -1, bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
|
||||
int WXDLLEXPORT wxGetSingleChoiceIndex(const wxString& message, const wxString& caption,
|
||||
const int n, char *choices[], wxWindow *parent = NULL,
|
||||
const int x = -1, const int y = -1, const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, char *choices[], wxWindow *parent = NULL,
|
||||
int x = -1, int y = -1, bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
|
||||
// Return client data instead
|
||||
char* WXDLLEXPORT wxGetSingleChoiceData(const wxString& message, const wxString& caption,
|
||||
const int n, const wxString *choices, char **client_data,
|
||||
wxWindow *parent = NULL, const int x = -1, const int y = -1,
|
||||
const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, const wxString *choices, char **client_data,
|
||||
wxWindow *parent = NULL, int x = -1, int y = -1,
|
||||
bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
|
||||
char* WXDLLEXPORT wxGetSingleChoiceData(const wxString& message, const wxString& caption,
|
||||
const int n, char *choices[], char **client_data,
|
||||
wxWindow *parent = NULL, const int x = -1, const int y = -1,
|
||||
const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, char *choices[], char **client_data,
|
||||
wxWindow *parent = NULL, int x = -1, int y = -1,
|
||||
bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
|
||||
/*
|
||||
int WXDLLEXPORT wxGetMultipleChoice(const wxString& message, const wxString& caption,
|
||||
const int n, const wxString *choices,
|
||||
const int nsel, int * selection,
|
||||
wxWindow *parent = NULL, const int x = -1 , const int y = -1, const bool centre = TRUE,
|
||||
const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);
|
||||
int n, const wxString *choices,
|
||||
int nsel, int * selection,
|
||||
wxWindow *parent = NULL, int x = -1 , int y = -1, bool centre = TRUE,
|
||||
int width = wxCHOICE_WIDTH, int height = wxCHOICE_HEIGHT);
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
@ -49,7 +49,7 @@ class WXDLLEXPORT wxGenericGrid: public wxPanel
|
||||
public:
|
||||
wxGenericGrid(void);
|
||||
|
||||
inline wxGenericGrid(wxWindow *parent, int x, int y, int width, int height, const long style = 0, char *name = "grid")
|
||||
inline wxGenericGrid(wxWindow *parent, int x, int y, int width, int height, long style = 0, char *name = "grid")
|
||||
{
|
||||
Create(parent, -1, wxPoint(x, y), wxSize(width, height), style, name);
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ class wxImageList: public wxObject
|
||||
bool RemoveAll();
|
||||
bool GetSize( int index, int &width, int &height ) const;
|
||||
bool Draw(int index, wxDC& dc, int x, int y,
|
||||
int flags = wxIMAGELIST_DRAW_NORMAL, const bool solidBackground = FALSE );
|
||||
int flags = wxIMAGELIST_DRAW_NORMAL, bool solidBackground = FALSE );
|
||||
|
||||
private:
|
||||
|
||||
|
@ -51,7 +51,7 @@ class wxListRenameTimer;
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
// type of compare function for wxListCtrl sort operation
|
||||
typedef int (*wxListCtrlCompare)(const long item1, const long item2, long sortData);
|
||||
typedef int (*wxListCtrlCompare)(long item1, long item2, long sortData);
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxListCtrl flags
|
||||
@ -252,14 +252,14 @@ class wxListItemData : public wxObject
|
||||
wxListItemData( const wxListItem &info );
|
||||
void SetItem( const wxListItem &info );
|
||||
void SetText( const wxString &s );
|
||||
void SetImage( const int image );
|
||||
void SetData( const long data );
|
||||
void SetPosition( const int x, const int y );
|
||||
void SetSize( const int width, const int height );
|
||||
void SetImage( int image );
|
||||
void SetData( long data );
|
||||
void SetPosition( int x, int y );
|
||||
void SetSize( int width, int height );
|
||||
void SetColour( wxColour *col );
|
||||
bool HasImage(void) const;
|
||||
bool HasText(void) const;
|
||||
bool IsHit( const int x, const int y ) const;
|
||||
bool IsHit( int x, int y ) const;
|
||||
void GetText( wxString &s );
|
||||
int GetX( void ) const;
|
||||
int GetY( void ) const;
|
||||
@ -291,13 +291,13 @@ class wxListHeaderData : public wxObject
|
||||
wxListHeaderData(void);
|
||||
wxListHeaderData( const wxListItem &info );
|
||||
void SetItem( const wxListItem &item );
|
||||
void SetPosition( const int x, const int y );
|
||||
void SetWidth( const int w );
|
||||
void SetFormat( const int format );
|
||||
void SetHeight( const int h );
|
||||
void SetPosition( int x, int y );
|
||||
void SetWidth( int w );
|
||||
void SetFormat( int format );
|
||||
void SetHeight( int h );
|
||||
bool HasImage(void) const;
|
||||
bool HasText(void) const;
|
||||
bool IsHit( const int x, const int y ) const;
|
||||
bool IsHit( int x, int y ) const;
|
||||
void GetItem( wxListItem &item );
|
||||
void GetText( wxString &s );
|
||||
int GetImage(void) const;
|
||||
@ -325,32 +325,32 @@ class wxListLineData : public wxObject
|
||||
int m_spacing;
|
||||
wxListMainWindow *m_owner;
|
||||
|
||||
void DoDraw( wxPaintDC *dc, const bool hilight, const bool paintBG );
|
||||
void DoDraw( wxPaintDC *dc, bool hilight, bool paintBG );
|
||||
|
||||
public:
|
||||
wxListLineData( void ) {};
|
||||
wxListLineData( wxListMainWindow *owner, const int mode, wxBrush *hilightBrush );
|
||||
void CalculateSize( wxPaintDC *dc, const int spacing );
|
||||
void SetPosition( wxPaintDC *dc, const int x, const int y, const int window_width );
|
||||
void SetColumnPosition( const int index, const int x );
|
||||
wxListLineData( wxListMainWindow *owner, int mode, wxBrush *hilightBrush );
|
||||
void CalculateSize( wxPaintDC *dc, int spacing );
|
||||
void SetPosition( wxPaintDC *dc, int x, int y, int window_width );
|
||||
void SetColumnPosition( int index, int x );
|
||||
void GetSize( int &width, int &height );
|
||||
void GetExtent( int &x, int &y, int &width, int &height );
|
||||
void GetLabelExtent( int &x, int &y, int &width, int &height );
|
||||
long IsHit( const int x, const int y );
|
||||
void InitItems( const int num );
|
||||
void SetItem( const int index, const wxListItem &info );
|
||||
void GetItem( const int index, wxListItem &info );
|
||||
void GetText( const int index, wxString &s );
|
||||
void SetText( const int index, const wxString s );
|
||||
int GetImage( const int index );
|
||||
long IsHit( int x, int y );
|
||||
void InitItems( int num );
|
||||
void SetItem( int index, const wxListItem &info );
|
||||
void GetItem( int index, wxListItem &info );
|
||||
void GetText( int index, wxString &s );
|
||||
void SetText( int index, const wxString s );
|
||||
int GetImage( int index );
|
||||
void GetRect( wxRectangle &rect );
|
||||
void Hilight( const bool on );
|
||||
void Hilight( bool on );
|
||||
void ReverseHilight( void );
|
||||
void DrawRubberBand( wxPaintDC *dc, const bool on );
|
||||
void DrawRubberBand( wxPaintDC *dc, bool on );
|
||||
void Draw( wxPaintDC *dc );
|
||||
bool IsInRect( const int x, const int y, const wxRectangle &rect );
|
||||
bool IsInRect( int x, int y, const wxRectangle &rect );
|
||||
bool IsHilighted( void );
|
||||
void AssignRect( wxRectangle &dest, const int x, const int y, const int width, const int height );
|
||||
void AssignRect( wxRectangle &dest, int x, int y, int width, int height );
|
||||
void AssignRect( wxRectangle &dest, const wxRectangle &source );
|
||||
};
|
||||
|
||||
@ -369,9 +369,9 @@ class wxListHeaderWindow : public wxWindow
|
||||
|
||||
public:
|
||||
wxListHeaderWindow( void );
|
||||
wxListHeaderWindow( wxWindow *win, const wxWindowID id, wxListMainWindow *owner,
|
||||
wxListHeaderWindow( wxWindow *win, wxWindowID id, wxListMainWindow *owner,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = "columntitles" );
|
||||
long style = 0, const wxString &name = "columntitles" );
|
||||
void DoDrawRect( wxPaintDC *dc, int x, int y, int w, int h );
|
||||
void OnPaint( wxPaintEvent &event );
|
||||
void OnMouse( wxMouseEvent &event );
|
||||
@ -487,13 +487,13 @@ class wxListMainWindow: public wxScrolledWindow
|
||||
|
||||
public:
|
||||
wxListMainWindow(void);
|
||||
wxListMainWindow( wxWindow *parent, const wxWindowID id,
|
||||
wxListMainWindow( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = "listctrl" );
|
||||
long style = 0, const wxString &name = "listctrl" );
|
||||
~wxListMainWindow(void);
|
||||
void RefreshLine( wxListLineData *line );
|
||||
void OnPaint( wxPaintEvent &event );
|
||||
void HilightAll( const bool on );
|
||||
void HilightAll( bool on );
|
||||
void ActivateLine( wxListLineData *line );
|
||||
void SendNotify( wxListLineData *line, wxEventType command );
|
||||
void FocusLine( wxListLineData *line );
|
||||
@ -517,37 +517,37 @@ class wxListMainWindow: public wxScrolledWindow
|
||||
int GetIndexOfLine( const wxListLineData *line );
|
||||
int GetTextLength( wxString &s ); // should be const
|
||||
|
||||
void SetImageList( wxImageList *imageList, const int which );
|
||||
void SetItemSpacing( const int spacing, const bool isSmall = FALSE );
|
||||
int GetItemSpacing( const bool isSmall = FALSE );
|
||||
void SetColumn( const int col, wxListItem &item );
|
||||
void SetColumnWidth( const int col, const int width );
|
||||
void GetColumn( const int col, wxListItem &item );
|
||||
int GetColumnWidth( const int vol );
|
||||
void SetImageList( wxImageList *imageList, int which );
|
||||
void SetItemSpacing( int spacing, bool isSmall = FALSE );
|
||||
int GetItemSpacing( bool isSmall = FALSE );
|
||||
void SetColumn( int col, wxListItem &item );
|
||||
void SetColumnWidth( int col, int width );
|
||||
void GetColumn( int col, wxListItem &item );
|
||||
int GetColumnWidth( int vol );
|
||||
int GetColumnCount( void );
|
||||
int GetCountPerPage( void );
|
||||
void SetItem( wxListItem &item );
|
||||
void GetItem( wxListItem &item );
|
||||
void SetItemState( const long item, const long state, const long stateMask );
|
||||
int GetItemState( const long item, const long stateMask );
|
||||
void SetItemState( long item, long state, long stateMask );
|
||||
int GetItemState( long item, long stateMask );
|
||||
int GetItemCount( void );
|
||||
void GetItemRect( const long index, wxRectangle &rect );
|
||||
void GetItemRect( long index, wxRectangle &rect );
|
||||
int GetSelectedItemCount( void );
|
||||
void SetMode( const long mode );
|
||||
void SetMode( long mode );
|
||||
long GetMode( void ) const;
|
||||
void CalculatePositions( void );
|
||||
void RealizeChanges(void);
|
||||
long GetNextItem( const long item, int geometry, int state );
|
||||
void DeleteItem( const long index );
|
||||
long GetNextItem( long item, int geometry, int state );
|
||||
void DeleteItem( long index );
|
||||
void DeleteAllItems( void );
|
||||
void DeleteColumn( const int col );
|
||||
void DeleteColumn( int col );
|
||||
void DeleteEverything( void );
|
||||
void EnsureVisible( const long index );
|
||||
long FindItem(const long start, const wxString& str, const bool partial = FALSE );
|
||||
long FindItem(const long start, const long data);
|
||||
long HitTest( const int x, const int y, int &flags );
|
||||
void EnsureVisible( long index );
|
||||
long FindItem(long start, const wxString& str, bool partial = FALSE );
|
||||
long FindItem(long start, long data);
|
||||
long HitTest( int x, int y, int &flags );
|
||||
void InsertItem( wxListItem &item );
|
||||
void InsertColumn( const long col, wxListItem &item );
|
||||
void InsertColumn( long col, wxListItem &item );
|
||||
void SortItems( wxListCtrlCompare fn, long data );
|
||||
virtual bool OnListNotify( wxListEvent &event );
|
||||
|
||||
@ -565,66 +565,66 @@ class wxListCtrl: public wxControl
|
||||
public:
|
||||
|
||||
wxListCtrl(void);
|
||||
wxListCtrl( wxWindow *parent, const wxWindowID id,
|
||||
wxListCtrl( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = "listctrl" );
|
||||
long style = 0, const wxString &name = "listctrl" );
|
||||
~wxListCtrl(void);
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = "listctrl" );
|
||||
long style = 0, const wxString &name = "listctrl" );
|
||||
void OnSize( wxSizeEvent &event );
|
||||
void SetBackgroundColour( const wxColour& col );
|
||||
bool GetColumn( const int col, wxListItem& item );
|
||||
bool SetColumn( const int col, wxListItem& item );
|
||||
int GetColumnWidth( const int col );
|
||||
bool SetColumnWidth( const int col, const int width);
|
||||
bool GetColumn( int col, wxListItem& item );
|
||||
bool SetColumn( int col, wxListItem& item );
|
||||
int GetColumnWidth( int col );
|
||||
bool SetColumnWidth( int col, int width);
|
||||
int GetCountPerPage(void); // not the same in wxGLC as in Windows, I think
|
||||
// wxText& GetEditControl(void) const; // not supported in wxGLC
|
||||
bool GetItem( wxListItem& info );
|
||||
bool SetItem( wxListItem& info ) ;
|
||||
long SetItem( const long index, const int col, const wxString& label, const int imageId = -1 );
|
||||
int GetItemState( const long item, const long stateMask );
|
||||
bool SetItemState( const long item, const long state, const long stateMask);
|
||||
bool SetItemImage( const long item, const int image, const int selImage);
|
||||
wxString GetItemText( const long item );
|
||||
void SetItemText( const long item, const wxString& str );
|
||||
long GetItemData( const long item );
|
||||
bool SetItemData( const long item, long data );
|
||||
bool GetItemRect( const long item, wxRectangle& rect, const int code = wxLIST_RECT_BOUNDS ); // not supported in wxGLC
|
||||
bool GetItemPosition( const long item, wxPoint& pos ) const; // not supported in wxGLC
|
||||
bool SetItemPosition( const long item, const wxPoint& pos ); // not supported in wxGLC
|
||||
long SetItem( long index, int col, const wxString& label, int imageId = -1 );
|
||||
int GetItemState( long item, long stateMask );
|
||||
bool SetItemState( long item, long state, long stateMask);
|
||||
bool SetItemImage( long item, int image, int selImage);
|
||||
wxString GetItemText( long item );
|
||||
void SetItemText( long item, const wxString& str );
|
||||
long GetItemData( long item );
|
||||
bool SetItemData( long item, long data );
|
||||
bool GetItemRect( long item, wxRectangle& rect, int code = wxLIST_RECT_BOUNDS ); // not supported in wxGLC
|
||||
bool GetItemPosition( long item, wxPoint& pos ) const; // not supported in wxGLC
|
||||
bool SetItemPosition( long item, const wxPoint& pos ); // not supported in wxGLC
|
||||
int GetItemCount(void);
|
||||
int GetItemSpacing( bool isSmall );
|
||||
int GetSelectedItemCount(void);
|
||||
// wxColour GetTextColour(void) const; // wxGLC has colours for every Item (see wxListItem)
|
||||
// void SetTextColour(const wxColour& col);
|
||||
long GetTopItem(void);
|
||||
void SetSingleStyle( const long style, const bool add = TRUE ) ;
|
||||
void SetWindowStyleFlag(const long style);
|
||||
void SetSingleStyle( long style, bool add = TRUE ) ;
|
||||
void SetWindowStyleFlag(long style);
|
||||
void RecreateWindow(void) {};
|
||||
long GetNextItem(const long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE);
|
||||
wxImageList *GetImageList(const int which);
|
||||
void SetImageList(wxImageList *imageList, const int which) ;
|
||||
bool Arrange( const int flag = wxLIST_ALIGN_DEFAULT ); // always wxLIST_ALIGN_LEFT in wxGLC
|
||||
bool DeleteItem( const long item );
|
||||
long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE);
|
||||
wxImageList *GetImageList(int which);
|
||||
void SetImageList(wxImageList *imageList, int which) ;
|
||||
bool Arrange( int flag = wxLIST_ALIGN_DEFAULT ); // always wxLIST_ALIGN_LEFT in wxGLC
|
||||
bool DeleteItem( long item );
|
||||
bool DeleteAllItems(void) ;
|
||||
bool DeleteColumn( const int col );
|
||||
// wxText& Edit(const long item) ; // not supported in wxGLC
|
||||
bool EnsureVisible( const long item );
|
||||
long FindItem(const long start, const wxString& str, const bool partial = FALSE );
|
||||
long FindItem(const long start, const long data);
|
||||
long FindItem(const long start, const wxPoint& pt, const int direction); // not supported in wxGLC
|
||||
bool DeleteColumn( int col );
|
||||
// wxText& Edit(long item) ; // not supported in wxGLC
|
||||
bool EnsureVisible( long item );
|
||||
long FindItem(long start, const wxString& str, bool partial = FALSE );
|
||||
long FindItem(long start, long data);
|
||||
long FindItem(long start, const wxPoint& pt, int direction); // not supported in wxGLC
|
||||
long HitTest(const wxPoint& point, int& flags);
|
||||
long InsertItem(wxListItem& info);
|
||||
long InsertItem(const long index, const wxString& label);
|
||||
long InsertItem(const long index, const int imageIndex);
|
||||
long InsertItem(const long index, const wxString& label, const int imageIndex);
|
||||
long InsertColumn(const long col, wxListItem& info);
|
||||
long InsertColumn(const long col, const wxString& heading, const int format = wxLIST_FORMAT_LEFT,
|
||||
const int width = -1);
|
||||
bool ScrollList(const int dx, const int dy);
|
||||
long InsertItem(long index, const wxString& label);
|
||||
long InsertItem(long index, int imageIndex);
|
||||
long InsertItem(long index, const wxString& label, int imageIndex);
|
||||
long InsertColumn(long col, wxListItem& info);
|
||||
long InsertColumn(long col, const wxString& heading, int format = wxLIST_FORMAT_LEFT,
|
||||
int width = -1);
|
||||
bool ScrollList(int dx, int dy);
|
||||
bool SortItems(wxListCtrlCompare fn, long data);
|
||||
bool Update(const long item);
|
||||
bool Update(long item);
|
||||
virtual bool OnListNotify(wxListEvent& WXUNUSED(event)) { return FALSE; }
|
||||
void SetDropTarget( wxDropTarget *dropTarget )
|
||||
{ m_mainWin->SetDropTarget( dropTarget ); };
|
||||
|
@ -44,7 +44,7 @@ DECLARE_EVENT_TABLE()
|
||||
#define wxMessageDialog wxGenericMessageDialog
|
||||
|
||||
int wxMessageBox(const wxString& message, const wxString& caption = wxMessageBoxCaptionStr,
|
||||
const long style = wxOK|wxCENTRE, wxWindow *parent = NULL, const int x = -1, const int y = -1);
|
||||
long style = wxOK|wxCENTRE, wxWindow *parent = NULL, int x = -1, int y = -1);
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -30,27 +30,27 @@ public:
|
||||
|
||||
// Old-style constructor
|
||||
inline wxPanel(wxWindow *parent,
|
||||
const int x = -1, const int y= -1, const int width = 500, const int height = 500,
|
||||
const long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
||||
int x = -1, int y= -1, int width = 500, int height = 500,
|
||||
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
||||
const wxString& name = wxPanelNameStr)
|
||||
{
|
||||
Create(parent, -1, wxPoint(x, y), wxSize(width, height), style, name);
|
||||
}
|
||||
|
||||
// Constructor
|
||||
inline wxPanel(wxWindow *parent, const wxWindowID id,
|
||||
inline wxPanel(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
||||
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
||||
const wxString& name = wxPanelNameStr)
|
||||
{
|
||||
Create(parent, id, pos, size, style, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
||||
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
void OnPaint(wxPaintEvent& event);
|
||||
|
@ -26,10 +26,10 @@ class WXDLLEXPORT wxScrolledWindow: public wxWindow
|
||||
|
||||
public:
|
||||
wxScrolledWindow(void);
|
||||
inline wxScrolledWindow(wxWindow *parent, const wxWindowID id = -1,
|
||||
inline wxScrolledWindow(wxWindow *parent, wxWindowID id = -1,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxHSCROLL|wxVSCROLL,
|
||||
long style = wxHSCROLL|wxVSCROLL,
|
||||
const wxString& name = wxPanelNameStr)
|
||||
{
|
||||
Create(parent, id, pos, size, style, name);
|
||||
@ -37,15 +37,15 @@ public:
|
||||
|
||||
inline ~wxScrolledWindow(void) {}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxHSCROLL|wxVSCROLL,
|
||||
long style = wxHSCROLL|wxVSCROLL,
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
// Set client size
|
||||
// Should take account of scrollbars
|
||||
// virtual void SetClientSize(const int width, const int size);
|
||||
// virtual void SetClientSize(int width, int size);
|
||||
|
||||
// Is the window retained?
|
||||
// inline bool IsRetained(void) const;
|
||||
@ -53,13 +53,13 @@ public:
|
||||
// Number of pixels per user unit (0 or -1 for no scrollbar)
|
||||
// Length of virtual canvas in user units
|
||||
// Length of page in user units
|
||||
virtual void SetScrollbars(const int pixelsPerUnitX, const int pixelsPerUnitY,
|
||||
const int noUnitsX, const int noUnitsY,
|
||||
const int xPos = 0, const int yPos = 0,
|
||||
const bool noRefresh = FALSE );
|
||||
virtual void SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY,
|
||||
int noUnitsX, int noUnitsY,
|
||||
int xPos = 0, int yPos = 0,
|
||||
bool noRefresh = FALSE );
|
||||
|
||||
// Physically scroll the window
|
||||
virtual void Scroll(const int x_pos, const int y_pos);
|
||||
virtual void Scroll(int x_pos, int y_pos);
|
||||
|
||||
#if WXWIN_COMPATIBILITY
|
||||
virtual void GetScrollUnitsPerPage(int *x_page, int *y_page) const;
|
||||
@ -75,7 +75,7 @@ public:
|
||||
// If FALSE, the whole canvas is invalidated and a Clear() is
|
||||
// necessary. Disable for when the scroll increment is used
|
||||
// to actually scroll a non-constant distance
|
||||
virtual void EnableScrolling(const bool x_scrolling, const bool y_scrolling);
|
||||
virtual void EnableScrolling(bool x_scrolling, bool y_scrolling);
|
||||
|
||||
// Get the view start
|
||||
virtual void ViewStart(int *x, int *y) const;
|
||||
@ -83,8 +83,8 @@ public:
|
||||
// Actual size in pixels when scrolling is taken into account
|
||||
virtual void GetVirtualSize(int *x, int *y) const;
|
||||
|
||||
virtual void CalcScrolledPosition(const int x, const int y, int *xx, int *yy) const ;
|
||||
virtual void CalcUnscrolledPosition(const int x, const int y, float *xx, float *yy) const ;
|
||||
virtual void CalcScrolledPosition(int x, int y, int *xx, int *yy) const ;
|
||||
virtual void CalcUnscrolledPosition(int x, int y, float *xx, float *yy) const ;
|
||||
|
||||
// Adjust the scrollbars
|
||||
virtual void AdjustScrollbars(void);
|
||||
|
@ -57,8 +57,8 @@ class WXDLLEXPORT wxSplitterWindow: public wxWindow
|
||||
wxSplitterWindow(void);
|
||||
|
||||
// Normal constructor
|
||||
wxSplitterWindow(wxWindow *parent, const wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = wxSP_3D|wxCLIP_CHILDREN, const wxString& name = "splitter");
|
||||
wxSplitterWindow(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, long style = wxSP_3D|wxCLIP_CHILDREN, const wxString& name = "splitter");
|
||||
~wxSplitterWindow(void);
|
||||
|
||||
// Gets the only or left/top pane
|
||||
@ -68,7 +68,7 @@ class WXDLLEXPORT wxSplitterWindow: public wxWindow
|
||||
inline wxWindow *GetWindow2(void) { return m_windowTwo; }
|
||||
|
||||
// Sets the split mode
|
||||
inline void SetSplitMode(const int mode) { m_splitMode = mode; }
|
||||
inline void SetSplitMode(int mode) { m_splitMode = mode; }
|
||||
|
||||
// Gets the split mode
|
||||
inline int GetSplitMode(void) const { return m_splitMode; };
|
||||
@ -80,8 +80,8 @@ class WXDLLEXPORT wxSplitterWindow: public wxWindow
|
||||
// and changing the split mode.
|
||||
// Does nothing and returns FALSE if the window is already split.
|
||||
// A sashPosition of -1 means choose a default sash position.
|
||||
bool SplitVertically(wxWindow *window1, wxWindow *window2, const int sashPosition = -1);
|
||||
bool SplitHorizontally(wxWindow *window1, wxWindow *window2, const int sashPosition = -1);
|
||||
bool SplitVertically(wxWindow *window1, wxWindow *window2, int sashPosition = -1);
|
||||
bool SplitHorizontally(wxWindow *window1, wxWindow *window2, int sashPosition = -1);
|
||||
|
||||
// Removes the specified (or second) window from the view
|
||||
// Doesn't actually delete the window.
|
||||
@ -91,10 +91,10 @@ class WXDLLEXPORT wxSplitterWindow: public wxWindow
|
||||
inline bool IsSplit(void) const { return (m_windowTwo != NULL); }
|
||||
|
||||
// Sets the sash size
|
||||
inline void SetSashSize(const int width) { m_sashSize = width; }
|
||||
inline void SetSashSize(int width) { m_sashSize = width; }
|
||||
|
||||
// Sets the border size
|
||||
inline void SetBorderSize(const int width) { m_borderSize = width; }
|
||||
inline void SetBorderSize(int width) { m_borderSize = width; }
|
||||
|
||||
// Gets the sash size
|
||||
inline int GetSashSize(void) const { return m_sashSize; }
|
||||
@ -103,13 +103,13 @@ class WXDLLEXPORT wxSplitterWindow: public wxWindow
|
||||
inline int GetBorderSize(void) const { return m_borderSize; }
|
||||
|
||||
// Set the sash position
|
||||
void SetSashPosition(const int position, const bool redaw = TRUE);
|
||||
void SetSashPosition(int position, bool redaw = TRUE);
|
||||
|
||||
// Gets the sash position
|
||||
inline int GetSashPosition(void) const { return m_sashPosition; }
|
||||
|
||||
// If this is zero, we can remove panes by dragging the sash.
|
||||
inline void SetMinimumPaneSize(const int min) { m_minimumPaneSize = min; }
|
||||
inline void SetMinimumPaneSize(int min) { m_minimumPaneSize = min; }
|
||||
inline int GetMinimumPaneSize(void) const { return m_minimumPaneSize; }
|
||||
|
||||
// If the sash is moved to an extreme position, a subwindow
|
||||
@ -141,10 +141,10 @@ class WXDLLEXPORT wxSplitterWindow: public wxWindow
|
||||
void DrawSash(wxDC& dc);
|
||||
|
||||
// Draws the sash tracker (for whilst moving the sash)
|
||||
void DrawSashTracker(const int x, const int y);
|
||||
void DrawSashTracker(int x, int y);
|
||||
|
||||
// Tests for x, y over sash
|
||||
bool SashHitTest(const int x, const int y, const int tolerance = 2);
|
||||
bool SashHitTest(int x, int y, int tolerance = 2);
|
||||
|
||||
// Resizes subwindows
|
||||
void SizeWindows(void);
|
||||
|
@ -26,10 +26,10 @@ class WXDLLEXPORT wxStatusBar: public wxWindow
|
||||
|
||||
public:
|
||||
wxStatusBar(void);
|
||||
inline wxStatusBar(wxWindow *parent, const wxWindowID id,
|
||||
inline wxStatusBar(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxString& name = wxPanelNameStr)
|
||||
{
|
||||
Create(parent, id, pos, size, style, name);
|
||||
@ -37,33 +37,33 @@ public:
|
||||
|
||||
~wxStatusBar(void);
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
// Create status line
|
||||
virtual void SetFieldsCount(const int number=1, const int *widths = NULL);
|
||||
virtual void SetFieldsCount(int number=1, int *widths = NULL);
|
||||
inline int GetFieldsCount(void) const { return m_nFields; }
|
||||
|
||||
// Set status line text
|
||||
virtual void SetStatusText(const wxString& text, const int number = 0);
|
||||
virtual wxString GetStatusText(const int number = 0) const;
|
||||
virtual void SetStatusText(const wxString& text, int number = 0);
|
||||
virtual wxString GetStatusText(int number = 0) const;
|
||||
|
||||
// Set status line widths
|
||||
virtual void SetStatusWidths(const int n, const int *widths_field);
|
||||
virtual void SetStatusWidths(int n, int *widths_field);
|
||||
|
||||
virtual void DrawFieldText(wxDC& dc, const int i);
|
||||
virtual void DrawField(wxDC& dc, const int i);
|
||||
virtual void DrawFieldText(wxDC& dc, int i);
|
||||
virtual void DrawField(wxDC& dc, int i);
|
||||
|
||||
// Get the position and size of the field's internal bounding rectangle
|
||||
virtual bool GetFieldRect(const int i, wxRectangle& rect) const;
|
||||
virtual bool GetFieldRect(int i, wxRectangle& rect) const;
|
||||
|
||||
inline int GetBorderX(void) const { return m_borderX; }
|
||||
inline int GetBorderY(void) const { return m_borderY; }
|
||||
inline void SetBorderX(const int x);
|
||||
inline void SetBorderY(const int y);
|
||||
inline void SetBorderX(int x);
|
||||
inline void SetBorderY(int y);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// Implementation
|
||||
|
@ -266,10 +266,10 @@ DECLARE_DYNAMIC_CLASS(wxTabbedDialog)
|
||||
|
||||
public:
|
||||
|
||||
wxTabbedDialog(wxWindow *parent, const wxWindowID id, const wxString& title,
|
||||
wxTabbedDialog(wxWindow *parent, wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long windowStyle = wxDEFAULT_DIALOG_STYLE, const wxString& name = wxDialogNameStr);
|
||||
long windowStyle = wxDEFAULT_DIALOG_STYLE, const wxString& name = wxDialogNameStr);
|
||||
~wxTabbedDialog(void);
|
||||
|
||||
inline wxTabView *GetTabView() const { return m_tabView; }
|
||||
@ -295,10 +295,10 @@ DECLARE_DYNAMIC_CLASS(wxTabbedPanel)
|
||||
|
||||
public:
|
||||
|
||||
wxTabbedPanel(wxWindow *parent, const wxWindowID id,
|
||||
wxTabbedPanel(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long windowStyle = 0, const wxString& name = wxPanelNameStr);
|
||||
long windowStyle = 0, const wxString& name = wxPanelNameStr);
|
||||
~wxTabbedPanel(void);
|
||||
|
||||
inline wxTabView *GetTabView() const { return m_tabView; }
|
||||
|
@ -257,24 +257,24 @@ class wxTreeCtrl: public wxScrolledWindow
|
||||
public:
|
||||
|
||||
wxTreeCtrl(void);
|
||||
wxTreeCtrl(wxWindow *parent, const wxWindowID id = -1,
|
||||
wxTreeCtrl(wxWindow *parent, wxWindowID id = -1,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxTR_HAS_BUTTONS,
|
||||
const wxString& name = "wxTreeCtrl" );
|
||||
~wxTreeCtrl(void);
|
||||
bool Create(wxWindow *parent, const wxWindowID id = -1,
|
||||
bool Create(wxWindow *parent, wxWindowID id = -1,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxTR_HAS_BUTTONS,
|
||||
const wxString& name = "wxTreeCtrl");
|
||||
|
||||
int GetCount(void) const;
|
||||
long InsertItem( long parent, const wxString& label, const int image = -1,
|
||||
const int selImage = -1, long insertAfter = wxTREE_INSERT_LAST );
|
||||
long InsertItem( long parent, const wxString& label, int image = -1,
|
||||
int selImage = -1, long insertAfter = wxTREE_INSERT_LAST );
|
||||
long InsertItem( long parent, wxTreeItem &info, long insertAfter = wxTREE_INSERT_LAST );
|
||||
bool DeleteAllItems(void);
|
||||
bool ExpandItem( long item, const int action );
|
||||
bool ExpandItem( long item, int action );
|
||||
bool GetItem( wxTreeItem &info ) const;
|
||||
long GetItemData( long item ) const;
|
||||
wxString GetItemText( long item ) const;
|
||||
@ -284,7 +284,7 @@ class wxTreeCtrl: public wxScrolledWindow
|
||||
long GetSelection(void) const;
|
||||
bool SelectItem( long item ) const;
|
||||
bool ItemHasChildren( long item ) const;
|
||||
void SetIndent( const int indent );
|
||||
void SetIndent( int indent );
|
||||
int GetIndent(void) const;
|
||||
bool SetItem( wxTreeItem &info );
|
||||
bool SetItemData( long item, long data );
|
||||
|
@ -47,7 +47,7 @@ class wxMask: public wxObject
|
||||
|
||||
wxMask(void);
|
||||
wxMask( const wxBitmap& bitmap, const wxColour& colour );
|
||||
wxMask( const wxBitmap& bitmap, const int paletteIndex );
|
||||
wxMask( const wxBitmap& bitmap, int paletteIndex );
|
||||
wxMask( const wxBitmap& bitmap );
|
||||
~wxMask(void);
|
||||
|
||||
@ -80,12 +80,12 @@ class wxBitmap: public wxObject
|
||||
public:
|
||||
|
||||
wxBitmap(void);
|
||||
wxBitmap( const int width, const int height, const int depth = -1 );
|
||||
wxBitmap( const char bits[], const int width, const int height, const int depth = 1 );
|
||||
wxBitmap( int width, int height, int depth = -1 );
|
||||
wxBitmap( const char bits[], int width, int height, int depth = 1 );
|
||||
wxBitmap( char **bits );
|
||||
wxBitmap( const wxBitmap& bmp );
|
||||
wxBitmap( const wxBitmap* bmp );
|
||||
wxBitmap( const wxString &filename, const int type );
|
||||
wxBitmap( const wxString &filename, int type );
|
||||
~wxBitmap(void);
|
||||
wxBitmap& operator = ( const wxBitmap& bmp );
|
||||
bool operator == ( const wxBitmap& bmp );
|
||||
@ -95,15 +95,15 @@ class wxBitmap: public wxObject
|
||||
int GetHeight(void) const;
|
||||
int GetWidth(void) const;
|
||||
int GetDepth(void) const;
|
||||
void SetHeight( const int height );
|
||||
void SetWidth( const int width );
|
||||
void SetDepth( const int depth );
|
||||
void SetHeight( int height );
|
||||
void SetWidth( int width );
|
||||
void SetDepth( int depth );
|
||||
|
||||
wxMask *GetMask(void) const;
|
||||
void SetMask( wxMask *mask );
|
||||
|
||||
bool SaveFile( const wxString &name, const int type, wxPalette *palette = NULL );
|
||||
bool LoadFile( const wxString &name, const int type );
|
||||
bool SaveFile( const wxString &name, int type, wxPalette *palette = NULL );
|
||||
bool LoadFile( const wxString &name, int type );
|
||||
|
||||
wxPalette *GetPalette(void) const;
|
||||
wxPalette *GetColourMap(void) const
|
||||
|
@ -46,10 +46,10 @@ class wxBitmapButton: public wxControl
|
||||
wxBitmapButton(void);
|
||||
wxBitmapButton( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
void SetDefault(void);
|
||||
void SetLabel( const wxString &label );
|
||||
wxString GetLabel(void) const;
|
||||
|
@ -39,8 +39,8 @@ class wxBrush: public wxGDIObject
|
||||
public:
|
||||
|
||||
wxBrush(void);
|
||||
wxBrush( const wxColour &colour, const int style );
|
||||
wxBrush( const wxString &colourName, const int style );
|
||||
wxBrush( const wxColour &colour, int style );
|
||||
wxBrush( const wxString &colourName, int style );
|
||||
wxBrush( const wxBitmap &stippleBitmap );
|
||||
wxBrush( const wxBrush &brush );
|
||||
wxBrush( const wxBrush *brush );
|
||||
|
@ -46,10 +46,10 @@ class wxButton: public wxControl
|
||||
wxButton(void);
|
||||
wxButton( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
void SetDefault(void);
|
||||
void SetLabel( const wxString &label );
|
||||
wxString GetLabel(void) const;
|
||||
|
@ -46,11 +46,11 @@ class wxCheckBox: public wxControl
|
||||
wxCheckBox(void);
|
||||
wxCheckBox( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
void SetValue( const bool state );
|
||||
long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
void SetValue( bool state );
|
||||
bool GetValue(void) const;
|
||||
};
|
||||
|
||||
|
@ -44,24 +44,24 @@ class wxChoice: public wxControl
|
||||
public:
|
||||
|
||||
wxChoice(void);
|
||||
wxChoice( wxWindow *parent, const wxWindowID id,
|
||||
wxChoice( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
void Append( const wxString &item );
|
||||
void Clear(void);
|
||||
int FindString( const wxString &string ) const;
|
||||
int GetColumns(void) const;
|
||||
int GetSelection(void);
|
||||
wxString GetString( const int n ) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetStringSelection(void) const;
|
||||
int Number(void) const;
|
||||
void SetColumns( const int n = 1 );
|
||||
void SetSelection( const int n );
|
||||
void SetColumns( int n = 1 );
|
||||
void SetSelection( int n );
|
||||
void SetStringSelection( const wxString &string );
|
||||
};
|
||||
|
||||
|
@ -44,38 +44,38 @@ class wxComboBox: public wxControl
|
||||
public:
|
||||
inline wxComboBox(void) {}
|
||||
|
||||
inline wxComboBox(wxWindow *parent, const wxWindowID id,
|
||||
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
||||
const wxString& value = wxEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxString& name = wxComboBoxNameStr)
|
||||
{
|
||||
Create(parent, id, value, pos, size, n, choices, style, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxString& value = wxEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxString& name = wxComboBoxNameStr);
|
||||
|
||||
// List functions
|
||||
void Clear(void);
|
||||
void Append( const wxString &item );
|
||||
void Append( const wxString &item, char* clientData );
|
||||
void Delete( const int n );
|
||||
void Delete( int n );
|
||||
int FindString( const wxString &item );
|
||||
char* GetClientData( const int n );
|
||||
void SetClientData( const int n, char * clientData );
|
||||
char* GetClientData( int n );
|
||||
void SetClientData( int n, char * clientData );
|
||||
int GetSelection(void) const;
|
||||
wxString GetString( const int n ) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetStringSelection(void) const;
|
||||
int Number(void) const;
|
||||
void SetSelection( const int n );
|
||||
void SetSelection( int n );
|
||||
|
||||
// Text field functions
|
||||
wxString GetValue(void) const ;
|
||||
@ -85,14 +85,14 @@ class wxComboBox: public wxControl
|
||||
void Copy(void);
|
||||
void Cut(void);
|
||||
void Paste(void);
|
||||
void SetInsertionPoint(const long pos);
|
||||
void SetInsertionPoint(long pos);
|
||||
void SetInsertionPointEnd(void);
|
||||
long GetInsertionPoint(void) const ;
|
||||
long GetLastPosition(void) const ;
|
||||
void Replace(const long from, const long to, const wxString& value);
|
||||
void Remove(const long from, const long to);
|
||||
void SetSelection(const long from, const long to);
|
||||
void SetEditable(const bool editable);
|
||||
void Replace(long from, long to, const wxString& value);
|
||||
void Remove(long from, long to);
|
||||
void SetSelection(long from, long to);
|
||||
void SetEditable(bool editable);
|
||||
|
||||
private:
|
||||
|
||||
|
@ -40,7 +40,7 @@ class wxControl: public wxWindow
|
||||
wxControl(void);
|
||||
wxControl( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxPanelNameStr );
|
||||
long style = 0, const wxString &name = wxPanelNameStr );
|
||||
virtual void Command( wxCommandEvent &event );
|
||||
virtual void SetLabel( const wxString &label );
|
||||
virtual wxString GetLabel(void) const;
|
||||
|
@ -39,7 +39,7 @@ class wxCursor: public wxObject
|
||||
public:
|
||||
|
||||
wxCursor(void);
|
||||
wxCursor( const int cursorId );
|
||||
wxCursor( int cursorId );
|
||||
wxCursor( const wxCursor &cursor );
|
||||
wxCursor( const wxCursor *cursor );
|
||||
~wxCursor(void);
|
||||
|
@ -53,10 +53,10 @@ class wxDialog: public wxWindow
|
||||
wxDialog(void);
|
||||
wxDialog( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
~wxDialog(void);
|
||||
void SetTitle(const wxString& title);
|
||||
wxString GetTitle(void) const;
|
||||
@ -69,7 +69,7 @@ class wxDialog: public wxWindow
|
||||
/*
|
||||
void OnCharHook(wxKeyEvent& event);
|
||||
*/
|
||||
virtual bool Show( const bool show );
|
||||
virtual bool Show( bool show );
|
||||
virtual int ShowModal(void);
|
||||
virtual void EndModal(int retCode);
|
||||
virtual bool IsModal(void) const { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
|
||||
|
@ -76,7 +76,7 @@ class wxDragSource: public wxObject
|
||||
|
||||
wxDragSource( wxWindow *win );
|
||||
~wxDragSource(void);
|
||||
void SetData( char *data, const long size );
|
||||
void SetData( char *data, long size );
|
||||
void Start( int x, int y );
|
||||
|
||||
public:
|
||||
|
@ -47,23 +47,23 @@ class wxFrame: public wxWindow
|
||||
public:
|
||||
|
||||
wxFrame(void);
|
||||
wxFrame( wxWindow *parent, const wxWindowID id, const wxString &title,
|
||||
wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxString &title,
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
~wxFrame(void);
|
||||
bool Destroy(void);
|
||||
void OnCloseWindow( wxCloseEvent& event );
|
||||
virtual bool Show( const bool show );
|
||||
virtual void Enable( const bool enable );
|
||||
virtual bool Show( bool show );
|
||||
virtual void Enable( bool enable );
|
||||
virtual void GetClientSize( int *width, int *height ) const;
|
||||
void OnSize( wxSizeEvent &event );
|
||||
void SetMenuBar( wxMenuBar *menuBar );
|
||||
virtual bool CreateStatusBar( const int number = 1 );
|
||||
virtual void SetStatusText( const wxString &text, const int number = 0 );
|
||||
virtual void SetStatusWidths( const int n, const int *width );
|
||||
virtual bool CreateStatusBar( int number = 1 );
|
||||
virtual void SetStatusText( const wxString &text, int number = 0 );
|
||||
virtual void SetStatusWidths( int n, int *width );
|
||||
wxStatusBar *GetStatusBar(void);
|
||||
wxMenuBar *GetMenuBar(void);
|
||||
void SetTitle( const wxString &title );
|
||||
|
@ -44,27 +44,27 @@ class wxGauge: public wxControl
|
||||
public:
|
||||
inline wxGauge(void) { m_rangeMax = 0; m_gaugePos = 0; m_useProgressBar = TRUE; }
|
||||
|
||||
inline wxGauge(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
inline wxGauge(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxString& name = wxGaugeNameStr)
|
||||
{
|
||||
Create(parent, id, range, pos, size, style, name);
|
||||
};
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxString& name = wxGaugeNameStr );
|
||||
|
||||
void SetShadowWidth( const int WXUNUSED(w) ) {};
|
||||
void SetBezelFace( const int WXUNUSED(w) ) {};
|
||||
void SetRange( const int r );
|
||||
void SetValue( const int pos );
|
||||
void SetShadowWidth( int WXUNUSED(w) ) {};
|
||||
void SetBezelFace( int WXUNUSED(w) ) {};
|
||||
void SetRange( int r );
|
||||
void SetValue( int pos );
|
||||
int GetShadowWidth(void) const { return 0; };
|
||||
int GetBezelFace(void) const { return 0; };
|
||||
int GetRange(void) const;
|
||||
|
@ -41,7 +41,7 @@ public:
|
||||
inline wxIcon(const wxIcon& icon) { Ref(icon); }
|
||||
inline wxIcon(const wxIcon* icon) { if (icon) Ref(*icon); }
|
||||
|
||||
wxIcon( char **bits, const int width = -1, const int height = -1 ) :
|
||||
wxIcon( char **bits, int width = -1, int height = -1 ) :
|
||||
wxBitmap( bits ) {};
|
||||
|
||||
inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
|
||||
|
@ -46,32 +46,32 @@ class wxListBox: public wxControl
|
||||
wxListBox(void);
|
||||
wxListBox( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
void Append( const wxString &item );
|
||||
void Append( const wxString &item, char *clientData );
|
||||
void Clear(void);
|
||||
void Delete( int n );
|
||||
void Deselect( int n );
|
||||
int FindString( const wxString &item ) const;
|
||||
char *GetClientData( const int n ) const;
|
||||
char *GetClientData( int n ) const;
|
||||
int GetSelection(void) const;
|
||||
int GetSelections( class wxArrayInt &) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetStringSelection(void) const;
|
||||
int Number(void);
|
||||
bool Selected( const int n );
|
||||
void Set( const int n, const wxString *choices );
|
||||
void SetClientData( const int n, char *clientData );
|
||||
bool Selected( int n );
|
||||
void Set( int n, const wxString *choices );
|
||||
void SetClientData( int n, char *clientData );
|
||||
void SetFirstItem( int n );
|
||||
void SetFirstItem( const wxString &item );
|
||||
void SetSelection( const int n, const bool select = TRUE );
|
||||
void SetString( const int n, const wxString &string );
|
||||
void SetStringSelection( const wxString &string, const bool select = TRUE );
|
||||
void SetSelection( int n, bool select = TRUE );
|
||||
void SetString( int n, const wxString &string );
|
||||
void SetStringSelection( const wxString &string, bool select = TRUE );
|
||||
|
||||
private:
|
||||
|
||||
|
@ -52,15 +52,15 @@ class wxMDIParentFrame: public wxFrame
|
||||
|
||||
wxMDIParentFrame(void);
|
||||
wxMDIParentFrame( wxWindow *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
const wxString& name = wxFrameNameStr );
|
||||
~wxMDIParentFrame(void);
|
||||
bool Create( wxWindow *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
const wxString& name = wxFrameNameStr );
|
||||
|
||||
void OnSize( wxSizeEvent& event );
|
||||
@ -101,20 +101,20 @@ class wxMDIChildFrame: public wxPanel
|
||||
|
||||
wxMDIChildFrame(void);
|
||||
wxMDIChildFrame( wxMDIParentFrame *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
~wxMDIChildFrame(void);
|
||||
bool Create( wxMDIParentFrame *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
void SetMenuBar( wxMenuBar *menu_bar );
|
||||
|
||||
// no status bars in wxGTK
|
||||
virtual bool CreateStatusBar( const int WXUNUSED(number) = 1 ) { return FALSE; };
|
||||
virtual void SetStatusText( const wxString &WXUNUSED(text), const int WXUNUSED(number) ) {};
|
||||
virtual void SetStatusWidths( const int WXUNUSED(n), const int *WXUNUSED(width) ) {};
|
||||
virtual bool CreateStatusBar( int WXUNUSED(number) = 1 ) { return FALSE; };
|
||||
virtual void SetStatusText( const wxString &WXUNUSED(text), int WXUNUSED(number) ) {};
|
||||
virtual void SetStatusWidths( int WXUNUSED(n), int *WXUNUSED(width) ) {};
|
||||
|
||||
virtual void Maximize(void) {};
|
||||
virtual void Restore(void) {};
|
||||
@ -136,9 +136,9 @@ class wxMDIClientWindow: public wxWindow
|
||||
public:
|
||||
|
||||
wxMDIClientWindow(void);
|
||||
wxMDIClientWindow( wxMDIParentFrame *parent, const long style = 0 );
|
||||
wxMDIClientWindow( wxMDIParentFrame *parent, long style = 0 );
|
||||
~wxMDIClientWindow(void);
|
||||
virtual bool CreateClient( wxMDIParentFrame *parent, const long style = wxVSCROLL | wxHSCROLL );
|
||||
virtual bool CreateClient( wxMDIParentFrame *parent, long style = wxVSCROLL | wxHSCROLL );
|
||||
void AddChild( wxWindow *child );
|
||||
};
|
||||
|
||||
|
@ -80,15 +80,15 @@ class wxMenu: public wxEvtHandler
|
||||
|
||||
wxMenu( const wxString &title = "" );
|
||||
void AppendSeparator(void);
|
||||
void Append( const int id, const wxString &item,
|
||||
const wxString &helpStr = "", const bool checkable = FALSE );
|
||||
void Append( const int id, const wxString &item,
|
||||
void Append( int id, const wxString &item,
|
||||
const wxString &helpStr = "", bool checkable = FALSE );
|
||||
void Append( int id, const wxString &item,
|
||||
wxMenu *subMenu, const wxString &helpStr = "" );
|
||||
int FindItem( const wxString itemString ) const;
|
||||
void Break(void) {};
|
||||
void Enable( const int id, const bool enable );
|
||||
bool Enabled( const int id ) const;
|
||||
void SetLabel( const int id, const wxString &label );
|
||||
void Enable( int id, bool enable );
|
||||
bool Enabled( int id ) const;
|
||||
void SetLabel( int id, const wxString &label );
|
||||
|
||||
public:
|
||||
|
||||
|
@ -62,17 +62,17 @@ public:
|
||||
wxNotebook();
|
||||
// the same arguments as for wxControl (@@@ any special styles?)
|
||||
wxNotebook(wxWindow *parent,
|
||||
const wxWindowID id,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxString& name = "notebook");
|
||||
// Create() function
|
||||
bool Create(wxWindow *parent,
|
||||
const wxWindowID id,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxString& name = "notebook");
|
||||
// dtor
|
||||
~wxNotebook();
|
||||
|
@ -38,7 +38,7 @@ class wxPalette: public wxGDIObject
|
||||
public:
|
||||
|
||||
wxPalette(void);
|
||||
wxPalette( const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue );
|
||||
wxPalette( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue );
|
||||
wxPalette( const wxPalette& palette );
|
||||
wxPalette( const wxPalette* palette );
|
||||
~wxPalette(void);
|
||||
@ -47,9 +47,9 @@ class wxPalette: public wxGDIObject
|
||||
bool operator != ( const wxPalette& palette );
|
||||
bool Ok(void) const;
|
||||
|
||||
bool Create( const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
|
||||
bool Create( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
|
||||
int GetPixel( const unsigned char red, const unsigned char green, const unsigned char blue ) const;
|
||||
bool GetRGB( const int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const;
|
||||
bool GetRGB( int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const;
|
||||
|
||||
// no data
|
||||
};
|
||||
|
@ -50,7 +50,7 @@ class wxPen: public wxGDIObject
|
||||
|
||||
void SetColour( const wxColour &colour );
|
||||
void SetColour( const wxString &colourName );
|
||||
void SetColour( const int red, const int green, const int blue );
|
||||
void SetColour( int red, int green, int blue );
|
||||
void SetCap( int capStyle );
|
||||
void SetJoin( int joinStyle );
|
||||
void SetStyle( int style );
|
||||
|
@ -46,34 +46,34 @@ class wxRadioBox: public wxControl
|
||||
public:
|
||||
|
||||
wxRadioBox(void);
|
||||
wxRadioBox( wxWindow *parent, const wxWindowID id, const wxString& title,
|
||||
wxRadioBox( wxWindow *parent, wxWindowID id, const wxString& title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const int majorDim = 0, const long style = wxRA_HORIZONTAL,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
int majorDim = 0, long style = wxRA_HORIZONTAL,
|
||||
const wxString &name = wxRadioBoxNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxString& title,
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const int majorDim = 0, const long style = wxRA_HORIZONTAL,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
int majorDim = 0, long style = wxRA_HORIZONTAL,
|
||||
const wxString &name = wxRadioBoxNameStr );
|
||||
int FindString( const wxString& s) const;
|
||||
void SetSelection( const int n );
|
||||
void SetSelection( int n );
|
||||
int GetSelection(void) const;
|
||||
wxString GetString( const int n ) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetLabel(void) const;
|
||||
void SetLabel( const wxString& label );
|
||||
void SetLabel( const int item, const wxString& label );
|
||||
void SetLabel( const int item, wxBitmap *bitmap );
|
||||
wxString GetLabel( const int item ) const;
|
||||
bool Show( const bool show );
|
||||
void Enable( const bool enable );
|
||||
void Enable( const int item, const bool enable );
|
||||
void Show( const int item, const bool show );
|
||||
void SetLabel( int item, const wxString& label );
|
||||
void SetLabel( int item, wxBitmap *bitmap );
|
||||
wxString GetLabel( int item ) const;
|
||||
bool Show( bool show );
|
||||
void Enable( bool enable );
|
||||
void Enable( int item, bool enable );
|
||||
void Show( int item, bool show );
|
||||
virtual wxString GetStringSelection(void) const;
|
||||
virtual bool SetStringSelection( const wxString& s );
|
||||
virtual int Number(void) const;
|
||||
int GetNumberOfRowsOrCols(void) const;
|
||||
void SetNumberOfRowsOrCols( const int n );
|
||||
void SetNumberOfRowsOrCols( int n );
|
||||
|
||||
private:
|
||||
|
||||
|
@ -43,34 +43,34 @@ class wxScrollBar: public wxControl
|
||||
public:
|
||||
|
||||
wxScrollBar(void) { m_adjust = NULL; m_oldPos = 0.0; };
|
||||
wxScrollBar(wxWindow *parent, const wxWindowID id,
|
||||
wxScrollBar(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSB_HORIZONTAL,
|
||||
long style = wxSB_HORIZONTAL,
|
||||
const wxString& name = wxScrollBarNameStr );
|
||||
~wxScrollBar(void);
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSB_HORIZONTAL,
|
||||
long style = wxSB_HORIZONTAL,
|
||||
const wxString& name = wxScrollBarNameStr);
|
||||
int GetPosition(void) const;
|
||||
int GetThumbSize() const;
|
||||
int GetPageSize() const;
|
||||
int GetRange() const;
|
||||
virtual void SetPosition( const int viewStart );
|
||||
virtual void SetScrollbar( const int position, const int thumbSize, const int range, const int pageSize,
|
||||
const bool refresh = TRUE );
|
||||
virtual void SetPosition( int viewStart );
|
||||
virtual void SetScrollbar( int position, int thumbSize, int range, int pageSize,
|
||||
bool refresh = TRUE );
|
||||
|
||||
// Backward compatibility
|
||||
int GetValue(void) const;
|
||||
void SetValue( const int viewStart );
|
||||
void SetValue( int viewStart );
|
||||
void GetValues( int *viewStart, int *viewLength, int *objectLength, int *pageLength) const;
|
||||
int GetViewLength() const;
|
||||
int GetObjectLength() const;
|
||||
void SetPageSize( const int pageLength );
|
||||
void SetObjectLength( const int objectLength );
|
||||
void SetViewLength( const int viewLength );
|
||||
void SetPageSize( int pageLength );
|
||||
void SetObjectLength( int objectLength );
|
||||
void SetViewLength( int viewLength );
|
||||
|
||||
public:
|
||||
|
||||
|
@ -43,43 +43,43 @@ class wxSlider: public wxControl
|
||||
|
||||
public:
|
||||
wxSlider(void);
|
||||
wxSlider( wxWindow *parent, const wxWindowID id,
|
||||
const int value, const int minValue, const int maxValue,
|
||||
wxSlider( wxWindow *parent, wxWindowID id,
|
||||
int value, int minValue, int maxValue,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSL_HORIZONTAL,
|
||||
long style = wxSL_HORIZONTAL,
|
||||
/* const wxValidator& validator = wxDefaultValidator, */
|
||||
const wxString& name = wxSliderNameStr);
|
||||
~wxSlider(void);
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
const int value, const int minValue, const int maxValue,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
int value, int minValue, int maxValue,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSL_HORIZONTAL,
|
||||
long style = wxSL_HORIZONTAL,
|
||||
/* const wxValidator& validator = wxDefaultValidator, */
|
||||
const wxString& name = wxSliderNameStr);
|
||||
virtual int GetValue(void) const;
|
||||
virtual void SetValue( const int );
|
||||
virtual void SetValue( int );
|
||||
void GetSize( int *x, int *y ) const;
|
||||
void SetSize( const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO );
|
||||
void SetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO );
|
||||
void GetPosition( int *x, int *y ) const;
|
||||
void SetRange( const int minValue, const int maxValue );
|
||||
void SetRange( int minValue, int maxValue );
|
||||
int GetMin(void) const;
|
||||
int GetMax(void) const;
|
||||
void SetTickFreq( const int n, const int pos );
|
||||
void SetTickFreq( int n, int pos );
|
||||
int GetTickFreq(void) const;
|
||||
void SetPageSize( const int pageSize );
|
||||
void SetPageSize( int pageSize );
|
||||
int GetPageSize(void) const;
|
||||
void ClearSel(void);
|
||||
void ClearTicks(void);
|
||||
void SetLineSize( const int lineSize );
|
||||
void SetLineSize( int lineSize );
|
||||
int GetLineSize(void) const;
|
||||
int GetSelEnd(void) const;
|
||||
int GetSelStart(void) const;
|
||||
void SetSelection( const int minPos, const int maxPos );
|
||||
void SetThumbLength( const int len );
|
||||
void SetSelection( int minPos, int maxPos );
|
||||
void SetThumbLength( int len );
|
||||
int GetThumbLength(void) const;
|
||||
void SetTick( const int tickPos );
|
||||
void SetTick( int tickPos );
|
||||
|
||||
public:
|
||||
|
||||
|
@ -43,12 +43,12 @@ class wxStaticBitmap: public wxControl
|
||||
public:
|
||||
|
||||
wxStaticBitmap(void);
|
||||
wxStaticBitmap( wxWindow *parent, const wxWindowID id, const wxBitmap& label,
|
||||
wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap& label,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxStaticBitmapNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxBitmap& label,
|
||||
long style = 0, const wxString& name = wxStaticBitmapNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxBitmap& label,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxStaticBitmapNameStr);
|
||||
long style = 0, const wxString& name = wxStaticBitmapNameStr);
|
||||
virtual void SetBitmap( const wxBitmap& bitmap );
|
||||
wxBitmap& GetBitmap(void) const { return (wxBitmap&)m_bitmap; }
|
||||
|
||||
|
@ -46,10 +46,10 @@ class wxStaticBox: public wxControl
|
||||
wxStaticBox(void);
|
||||
wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
};
|
||||
|
||||
#endif // __GTKSTATICBOXH__
|
||||
|
@ -46,10 +46,10 @@ class wxStaticText: public wxControl
|
||||
wxStaticText(void);
|
||||
wxStaticText( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
wxString GetLabel(void) const;
|
||||
void SetLabel( const wxString &label );
|
||||
};
|
||||
|
@ -50,9 +50,9 @@ class wxToolBarTool: public wxObject
|
||||
public:
|
||||
|
||||
wxToolBarTool(void) {};
|
||||
wxToolBarTool( wxToolBarGTK *owner, const int theIndex = 0,
|
||||
wxToolBarTool( wxToolBarGTK *owner, int theIndex = 0,
|
||||
const wxBitmap& bitmap1 = wxNullBitmap, const wxBitmap& bitmap2 = wxNullBitmap,
|
||||
const bool toggle = FALSE, wxObject *clientData = NULL,
|
||||
bool toggle = FALSE, wxObject *clientData = NULL,
|
||||
const wxString& shortHelpString = "", const wxString& longHelpString = "");
|
||||
~wxToolBarTool(void);
|
||||
|
||||
@ -84,14 +84,14 @@ class wxToolBarGTK: public wxControl
|
||||
public:
|
||||
|
||||
wxToolBarGTK(void);
|
||||
wxToolBarGTK( wxWindow *parent, const wxWindowID id,
|
||||
wxToolBarGTK( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxToolBarNameStr );
|
||||
long style = 0, const wxString& name = wxToolBarNameStr );
|
||||
~wxToolBarGTK(void);
|
||||
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxToolBarNameStr);
|
||||
long style = 0, const wxString& name = wxToolBarNameStr);
|
||||
|
||||
// Only allow toggle if returns TRUE. Call when left button up.
|
||||
virtual bool OnLeftClick(int toolIndex, bool toggleDown);
|
||||
@ -106,25 +106,25 @@ class wxToolBarGTK: public wxControl
|
||||
// If pushedBitmap is NULL, a reversed version of bitmap is
|
||||
// created and used as the pushed/toggled image.
|
||||
// If toggle is TRUE, the button toggles between the two states.
|
||||
virtual wxToolBarTool *AddTool( const int toolIndex, const wxBitmap& bitmap,
|
||||
const wxBitmap& pushedBitmap = wxNullBitmap, const bool toggle = FALSE,
|
||||
const float xPos = -1, const float yPos = -1, wxObject *clientData = NULL,
|
||||
virtual wxToolBarTool *AddTool( int toolIndex, const wxBitmap& bitmap,
|
||||
const wxBitmap& pushedBitmap = wxNullBitmap, bool toggle = FALSE,
|
||||
float xPos = -1, float yPos = -1, wxObject *clientData = NULL,
|
||||
const wxString& helpString1 = "", const wxString& helpString2 = "");
|
||||
virtual void AddSeparator(void);
|
||||
virtual void ClearTools(void);
|
||||
|
||||
virtual void EnableTool(const int toolIndex, const bool enable);
|
||||
virtual void ToggleTool(const int toolIndex, const bool toggle); // toggle is TRUE if toggled on
|
||||
virtual void SetToggle(const int toolIndex, const bool toggle); // Set this to be togglable (or not)
|
||||
virtual wxObject *GetToolClientData(const int index) const;
|
||||
virtual void EnableTool(int toolIndex, bool enable);
|
||||
virtual void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on
|
||||
virtual void SetToggle(int toolIndex, bool toggle); // Set this to be togglable (or not)
|
||||
virtual wxObject *GetToolClientData(int index) const;
|
||||
|
||||
virtual bool GetToolState(const int toolIndex) const;
|
||||
virtual bool GetToolEnabled(const int toolIndex) const;
|
||||
virtual bool GetToolState(int toolIndex) const;
|
||||
virtual bool GetToolEnabled(int toolIndex) const;
|
||||
|
||||
virtual void SetMargins(const int x, const int y);
|
||||
virtual void SetMargins(int x, int y);
|
||||
void SetMargins(const wxSize& size) { SetMargins(size.x, size.y); };
|
||||
virtual void SetToolPacking(const int packing);
|
||||
virtual void SetToolSeparation(const int separation);
|
||||
virtual void SetToolPacking(int packing);
|
||||
virtual void SetToolSeparation(int separation);
|
||||
|
||||
public:
|
||||
|
||||
|
@ -50,12 +50,12 @@ class wxTextCtrl: public wxControl, public streambuf
|
||||
public:
|
||||
|
||||
wxTextCtrl(void);
|
||||
wxTextCtrl( wxWindow *parent, const wxWindowID id, const wxString &value = "",
|
||||
wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value = "",
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxString &value = "",
|
||||
int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &value = "",
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
wxString GetValue(void) const;
|
||||
void SetValue( const wxString &value );
|
||||
void WriteText( const wxString &text );
|
||||
@ -65,21 +65,21 @@ class wxTextCtrl: public wxControl, public streambuf
|
||||
bool IsModified(void);
|
||||
void DiscardEdits(void);
|
||||
/*
|
||||
wxString GetLineText( const long lineNo ) const;
|
||||
wxString GetLineText( long lineNo ) const;
|
||||
void OnDropFiles( wxDropFilesEvent &event );
|
||||
long PositionToXY( const long pos, long *x, long *y ) const;
|
||||
long XYToPosition( const long x, const long y );
|
||||
long PositionToXY( long pos, long *x, long *y ) const;
|
||||
long XYToPosition( long x, long y );
|
||||
int GetNumberOfLines(void);
|
||||
*/
|
||||
virtual void SetInsertionPoint( const long pos );
|
||||
virtual void SetInsertionPoint( long pos );
|
||||
virtual void SetInsertionPointEnd(void);
|
||||
virtual void SetEditable( const bool editable );
|
||||
virtual void SetSelection( const long from, const long to );
|
||||
void ShowPosition( const long pos );
|
||||
virtual void SetEditable( bool editable );
|
||||
virtual void SetSelection( long from, long to );
|
||||
void ShowPosition( long pos );
|
||||
virtual long GetInsertionPoint(void) const;
|
||||
virtual long GetLastPosition(void) const;
|
||||
virtual void Remove( const long from, const long to );
|
||||
virtual void Replace( const long from, const long to, const wxString &value );
|
||||
virtual void Remove( long from, long to );
|
||||
virtual void Replace( long from, long to, const wxString &value );
|
||||
void Cut(void);
|
||||
void Copy(void);
|
||||
void Paste(void);
|
||||
@ -92,10 +92,10 @@ class wxTextCtrl: public wxControl, public streambuf
|
||||
int underflow(void);
|
||||
|
||||
wxTextCtrl& operator<<(const wxString& s);
|
||||
wxTextCtrl& operator<<(const int i);
|
||||
wxTextCtrl& operator<<(const long i);
|
||||
wxTextCtrl& operator<<(const float f);
|
||||
wxTextCtrl& operator<<(const double d);
|
||||
wxTextCtrl& operator<<(int i);
|
||||
wxTextCtrl& operator<<(long i);
|
||||
wxTextCtrl& operator<<(float f);
|
||||
wxTextCtrl& operator<<(double d);
|
||||
wxTextCtrl& operator<<(const char c);
|
||||
|
||||
public:
|
||||
|
@ -63,35 +63,35 @@ class wxWindow: public wxEvtHandler
|
||||
public:
|
||||
|
||||
wxWindow(void);
|
||||
wxWindow( wxWindow *parent, const wxWindowID id,
|
||||
wxWindow( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxPanelNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
long style = 0, const wxString &name = wxPanelNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxPanelNameStr );
|
||||
long style = 0, const wxString &name = wxPanelNameStr );
|
||||
virtual ~wxWindow(void);
|
||||
bool Close( const bool force = FALSE );
|
||||
bool Close( bool force = FALSE );
|
||||
virtual bool Destroy(void);
|
||||
virtual bool DestroyChildren(void);
|
||||
|
||||
virtual void PrepareDC( wxDC &dc );
|
||||
|
||||
virtual void SetSize( const int x, const int y, const int width, const int height,
|
||||
const int sizeFlags = wxSIZE_AUTO );
|
||||
virtual void SetSize( const int width, const int height );
|
||||
virtual void Move( const int x, const int y );
|
||||
virtual void SetSize( int x, int y, int width, int height,
|
||||
int sizeFlags = wxSIZE_AUTO );
|
||||
virtual void SetSize( int width, int height );
|
||||
virtual void Move( int x, int y );
|
||||
virtual void GetSize( int *width, int *height ) const;
|
||||
virtual void SetClientSize( int const width, int const height );
|
||||
virtual void GetClientSize( int *width, int *height ) const;
|
||||
virtual void GetPosition( int *x, int *y ) const;
|
||||
virtual void Centre( const int direction = wxHORIZONTAL );
|
||||
virtual void Centre( int direction = wxHORIZONTAL );
|
||||
virtual void Fit(void);
|
||||
|
||||
void OnSize( wxSizeEvent &event );
|
||||
|
||||
virtual bool Show( const bool show );
|
||||
virtual void Enable( const bool enable );
|
||||
virtual void MakeModal( const bool modal );
|
||||
virtual bool Show( bool show );
|
||||
virtual void Enable( bool enable );
|
||||
virtual void MakeModal( bool modal );
|
||||
virtual bool IsEnabled(void) const { return m_isEnabled; };
|
||||
virtual void SetFocus(void);
|
||||
virtual bool OnClose(void);
|
||||
@ -116,10 +116,10 @@ class wxWindow: public wxEvtHandler
|
||||
|
||||
void SetCursor( const wxCursor &cursor );
|
||||
|
||||
virtual void Refresh( const bool eraseBackground = TRUE, const wxRect *rect = NULL );
|
||||
virtual void Refresh( bool eraseBackground = TRUE, const wxRect *rect = NULL );
|
||||
virtual void Clear(void);
|
||||
virtual bool IsExposed( const long x, const long y );
|
||||
virtual bool IsExposed( const long x, const long y, const long width, const long height );
|
||||
virtual bool IsExposed( long x, long y );
|
||||
virtual bool IsExposed( long x, long y, long width, long height );
|
||||
|
||||
virtual wxColour GetBackgroundColour(void) const;
|
||||
virtual void SetBackgroundColour( const wxColour &colour );
|
||||
@ -154,7 +154,7 @@ class wxWindow: public wxEvtHandler
|
||||
|
||||
virtual bool IsShown(void);
|
||||
virtual bool IsRetained(void);
|
||||
virtual wxWindow *FindWindow( const long id );
|
||||
virtual wxWindow *FindWindow( long id );
|
||||
virtual wxWindow *FindWindow( const wxString& name );
|
||||
void AllowDoubleClick( bool WXUNUSED(allow) ) {};
|
||||
void SetDoubleClick( bool WXUNUSED(allow) ) {};
|
||||
@ -170,18 +170,18 @@ class wxWindow: public wxEvtHandler
|
||||
virtual void SetDropTarget( wxDropTarget *dropTarget );
|
||||
virtual wxDropTarget *GetDropTarget() const;
|
||||
|
||||
virtual void SetScrollbar( const int orient, const int pos, const int thumbVisible,
|
||||
const int range, const bool refresh = TRUE );
|
||||
virtual void SetScrollPos( const int orient, const int pos, const bool refresh = TRUE );
|
||||
virtual int GetScrollPos( const int orient ) const;
|
||||
virtual int GetScrollThumb( const int orient ) const;
|
||||
virtual int GetScrollRange( const int orient ) const;
|
||||
virtual void ScrollWindow( const int dx, const int dy, const wxRect* rect = NULL );
|
||||
virtual void SetScrollbar( int orient, int pos, int thumbVisible,
|
||||
int range, bool refresh = TRUE );
|
||||
virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
|
||||
virtual int GetScrollPos( int orient ) const;
|
||||
virtual int GetScrollThumb( int orient ) const;
|
||||
virtual int GetScrollRange( int orient ) const;
|
||||
virtual void ScrollWindow( int dx, int dy, const wxRect* rect = NULL );
|
||||
|
||||
public: // cannot get private going yet
|
||||
|
||||
void PreCreation( wxWindow *parent, const wxWindowID id, const wxPoint &pos,
|
||||
const wxSize &size, const long style, const wxString &name );
|
||||
void PreCreation( wxWindow *parent, wxWindowID id, const wxPoint &pos,
|
||||
const wxSize &size, long style, const wxString &name );
|
||||
void PostCreation(void);
|
||||
bool HasVMT(void);
|
||||
virtual void ImplementSetSize(void);
|
||||
@ -230,7 +230,7 @@ class wxWindow: public wxEvtHandler
|
||||
|
||||
wxLayoutConstraints *GetConstraints(void) const;
|
||||
void SetConstraints( wxLayoutConstraints *constraints );
|
||||
void SetAutoLayout( const bool autoLayout );
|
||||
void SetAutoLayout( bool autoLayout );
|
||||
bool GetAutoLayout(void) const;
|
||||
bool Layout(void);
|
||||
void SetSizer( wxSizer *sizer );
|
||||
@ -243,15 +243,15 @@ class wxWindow: public wxEvtHandler
|
||||
void RemoveConstraintReference(wxWindow *otherWin);
|
||||
void DeleteRelatedConstraints(void);
|
||||
virtual void ResetConstraints(void);
|
||||
virtual void SetConstraintSizes(const bool recurse = TRUE);
|
||||
virtual void SetConstraintSizes(bool recurse = TRUE);
|
||||
virtual bool LayoutPhase1(int *noChanges);
|
||||
virtual bool LayoutPhase2(int *noChanges);
|
||||
virtual bool DoPhase(const int);
|
||||
virtual bool DoPhase(int);
|
||||
virtual void TransformSizerToActual(int *x, int *y) const ;
|
||||
virtual void SizerSetSize(const int x, const int y, const int w, const int h);
|
||||
virtual void SizerMove(const int x, const int y);
|
||||
virtual void SetSizeConstraint(const int x, const int y, const int w, const int h);
|
||||
virtual void MoveConstraint(const int x, const int y);
|
||||
virtual void SizerSetSize(int x, int y, int w, int h);
|
||||
virtual void SizerMove(int x, int y);
|
||||
virtual void SetSizeConstraint(int x, int y, int w, int h);
|
||||
virtual void MoveConstraint(int x, int y);
|
||||
virtual void GetSizeConstraint(int *w, int *h) const ;
|
||||
virtual void GetClientSizeConstraint(int *w, int *h) const ;
|
||||
virtual void GetPositionConstraint(int *x, int *y) const ;
|
||||
|
@ -47,7 +47,7 @@ class wxMask: public wxObject
|
||||
|
||||
wxMask(void);
|
||||
wxMask( const wxBitmap& bitmap, const wxColour& colour );
|
||||
wxMask( const wxBitmap& bitmap, const int paletteIndex );
|
||||
wxMask( const wxBitmap& bitmap, int paletteIndex );
|
||||
wxMask( const wxBitmap& bitmap );
|
||||
~wxMask(void);
|
||||
|
||||
@ -80,12 +80,12 @@ class wxBitmap: public wxObject
|
||||
public:
|
||||
|
||||
wxBitmap(void);
|
||||
wxBitmap( const int width, const int height, const int depth = -1 );
|
||||
wxBitmap( const char bits[], const int width, const int height, const int depth = 1 );
|
||||
wxBitmap( int width, int height, int depth = -1 );
|
||||
wxBitmap( const char bits[], int width, int height, int depth = 1 );
|
||||
wxBitmap( char **bits );
|
||||
wxBitmap( const wxBitmap& bmp );
|
||||
wxBitmap( const wxBitmap* bmp );
|
||||
wxBitmap( const wxString &filename, const int type );
|
||||
wxBitmap( const wxString &filename, int type );
|
||||
~wxBitmap(void);
|
||||
wxBitmap& operator = ( const wxBitmap& bmp );
|
||||
bool operator == ( const wxBitmap& bmp );
|
||||
@ -95,15 +95,15 @@ class wxBitmap: public wxObject
|
||||
int GetHeight(void) const;
|
||||
int GetWidth(void) const;
|
||||
int GetDepth(void) const;
|
||||
void SetHeight( const int height );
|
||||
void SetWidth( const int width );
|
||||
void SetDepth( const int depth );
|
||||
void SetHeight( int height );
|
||||
void SetWidth( int width );
|
||||
void SetDepth( int depth );
|
||||
|
||||
wxMask *GetMask(void) const;
|
||||
void SetMask( wxMask *mask );
|
||||
|
||||
bool SaveFile( const wxString &name, const int type, wxPalette *palette = NULL );
|
||||
bool LoadFile( const wxString &name, const int type );
|
||||
bool SaveFile( const wxString &name, int type, wxPalette *palette = NULL );
|
||||
bool LoadFile( const wxString &name, int type );
|
||||
|
||||
wxPalette *GetPalette(void) const;
|
||||
wxPalette *GetColourMap(void) const
|
||||
|
@ -46,10 +46,10 @@ class wxBitmapButton: public wxControl
|
||||
wxBitmapButton(void);
|
||||
wxBitmapButton( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
void SetDefault(void);
|
||||
void SetLabel( const wxString &label );
|
||||
wxString GetLabel(void) const;
|
||||
|
@ -39,8 +39,8 @@ class wxBrush: public wxGDIObject
|
||||
public:
|
||||
|
||||
wxBrush(void);
|
||||
wxBrush( const wxColour &colour, const int style );
|
||||
wxBrush( const wxString &colourName, const int style );
|
||||
wxBrush( const wxColour &colour, int style );
|
||||
wxBrush( const wxString &colourName, int style );
|
||||
wxBrush( const wxBitmap &stippleBitmap );
|
||||
wxBrush( const wxBrush &brush );
|
||||
wxBrush( const wxBrush *brush );
|
||||
|
@ -46,10 +46,10 @@ class wxButton: public wxControl
|
||||
wxButton(void);
|
||||
wxButton( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxButtonNameStr );
|
||||
long style = 0, const wxString &name = wxButtonNameStr );
|
||||
void SetDefault(void);
|
||||
void SetLabel( const wxString &label );
|
||||
wxString GetLabel(void) const;
|
||||
|
@ -46,11 +46,11 @@ class wxCheckBox: public wxControl
|
||||
wxCheckBox(void);
|
||||
wxCheckBox( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
void SetValue( const bool state );
|
||||
long style = 0, const wxString &name = wxCheckBoxNameStr );
|
||||
void SetValue( bool state );
|
||||
bool GetValue(void) const;
|
||||
};
|
||||
|
||||
|
@ -44,24 +44,24 @@ class wxChoice: public wxControl
|
||||
public:
|
||||
|
||||
wxChoice(void);
|
||||
wxChoice( wxWindow *parent, const wxWindowID id,
|
||||
wxChoice( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxChoiceNameStr );
|
||||
void Append( const wxString &item );
|
||||
void Clear(void);
|
||||
int FindString( const wxString &string ) const;
|
||||
int GetColumns(void) const;
|
||||
int GetSelection(void);
|
||||
wxString GetString( const int n ) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetStringSelection(void) const;
|
||||
int Number(void) const;
|
||||
void SetColumns( const int n = 1 );
|
||||
void SetSelection( const int n );
|
||||
void SetColumns( int n = 1 );
|
||||
void SetSelection( int n );
|
||||
void SetStringSelection( const wxString &string );
|
||||
};
|
||||
|
||||
|
@ -44,38 +44,38 @@ class wxComboBox: public wxControl
|
||||
public:
|
||||
inline wxComboBox(void) {}
|
||||
|
||||
inline wxComboBox(wxWindow *parent, const wxWindowID id,
|
||||
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
||||
const wxString& value = wxEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxString& name = wxComboBoxNameStr)
|
||||
{
|
||||
Create(parent, id, value, pos, size, n, choices, style, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxString& value = wxEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxString& name = wxComboBoxNameStr);
|
||||
|
||||
// List functions
|
||||
void Clear(void);
|
||||
void Append( const wxString &item );
|
||||
void Append( const wxString &item, char* clientData );
|
||||
void Delete( const int n );
|
||||
void Delete( int n );
|
||||
int FindString( const wxString &item );
|
||||
char* GetClientData( const int n );
|
||||
void SetClientData( const int n, char * clientData );
|
||||
char* GetClientData( int n );
|
||||
void SetClientData( int n, char * clientData );
|
||||
int GetSelection(void) const;
|
||||
wxString GetString( const int n ) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetStringSelection(void) const;
|
||||
int Number(void) const;
|
||||
void SetSelection( const int n );
|
||||
void SetSelection( int n );
|
||||
|
||||
// Text field functions
|
||||
wxString GetValue(void) const ;
|
||||
@ -85,14 +85,14 @@ class wxComboBox: public wxControl
|
||||
void Copy(void);
|
||||
void Cut(void);
|
||||
void Paste(void);
|
||||
void SetInsertionPoint(const long pos);
|
||||
void SetInsertionPoint(long pos);
|
||||
void SetInsertionPointEnd(void);
|
||||
long GetInsertionPoint(void) const ;
|
||||
long GetLastPosition(void) const ;
|
||||
void Replace(const long from, const long to, const wxString& value);
|
||||
void Remove(const long from, const long to);
|
||||
void SetSelection(const long from, const long to);
|
||||
void SetEditable(const bool editable);
|
||||
void Replace(long from, long to, const wxString& value);
|
||||
void Remove(long from, long to);
|
||||
void SetSelection(long from, long to);
|
||||
void SetEditable(bool editable);
|
||||
|
||||
private:
|
||||
|
||||
|
@ -40,7 +40,7 @@ class wxControl: public wxWindow
|
||||
wxControl(void);
|
||||
wxControl( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxPanelNameStr );
|
||||
long style = 0, const wxString &name = wxPanelNameStr );
|
||||
virtual void Command( wxCommandEvent &event );
|
||||
virtual void SetLabel( const wxString &label );
|
||||
virtual wxString GetLabel(void) const;
|
||||
|
@ -39,7 +39,7 @@ class wxCursor: public wxObject
|
||||
public:
|
||||
|
||||
wxCursor(void);
|
||||
wxCursor( const int cursorId );
|
||||
wxCursor( int cursorId );
|
||||
wxCursor( const wxCursor &cursor );
|
||||
wxCursor( const wxCursor *cursor );
|
||||
~wxCursor(void);
|
||||
|
@ -53,10 +53,10 @@ class wxDialog: public wxWindow
|
||||
wxDialog(void);
|
||||
wxDialog( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr );
|
||||
~wxDialog(void);
|
||||
void SetTitle(const wxString& title);
|
||||
wxString GetTitle(void) const;
|
||||
@ -69,7 +69,7 @@ class wxDialog: public wxWindow
|
||||
/*
|
||||
void OnCharHook(wxKeyEvent& event);
|
||||
*/
|
||||
virtual bool Show( const bool show );
|
||||
virtual bool Show( bool show );
|
||||
virtual int ShowModal(void);
|
||||
virtual void EndModal(int retCode);
|
||||
virtual bool IsModal(void) const { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
|
||||
|
@ -76,7 +76,7 @@ class wxDragSource: public wxObject
|
||||
|
||||
wxDragSource( wxWindow *win );
|
||||
~wxDragSource(void);
|
||||
void SetData( char *data, const long size );
|
||||
void SetData( char *data, long size );
|
||||
void Start( int x, int y );
|
||||
|
||||
public:
|
||||
|
@ -47,23 +47,23 @@ class wxFrame: public wxWindow
|
||||
public:
|
||||
|
||||
wxFrame(void);
|
||||
wxFrame( wxWindow *parent, const wxWindowID id, const wxString &title,
|
||||
wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxString &title,
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
|
||||
~wxFrame(void);
|
||||
bool Destroy(void);
|
||||
void OnCloseWindow( wxCloseEvent& event );
|
||||
virtual bool Show( const bool show );
|
||||
virtual void Enable( const bool enable );
|
||||
virtual bool Show( bool show );
|
||||
virtual void Enable( bool enable );
|
||||
virtual void GetClientSize( int *width, int *height ) const;
|
||||
void OnSize( wxSizeEvent &event );
|
||||
void SetMenuBar( wxMenuBar *menuBar );
|
||||
virtual bool CreateStatusBar( const int number = 1 );
|
||||
virtual void SetStatusText( const wxString &text, const int number = 0 );
|
||||
virtual void SetStatusWidths( const int n, const int *width );
|
||||
virtual bool CreateStatusBar( int number = 1 );
|
||||
virtual void SetStatusText( const wxString &text, int number = 0 );
|
||||
virtual void SetStatusWidths( int n, int *width );
|
||||
wxStatusBar *GetStatusBar(void);
|
||||
wxMenuBar *GetMenuBar(void);
|
||||
void SetTitle( const wxString &title );
|
||||
|
@ -44,27 +44,27 @@ class wxGauge: public wxControl
|
||||
public:
|
||||
inline wxGauge(void) { m_rangeMax = 0; m_gaugePos = 0; m_useProgressBar = TRUE; }
|
||||
|
||||
inline wxGauge(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
inline wxGauge(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxString& name = wxGaugeNameStr)
|
||||
{
|
||||
Create(parent, id, range, pos, size, style, name);
|
||||
};
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxString& name = wxGaugeNameStr );
|
||||
|
||||
void SetShadowWidth( const int WXUNUSED(w) ) {};
|
||||
void SetBezelFace( const int WXUNUSED(w) ) {};
|
||||
void SetRange( const int r );
|
||||
void SetValue( const int pos );
|
||||
void SetShadowWidth( int WXUNUSED(w) ) {};
|
||||
void SetBezelFace( int WXUNUSED(w) ) {};
|
||||
void SetRange( int r );
|
||||
void SetValue( int pos );
|
||||
int GetShadowWidth(void) const { return 0; };
|
||||
int GetBezelFace(void) const { return 0; };
|
||||
int GetRange(void) const;
|
||||
|
@ -41,7 +41,7 @@ public:
|
||||
inline wxIcon(const wxIcon& icon) { Ref(icon); }
|
||||
inline wxIcon(const wxIcon* icon) { if (icon) Ref(*icon); }
|
||||
|
||||
wxIcon( char **bits, const int width = -1, const int height = -1 ) :
|
||||
wxIcon( char **bits, int width = -1, int height = -1 ) :
|
||||
wxBitmap( bits ) {};
|
||||
|
||||
inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
|
||||
|
@ -46,32 +46,32 @@ class wxListBox: public wxControl
|
||||
wxListBox(void);
|
||||
wxListBox( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0, const wxString &name = wxListBoxNameStr );
|
||||
void Append( const wxString &item );
|
||||
void Append( const wxString &item, char *clientData );
|
||||
void Clear(void);
|
||||
void Delete( int n );
|
||||
void Deselect( int n );
|
||||
int FindString( const wxString &item ) const;
|
||||
char *GetClientData( const int n ) const;
|
||||
char *GetClientData( int n ) const;
|
||||
int GetSelection(void) const;
|
||||
int GetSelections( class wxArrayInt &) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetStringSelection(void) const;
|
||||
int Number(void);
|
||||
bool Selected( const int n );
|
||||
void Set( const int n, const wxString *choices );
|
||||
void SetClientData( const int n, char *clientData );
|
||||
bool Selected( int n );
|
||||
void Set( int n, const wxString *choices );
|
||||
void SetClientData( int n, char *clientData );
|
||||
void SetFirstItem( int n );
|
||||
void SetFirstItem( const wxString &item );
|
||||
void SetSelection( const int n, const bool select = TRUE );
|
||||
void SetString( const int n, const wxString &string );
|
||||
void SetStringSelection( const wxString &string, const bool select = TRUE );
|
||||
void SetSelection( int n, bool select = TRUE );
|
||||
void SetString( int n, const wxString &string );
|
||||
void SetStringSelection( const wxString &string, bool select = TRUE );
|
||||
|
||||
private:
|
||||
|
||||
|
@ -52,15 +52,15 @@ class wxMDIParentFrame: public wxFrame
|
||||
|
||||
wxMDIParentFrame(void);
|
||||
wxMDIParentFrame( wxWindow *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
const wxString& name = wxFrameNameStr );
|
||||
~wxMDIParentFrame(void);
|
||||
bool Create( wxWindow *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
|
||||
const wxString& name = wxFrameNameStr );
|
||||
|
||||
void OnSize( wxSizeEvent& event );
|
||||
@ -101,20 +101,20 @@ class wxMDIChildFrame: public wxPanel
|
||||
|
||||
wxMDIChildFrame(void);
|
||||
wxMDIChildFrame( wxMDIParentFrame *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
~wxMDIChildFrame(void);
|
||||
bool Create( wxMDIParentFrame *parent,
|
||||
const wxWindowID id, const wxString& title,
|
||||
wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr );
|
||||
void SetMenuBar( wxMenuBar *menu_bar );
|
||||
|
||||
// no status bars in wxGTK
|
||||
virtual bool CreateStatusBar( const int WXUNUSED(number) = 1 ) { return FALSE; };
|
||||
virtual void SetStatusText( const wxString &WXUNUSED(text), const int WXUNUSED(number) ) {};
|
||||
virtual void SetStatusWidths( const int WXUNUSED(n), const int *WXUNUSED(width) ) {};
|
||||
virtual bool CreateStatusBar( int WXUNUSED(number) = 1 ) { return FALSE; };
|
||||
virtual void SetStatusText( const wxString &WXUNUSED(text), int WXUNUSED(number) ) {};
|
||||
virtual void SetStatusWidths( int WXUNUSED(n), int *WXUNUSED(width) ) {};
|
||||
|
||||
virtual void Maximize(void) {};
|
||||
virtual void Restore(void) {};
|
||||
@ -136,9 +136,9 @@ class wxMDIClientWindow: public wxWindow
|
||||
public:
|
||||
|
||||
wxMDIClientWindow(void);
|
||||
wxMDIClientWindow( wxMDIParentFrame *parent, const long style = 0 );
|
||||
wxMDIClientWindow( wxMDIParentFrame *parent, long style = 0 );
|
||||
~wxMDIClientWindow(void);
|
||||
virtual bool CreateClient( wxMDIParentFrame *parent, const long style = wxVSCROLL | wxHSCROLL );
|
||||
virtual bool CreateClient( wxMDIParentFrame *parent, long style = wxVSCROLL | wxHSCROLL );
|
||||
void AddChild( wxWindow *child );
|
||||
};
|
||||
|
||||
|
@ -80,15 +80,15 @@ class wxMenu: public wxEvtHandler
|
||||
|
||||
wxMenu( const wxString &title = "" );
|
||||
void AppendSeparator(void);
|
||||
void Append( const int id, const wxString &item,
|
||||
const wxString &helpStr = "", const bool checkable = FALSE );
|
||||
void Append( const int id, const wxString &item,
|
||||
void Append( int id, const wxString &item,
|
||||
const wxString &helpStr = "", bool checkable = FALSE );
|
||||
void Append( int id, const wxString &item,
|
||||
wxMenu *subMenu, const wxString &helpStr = "" );
|
||||
int FindItem( const wxString itemString ) const;
|
||||
void Break(void) {};
|
||||
void Enable( const int id, const bool enable );
|
||||
bool Enabled( const int id ) const;
|
||||
void SetLabel( const int id, const wxString &label );
|
||||
void Enable( int id, bool enable );
|
||||
bool Enabled( int id ) const;
|
||||
void SetLabel( int id, const wxString &label );
|
||||
|
||||
public:
|
||||
|
||||
|
@ -62,17 +62,17 @@ public:
|
||||
wxNotebook();
|
||||
// the same arguments as for wxControl (@@@ any special styles?)
|
||||
wxNotebook(wxWindow *parent,
|
||||
const wxWindowID id,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxString& name = "notebook");
|
||||
// Create() function
|
||||
bool Create(wxWindow *parent,
|
||||
const wxWindowID id,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxString& name = "notebook");
|
||||
// dtor
|
||||
~wxNotebook();
|
||||
|
@ -38,7 +38,7 @@ class wxPalette: public wxGDIObject
|
||||
public:
|
||||
|
||||
wxPalette(void);
|
||||
wxPalette( const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue );
|
||||
wxPalette( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue );
|
||||
wxPalette( const wxPalette& palette );
|
||||
wxPalette( const wxPalette* palette );
|
||||
~wxPalette(void);
|
||||
@ -47,9 +47,9 @@ class wxPalette: public wxGDIObject
|
||||
bool operator != ( const wxPalette& palette );
|
||||
bool Ok(void) const;
|
||||
|
||||
bool Create( const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
|
||||
bool Create( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
|
||||
int GetPixel( const unsigned char red, const unsigned char green, const unsigned char blue ) const;
|
||||
bool GetRGB( const int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const;
|
||||
bool GetRGB( int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const;
|
||||
|
||||
// no data
|
||||
};
|
||||
|
@ -50,7 +50,7 @@ class wxPen: public wxGDIObject
|
||||
|
||||
void SetColour( const wxColour &colour );
|
||||
void SetColour( const wxString &colourName );
|
||||
void SetColour( const int red, const int green, const int blue );
|
||||
void SetColour( int red, int green, int blue );
|
||||
void SetCap( int capStyle );
|
||||
void SetJoin( int joinStyle );
|
||||
void SetStyle( int style );
|
||||
|
@ -46,34 +46,34 @@ class wxRadioBox: public wxControl
|
||||
public:
|
||||
|
||||
wxRadioBox(void);
|
||||
wxRadioBox( wxWindow *parent, const wxWindowID id, const wxString& title,
|
||||
wxRadioBox( wxWindow *parent, wxWindowID id, const wxString& title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const int majorDim = 0, const long style = wxRA_HORIZONTAL,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
int majorDim = 0, long style = wxRA_HORIZONTAL,
|
||||
const wxString &name = wxRadioBoxNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxString& title,
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const int majorDim = 0, const long style = wxRA_HORIZONTAL,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
int majorDim = 0, long style = wxRA_HORIZONTAL,
|
||||
const wxString &name = wxRadioBoxNameStr );
|
||||
int FindString( const wxString& s) const;
|
||||
void SetSelection( const int n );
|
||||
void SetSelection( int n );
|
||||
int GetSelection(void) const;
|
||||
wxString GetString( const int n ) const;
|
||||
wxString GetString( int n ) const;
|
||||
wxString GetLabel(void) const;
|
||||
void SetLabel( const wxString& label );
|
||||
void SetLabel( const int item, const wxString& label );
|
||||
void SetLabel( const int item, wxBitmap *bitmap );
|
||||
wxString GetLabel( const int item ) const;
|
||||
bool Show( const bool show );
|
||||
void Enable( const bool enable );
|
||||
void Enable( const int item, const bool enable );
|
||||
void Show( const int item, const bool show );
|
||||
void SetLabel( int item, const wxString& label );
|
||||
void SetLabel( int item, wxBitmap *bitmap );
|
||||
wxString GetLabel( int item ) const;
|
||||
bool Show( bool show );
|
||||
void Enable( bool enable );
|
||||
void Enable( int item, bool enable );
|
||||
void Show( int item, bool show );
|
||||
virtual wxString GetStringSelection(void) const;
|
||||
virtual bool SetStringSelection( const wxString& s );
|
||||
virtual int Number(void) const;
|
||||
int GetNumberOfRowsOrCols(void) const;
|
||||
void SetNumberOfRowsOrCols( const int n );
|
||||
void SetNumberOfRowsOrCols( int n );
|
||||
|
||||
private:
|
||||
|
||||
|
@ -43,34 +43,34 @@ class wxScrollBar: public wxControl
|
||||
public:
|
||||
|
||||
wxScrollBar(void) { m_adjust = NULL; m_oldPos = 0.0; };
|
||||
wxScrollBar(wxWindow *parent, const wxWindowID id,
|
||||
wxScrollBar(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSB_HORIZONTAL,
|
||||
long style = wxSB_HORIZONTAL,
|
||||
const wxString& name = wxScrollBarNameStr );
|
||||
~wxScrollBar(void);
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSB_HORIZONTAL,
|
||||
long style = wxSB_HORIZONTAL,
|
||||
const wxString& name = wxScrollBarNameStr);
|
||||
int GetPosition(void) const;
|
||||
int GetThumbSize() const;
|
||||
int GetPageSize() const;
|
||||
int GetRange() const;
|
||||
virtual void SetPosition( const int viewStart );
|
||||
virtual void SetScrollbar( const int position, const int thumbSize, const int range, const int pageSize,
|
||||
const bool refresh = TRUE );
|
||||
virtual void SetPosition( int viewStart );
|
||||
virtual void SetScrollbar( int position, int thumbSize, int range, int pageSize,
|
||||
bool refresh = TRUE );
|
||||
|
||||
// Backward compatibility
|
||||
int GetValue(void) const;
|
||||
void SetValue( const int viewStart );
|
||||
void SetValue( int viewStart );
|
||||
void GetValues( int *viewStart, int *viewLength, int *objectLength, int *pageLength) const;
|
||||
int GetViewLength() const;
|
||||
int GetObjectLength() const;
|
||||
void SetPageSize( const int pageLength );
|
||||
void SetObjectLength( const int objectLength );
|
||||
void SetViewLength( const int viewLength );
|
||||
void SetPageSize( int pageLength );
|
||||
void SetObjectLength( int objectLength );
|
||||
void SetViewLength( int viewLength );
|
||||
|
||||
public:
|
||||
|
||||
|
@ -43,43 +43,43 @@ class wxSlider: public wxControl
|
||||
|
||||
public:
|
||||
wxSlider(void);
|
||||
wxSlider( wxWindow *parent, const wxWindowID id,
|
||||
const int value, const int minValue, const int maxValue,
|
||||
wxSlider( wxWindow *parent, wxWindowID id,
|
||||
int value, int minValue, int maxValue,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSL_HORIZONTAL,
|
||||
long style = wxSL_HORIZONTAL,
|
||||
/* const wxValidator& validator = wxDefaultValidator, */
|
||||
const wxString& name = wxSliderNameStr);
|
||||
~wxSlider(void);
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
const int value, const int minValue, const int maxValue,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
int value, int minValue, int maxValue,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxSL_HORIZONTAL,
|
||||
long style = wxSL_HORIZONTAL,
|
||||
/* const wxValidator& validator = wxDefaultValidator, */
|
||||
const wxString& name = wxSliderNameStr);
|
||||
virtual int GetValue(void) const;
|
||||
virtual void SetValue( const int );
|
||||
virtual void SetValue( int );
|
||||
void GetSize( int *x, int *y ) const;
|
||||
void SetSize( const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO );
|
||||
void SetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO );
|
||||
void GetPosition( int *x, int *y ) const;
|
||||
void SetRange( const int minValue, const int maxValue );
|
||||
void SetRange( int minValue, int maxValue );
|
||||
int GetMin(void) const;
|
||||
int GetMax(void) const;
|
||||
void SetTickFreq( const int n, const int pos );
|
||||
void SetTickFreq( int n, int pos );
|
||||
int GetTickFreq(void) const;
|
||||
void SetPageSize( const int pageSize );
|
||||
void SetPageSize( int pageSize );
|
||||
int GetPageSize(void) const;
|
||||
void ClearSel(void);
|
||||
void ClearTicks(void);
|
||||
void SetLineSize( const int lineSize );
|
||||
void SetLineSize( int lineSize );
|
||||
int GetLineSize(void) const;
|
||||
int GetSelEnd(void) const;
|
||||
int GetSelStart(void) const;
|
||||
void SetSelection( const int minPos, const int maxPos );
|
||||
void SetThumbLength( const int len );
|
||||
void SetSelection( int minPos, int maxPos );
|
||||
void SetThumbLength( int len );
|
||||
int GetThumbLength(void) const;
|
||||
void SetTick( const int tickPos );
|
||||
void SetTick( int tickPos );
|
||||
|
||||
public:
|
||||
|
||||
|
@ -43,12 +43,12 @@ class wxStaticBitmap: public wxControl
|
||||
public:
|
||||
|
||||
wxStaticBitmap(void);
|
||||
wxStaticBitmap( wxWindow *parent, const wxWindowID id, const wxBitmap& label,
|
||||
wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap& label,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxStaticBitmapNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxBitmap& label,
|
||||
long style = 0, const wxString& name = wxStaticBitmapNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxBitmap& label,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxStaticBitmapNameStr);
|
||||
long style = 0, const wxString& name = wxStaticBitmapNameStr);
|
||||
virtual void SetBitmap( const wxBitmap& bitmap );
|
||||
wxBitmap& GetBitmap(void) const { return (wxBitmap&)m_bitmap; }
|
||||
|
||||
|
@ -46,10 +46,10 @@ class wxStaticBox: public wxControl
|
||||
wxStaticBox(void);
|
||||
wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
long style = 0, const wxString &name = wxStaticBoxNameStr );
|
||||
};
|
||||
|
||||
#endif // __GTKSTATICBOXH__
|
||||
|
@ -46,10 +46,10 @@ class wxStaticText: public wxControl
|
||||
wxStaticText(void);
|
||||
wxStaticText( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
long style = 0, const wxString &name = wxStaticTextNameStr );
|
||||
wxString GetLabel(void) const;
|
||||
void SetLabel( const wxString &label );
|
||||
};
|
||||
|
@ -50,9 +50,9 @@ class wxToolBarTool: public wxObject
|
||||
public:
|
||||
|
||||
wxToolBarTool(void) {};
|
||||
wxToolBarTool( wxToolBarGTK *owner, const int theIndex = 0,
|
||||
wxToolBarTool( wxToolBarGTK *owner, int theIndex = 0,
|
||||
const wxBitmap& bitmap1 = wxNullBitmap, const wxBitmap& bitmap2 = wxNullBitmap,
|
||||
const bool toggle = FALSE, wxObject *clientData = NULL,
|
||||
bool toggle = FALSE, wxObject *clientData = NULL,
|
||||
const wxString& shortHelpString = "", const wxString& longHelpString = "");
|
||||
~wxToolBarTool(void);
|
||||
|
||||
@ -84,14 +84,14 @@ class wxToolBarGTK: public wxControl
|
||||
public:
|
||||
|
||||
wxToolBarGTK(void);
|
||||
wxToolBarGTK( wxWindow *parent, const wxWindowID id,
|
||||
wxToolBarGTK( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxToolBarNameStr );
|
||||
long style = 0, const wxString& name = wxToolBarNameStr );
|
||||
~wxToolBarGTK(void);
|
||||
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||
const long style = 0, const wxString& name = wxToolBarNameStr);
|
||||
long style = 0, const wxString& name = wxToolBarNameStr);
|
||||
|
||||
// Only allow toggle if returns TRUE. Call when left button up.
|
||||
virtual bool OnLeftClick(int toolIndex, bool toggleDown);
|
||||
@ -106,25 +106,25 @@ class wxToolBarGTK: public wxControl
|
||||
// If pushedBitmap is NULL, a reversed version of bitmap is
|
||||
// created and used as the pushed/toggled image.
|
||||
// If toggle is TRUE, the button toggles between the two states.
|
||||
virtual wxToolBarTool *AddTool( const int toolIndex, const wxBitmap& bitmap,
|
||||
const wxBitmap& pushedBitmap = wxNullBitmap, const bool toggle = FALSE,
|
||||
const float xPos = -1, const float yPos = -1, wxObject *clientData = NULL,
|
||||
virtual wxToolBarTool *AddTool( int toolIndex, const wxBitmap& bitmap,
|
||||
const wxBitmap& pushedBitmap = wxNullBitmap, bool toggle = FALSE,
|
||||
float xPos = -1, float yPos = -1, wxObject *clientData = NULL,
|
||||
const wxString& helpString1 = "", const wxString& helpString2 = "");
|
||||
virtual void AddSeparator(void);
|
||||
virtual void ClearTools(void);
|
||||
|
||||
virtual void EnableTool(const int toolIndex, const bool enable);
|
||||
virtual void ToggleTool(const int toolIndex, const bool toggle); // toggle is TRUE if toggled on
|
||||
virtual void SetToggle(const int toolIndex, const bool toggle); // Set this to be togglable (or not)
|
||||
virtual wxObject *GetToolClientData(const int index) const;
|
||||
virtual void EnableTool(int toolIndex, bool enable);
|
||||
virtual void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on
|
||||
virtual void SetToggle(int toolIndex, bool toggle); // Set this to be togglable (or not)
|
||||
virtual wxObject *GetToolClientData(int index) const;
|
||||
|
||||
virtual bool GetToolState(const int toolIndex) const;
|
||||
virtual bool GetToolEnabled(const int toolIndex) const;
|
||||
virtual bool GetToolState(int toolIndex) const;
|
||||
virtual bool GetToolEnabled(int toolIndex) const;
|
||||
|
||||
virtual void SetMargins(const int x, const int y);
|
||||
virtual void SetMargins(int x, int y);
|
||||
void SetMargins(const wxSize& size) { SetMargins(size.x, size.y); };
|
||||
virtual void SetToolPacking(const int packing);
|
||||
virtual void SetToolSeparation(const int separation);
|
||||
virtual void SetToolPacking(int packing);
|
||||
virtual void SetToolSeparation(int separation);
|
||||
|
||||
public:
|
||||
|
||||
|
@ -50,12 +50,12 @@ class wxTextCtrl: public wxControl, public streambuf
|
||||
public:
|
||||
|
||||
wxTextCtrl(void);
|
||||
wxTextCtrl( wxWindow *parent, const wxWindowID id, const wxString &value = "",
|
||||
wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value = "",
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id, const wxString &value = "",
|
||||
int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id, const wxString &value = "",
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
int style = 0, const wxString &name = wxTextCtrlNameStr );
|
||||
wxString GetValue(void) const;
|
||||
void SetValue( const wxString &value );
|
||||
void WriteText( const wxString &text );
|
||||
@ -65,21 +65,21 @@ class wxTextCtrl: public wxControl, public streambuf
|
||||
bool IsModified(void);
|
||||
void DiscardEdits(void);
|
||||
/*
|
||||
wxString GetLineText( const long lineNo ) const;
|
||||
wxString GetLineText( long lineNo ) const;
|
||||
void OnDropFiles( wxDropFilesEvent &event );
|
||||
long PositionToXY( const long pos, long *x, long *y ) const;
|
||||
long XYToPosition( const long x, const long y );
|
||||
long PositionToXY( long pos, long *x, long *y ) const;
|
||||
long XYToPosition( long x, long y );
|
||||
int GetNumberOfLines(void);
|
||||
*/
|
||||
virtual void SetInsertionPoint( const long pos );
|
||||
virtual void SetInsertionPoint( long pos );
|
||||
virtual void SetInsertionPointEnd(void);
|
||||
virtual void SetEditable( const bool editable );
|
||||
virtual void SetSelection( const long from, const long to );
|
||||
void ShowPosition( const long pos );
|
||||
virtual void SetEditable( bool editable );
|
||||
virtual void SetSelection( long from, long to );
|
||||
void ShowPosition( long pos );
|
||||
virtual long GetInsertionPoint(void) const;
|
||||
virtual long GetLastPosition(void) const;
|
||||
virtual void Remove( const long from, const long to );
|
||||
virtual void Replace( const long from, const long to, const wxString &value );
|
||||
virtual void Remove( long from, long to );
|
||||
virtual void Replace( long from, long to, const wxString &value );
|
||||
void Cut(void);
|
||||
void Copy(void);
|
||||
void Paste(void);
|
||||
@ -92,10 +92,10 @@ class wxTextCtrl: public wxControl, public streambuf
|
||||
int underflow(void);
|
||||
|
||||
wxTextCtrl& operator<<(const wxString& s);
|
||||
wxTextCtrl& operator<<(const int i);
|
||||
wxTextCtrl& operator<<(const long i);
|
||||
wxTextCtrl& operator<<(const float f);
|
||||
wxTextCtrl& operator<<(const double d);
|
||||
wxTextCtrl& operator<<(int i);
|
||||
wxTextCtrl& operator<<(long i);
|
||||
wxTextCtrl& operator<<(float f);
|
||||
wxTextCtrl& operator<<(double d);
|
||||
wxTextCtrl& operator<<(const char c);
|
||||
|
||||
public:
|
||||
|
@ -63,35 +63,35 @@ class wxWindow: public wxEvtHandler
|
||||
public:
|
||||
|
||||
wxWindow(void);
|
||||
wxWindow( wxWindow *parent, const wxWindowID id,
|
||||
wxWindow( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxPanelNameStr );
|
||||
bool Create( wxWindow *parent, const wxWindowID id,
|
||||
long style = 0, const wxString &name = wxPanelNameStr );
|
||||
bool Create( wxWindow *parent, wxWindowID id,
|
||||
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
||||
const long style = 0, const wxString &name = wxPanelNameStr );
|
||||
long style = 0, const wxString &name = wxPanelNameStr );
|
||||
virtual ~wxWindow(void);
|
||||
bool Close( const bool force = FALSE );
|
||||
bool Close( bool force = FALSE );
|
||||
virtual bool Destroy(void);
|
||||
virtual bool DestroyChildren(void);
|
||||
|
||||
virtual void PrepareDC( wxDC &dc );
|
||||
|
||||
virtual void SetSize( const int x, const int y, const int width, const int height,
|
||||
const int sizeFlags = wxSIZE_AUTO );
|
||||
virtual void SetSize( const int width, const int height );
|
||||
virtual void Move( const int x, const int y );
|
||||
virtual void SetSize( int x, int y, int width, int height,
|
||||
int sizeFlags = wxSIZE_AUTO );
|
||||
virtual void SetSize( int width, int height );
|
||||
virtual void Move( int x, int y );
|
||||
virtual void GetSize( int *width, int *height ) const;
|
||||
virtual void SetClientSize( int const width, int const height );
|
||||
virtual void GetClientSize( int *width, int *height ) const;
|
||||
virtual void GetPosition( int *x, int *y ) const;
|
||||
virtual void Centre( const int direction = wxHORIZONTAL );
|
||||
virtual void Centre( int direction = wxHORIZONTAL );
|
||||
virtual void Fit(void);
|
||||
|
||||
void OnSize( wxSizeEvent &event );
|
||||
|
||||
virtual bool Show( const bool show );
|
||||
virtual void Enable( const bool enable );
|
||||
virtual void MakeModal( const bool modal );
|
||||
virtual bool Show( bool show );
|
||||
virtual void Enable( bool enable );
|
||||
virtual void MakeModal( bool modal );
|
||||
virtual bool IsEnabled(void) const { return m_isEnabled; };
|
||||
virtual void SetFocus(void);
|
||||
virtual bool OnClose(void);
|
||||
@ -116,10 +116,10 @@ class wxWindow: public wxEvtHandler
|
||||
|
||||
void SetCursor( const wxCursor &cursor );
|
||||
|
||||
virtual void Refresh( const bool eraseBackground = TRUE, const wxRect *rect = NULL );
|
||||
virtual void Refresh( bool eraseBackground = TRUE, const wxRect *rect = NULL );
|
||||
virtual void Clear(void);
|
||||
virtual bool IsExposed( const long x, const long y );
|
||||
virtual bool IsExposed( const long x, const long y, const long width, const long height );
|
||||
virtual bool IsExposed( long x, long y );
|
||||
virtual bool IsExposed( long x, long y, long width, long height );
|
||||
|
||||
virtual wxColour GetBackgroundColour(void) const;
|
||||
virtual void SetBackgroundColour( const wxColour &colour );
|
||||
@ -154,7 +154,7 @@ class wxWindow: public wxEvtHandler
|
||||
|
||||
virtual bool IsShown(void);
|
||||
virtual bool IsRetained(void);
|
||||
virtual wxWindow *FindWindow( const long id );
|
||||
virtual wxWindow *FindWindow( long id );
|
||||
virtual wxWindow *FindWindow( const wxString& name );
|
||||
void AllowDoubleClick( bool WXUNUSED(allow) ) {};
|
||||
void SetDoubleClick( bool WXUNUSED(allow) ) {};
|
||||
@ -170,18 +170,18 @@ class wxWindow: public wxEvtHandler
|
||||
virtual void SetDropTarget( wxDropTarget *dropTarget );
|
||||
virtual wxDropTarget *GetDropTarget() const;
|
||||
|
||||
virtual void SetScrollbar( const int orient, const int pos, const int thumbVisible,
|
||||
const int range, const bool refresh = TRUE );
|
||||
virtual void SetScrollPos( const int orient, const int pos, const bool refresh = TRUE );
|
||||
virtual int GetScrollPos( const int orient ) const;
|
||||
virtual int GetScrollThumb( const int orient ) const;
|
||||
virtual int GetScrollRange( const int orient ) const;
|
||||
virtual void ScrollWindow( const int dx, const int dy, const wxRect* rect = NULL );
|
||||
virtual void SetScrollbar( int orient, int pos, int thumbVisible,
|
||||
int range, bool refresh = TRUE );
|
||||
virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
|
||||
virtual int GetScrollPos( int orient ) const;
|
||||
virtual int GetScrollThumb( int orient ) const;
|
||||
virtual int GetScrollRange( int orient ) const;
|
||||
virtual void ScrollWindow( int dx, int dy, const wxRect* rect = NULL );
|
||||
|
||||
public: // cannot get private going yet
|
||||
|
||||
void PreCreation( wxWindow *parent, const wxWindowID id, const wxPoint &pos,
|
||||
const wxSize &size, const long style, const wxString &name );
|
||||
void PreCreation( wxWindow *parent, wxWindowID id, const wxPoint &pos,
|
||||
const wxSize &size, long style, const wxString &name );
|
||||
void PostCreation(void);
|
||||
bool HasVMT(void);
|
||||
virtual void ImplementSetSize(void);
|
||||
@ -230,7 +230,7 @@ class wxWindow: public wxEvtHandler
|
||||
|
||||
wxLayoutConstraints *GetConstraints(void) const;
|
||||
void SetConstraints( wxLayoutConstraints *constraints );
|
||||
void SetAutoLayout( const bool autoLayout );
|
||||
void SetAutoLayout( bool autoLayout );
|
||||
bool GetAutoLayout(void) const;
|
||||
bool Layout(void);
|
||||
void SetSizer( wxSizer *sizer );
|
||||
@ -243,15 +243,15 @@ class wxWindow: public wxEvtHandler
|
||||
void RemoveConstraintReference(wxWindow *otherWin);
|
||||
void DeleteRelatedConstraints(void);
|
||||
virtual void ResetConstraints(void);
|
||||
virtual void SetConstraintSizes(const bool recurse = TRUE);
|
||||
virtual void SetConstraintSizes(bool recurse = TRUE);
|
||||
virtual bool LayoutPhase1(int *noChanges);
|
||||
virtual bool LayoutPhase2(int *noChanges);
|
||||
virtual bool DoPhase(const int);
|
||||
virtual bool DoPhase(int);
|
||||
virtual void TransformSizerToActual(int *x, int *y) const ;
|
||||
virtual void SizerSetSize(const int x, const int y, const int w, const int h);
|
||||
virtual void SizerMove(const int x, const int y);
|
||||
virtual void SetSizeConstraint(const int x, const int y, const int w, const int h);
|
||||
virtual void MoveConstraint(const int x, const int y);
|
||||
virtual void SizerSetSize(int x, int y, int w, int h);
|
||||
virtual void SizerMove(int x, int y);
|
||||
virtual void SetSizeConstraint(int x, int y, int w, int h);
|
||||
virtual void MoveConstraint(int x, int y);
|
||||
virtual void GetSizeConstraint(int *w, int *h) const ;
|
||||
virtual void GetClientSizeConstraint(int *w, int *h) const ;
|
||||
virtual void GetPositionConstraint(int *x, int *y) const ;
|
||||
|
@ -38,10 +38,10 @@ class WXDLLEXPORT wxHashTable: public wxObject
|
||||
unsigned int key_type;
|
||||
wxList **hash_table;
|
||||
|
||||
wxHashTable(const int the_key_type = wxKEY_INTEGER, const int size = 1000);
|
||||
wxHashTable(int the_key_type = wxKEY_INTEGER, int size = 1000);
|
||||
~wxHashTable(void);
|
||||
|
||||
bool Create(const int the_key_type = wxKEY_INTEGER, const int size = 1000);
|
||||
bool Create(int the_key_type = wxKEY_INTEGER, int size = 1000);
|
||||
|
||||
// Note that there are 2 forms of Put, Get.
|
||||
// With a key and a value, the *value* will be checked
|
||||
@ -56,27 +56,27 @@ class WXDLLEXPORT wxHashTable: public wxObject
|
||||
// e.g. 1 + 2 = 3, 2 + 1 = 3.
|
||||
|
||||
// key and value are NOT necessarily the same
|
||||
void Put(const long key, const long value, wxObject *object);
|
||||
void Put(const long key, const char *value, wxObject *object);
|
||||
void Put(long key, long value, wxObject *object);
|
||||
void Put(long key, const char *value, wxObject *object);
|
||||
|
||||
// key and value are the same
|
||||
void Put(const long value, wxObject *object);
|
||||
void Put(long value, wxObject *object);
|
||||
void Put(const char *value, wxObject *object);
|
||||
|
||||
// key and value not the same
|
||||
wxObject *Get(const long key, const long value) const;
|
||||
wxObject *Get(const long key, const char *value) const;
|
||||
wxObject *Get(long key, long value) const;
|
||||
wxObject *Get(long key, const char *value) const;
|
||||
|
||||
// key and value are the same
|
||||
wxObject *Get(const long value) const;
|
||||
wxObject *Get(long value) const;
|
||||
wxObject *Get(const char *value) const;
|
||||
|
||||
// Deletes entry and returns data if found
|
||||
wxObject *Delete(const long key);
|
||||
wxObject *Delete(long key);
|
||||
wxObject *Delete(const char *key);
|
||||
|
||||
wxObject *Delete(const long key, const int value);
|
||||
wxObject *Delete(const long key, const char *value);
|
||||
wxObject *Delete(long key, int value);
|
||||
wxObject *Delete(long key, const char *value);
|
||||
|
||||
// Construct your own integer key from a string, e.g. in case
|
||||
// you need to combine it with something
|
||||
@ -89,7 +89,7 @@ class WXDLLEXPORT wxHashTable: public wxObject
|
||||
void BeginFind(void);
|
||||
wxNode *Next(void);
|
||||
|
||||
void DeleteContents(const bool flag);
|
||||
void DeleteContents(bool flag);
|
||||
void Clear(void);
|
||||
|
||||
};
|
||||
|
@ -222,17 +222,17 @@ class WXDLLEXPORT wxSizer: public wxWindow
|
||||
~wxSizer(void);
|
||||
|
||||
bool Create(wxWindow *parent, wxSizerBehaviour behav = wxSizerNone);
|
||||
virtual void SetSize(const int x, const int y, const int w, const int h, const int flags = wxSIZE_AUTO);
|
||||
virtual void SetSize(int x, int y, int w, int h, int flags = wxSIZE_AUTO);
|
||||
// Avoid compiler warning
|
||||
void SetSize(const int w, const int h) { wxWindow::SetSize(w, h); }
|
||||
virtual void Move(const int x, const int y);
|
||||
void SetSize(int w, int h) { wxWindow::SetSize(w, h); }
|
||||
virtual void Move(int x, int y);
|
||||
virtual void GetSize(int *w, int *h) const;
|
||||
inline virtual void GetClientSize(int *w, int *h) const { GetSize(w, h); }
|
||||
virtual void GetPosition(int *x, int *y) const;
|
||||
|
||||
inline void SizerSetSize(const int x, const int y, const int w, const int h)
|
||||
inline void SizerSetSize(int x, int y, int w, int h)
|
||||
{ SetSize(x, y, w, h); }
|
||||
inline void SizerMove(const int x, const int y)
|
||||
inline void SizerMove(int x, int y)
|
||||
{ Move(x, y); }
|
||||
|
||||
virtual void SetBorder(int w, int h);
|
||||
@ -269,9 +269,9 @@ class WXDLLEXPORT wxRowColSizer: public wxSizer
|
||||
~wxRowColSizer(void);
|
||||
|
||||
bool Create(wxWindow *parent, bool rowOrCol = wxSIZER_ROWS, int rowsOrColSize = 20, wxSizerBehaviour = wxSizerShrink);
|
||||
void SetSize(const int x, const int y, const int w, const int h, const int flags = wxSIZE_AUTO);
|
||||
void SetSize(int x, int y, int w, int h, int flags = wxSIZE_AUTO);
|
||||
// Avoid compiler warning
|
||||
void SetSize(const int w, const int h) { wxSizer::SetSize(w, h); }
|
||||
void SetSize(int w, int h) { wxSizer::SetSize(w, h); }
|
||||
|
||||
inline virtual void SetRowOrCol(bool rc) { rowOrCol = rc; }
|
||||
inline virtual bool GetRowOrCol(void) { return rowOrCol; }
|
||||
|
@ -73,7 +73,7 @@ class WXDLLEXPORT wxList: public wxObject
|
||||
|
||||
wxList(void);
|
||||
wxList(const unsigned int the_key_type);
|
||||
wxList(const int N, wxObject *Objects[]);
|
||||
wxList(int N, wxObject *Objects[]);
|
||||
wxList(wxObject *object, ...);
|
||||
|
||||
#ifdef USE_STORABLE_CLASSES
|
||||
@ -95,7 +95,7 @@ class WXDLLEXPORT wxList: public wxObject
|
||||
wxNode *Insert(wxNode *position, wxObject *object);
|
||||
|
||||
// Keyed append
|
||||
wxNode *Append(const long key, wxObject *object);
|
||||
wxNode *Append(long key, wxObject *object);
|
||||
wxNode *Append(const char *key, wxObject *object);
|
||||
|
||||
bool DeleteNode(wxNode *node);
|
||||
@ -106,15 +106,15 @@ class WXDLLEXPORT wxList: public wxObject
|
||||
|
||||
inline wxNode *First(void) const { return first_node; }
|
||||
inline wxNode *Last(void) const { return last_node; }
|
||||
wxNode *Nth(const int i) const; // nth node counting from 0
|
||||
wxNode *Nth(int i) const; // nth node counting from 0
|
||||
|
||||
// Keyed search
|
||||
wxNode *Find(const long key) const;
|
||||
wxNode *Find(long key) const;
|
||||
wxNode *Find(const char *key) const;
|
||||
|
||||
wxNode *Member(wxObject *object) const;
|
||||
|
||||
inline void DeleteContents(const int destroy) { destroy_data = destroy; }
|
||||
inline void DeleteContents(int destroy) { destroy_data = destroy; }
|
||||
// Instruct it to destroy user data
|
||||
// when deleting nodes
|
||||
// this function allows the sorting of arbitrary lists by giving
|
||||
@ -139,7 +139,7 @@ class WXDLLEXPORT wxStringList: public wxList
|
||||
|
||||
virtual wxNode *Add(const char *s);
|
||||
virtual void Delete(const char *s);
|
||||
virtual char **ListToArray(const bool new_copies = FALSE) const;
|
||||
virtual char **ListToArray(bool new_copies = FALSE) const;
|
||||
virtual void Sort(void);
|
||||
virtual bool Member(const char *s) const;
|
||||
};
|
||||
|
@ -63,11 +63,6 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
|
||||
|
||||
virtual void OnIdle(wxIdleEvent& event);
|
||||
|
||||
// Windows specific. Intercept keyboard input.
|
||||
#if WXWIN_COMPATIBILITY == 2
|
||||
virtual bool OldOnCharHook(wxKeyEvent& event);
|
||||
#endif
|
||||
|
||||
// Generic
|
||||
virtual bool OnInit(void) { return FALSE; };
|
||||
|
||||
@ -111,7 +106,7 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
|
||||
// Returns TRUE if more idle time is requested.
|
||||
bool SendIdleEvents(wxWindow* win);
|
||||
|
||||
inline void SetAuto3D(const bool flag) { m_auto3D = flag; }
|
||||
inline void SetAuto3D(bool flag) { m_auto3D = flag; }
|
||||
inline bool GetAuto3D(void) const { return m_auto3D; }
|
||||
|
||||
// Creates a log object
|
||||
|
@ -43,7 +43,7 @@ public:
|
||||
|
||||
// Construct a mask from a bitmap and a palette index indicating
|
||||
// the transparent area
|
||||
wxMask(const wxBitmap& bitmap, const int paletteIndex);
|
||||
wxMask(const wxBitmap& bitmap, int paletteIndex);
|
||||
|
||||
// Construct a mask from a mono bitmap (copies the bitmap).
|
||||
wxMask(const wxBitmap& bitmap);
|
||||
@ -51,7 +51,7 @@ public:
|
||||
~wxMask(void);
|
||||
|
||||
bool Create(const wxBitmap& bitmap, const wxColour& colour);
|
||||
bool Create(const wxBitmap& bitmap, const int paletteIndex);
|
||||
bool Create(const wxBitmap& bitmap, int paletteIndex);
|
||||
bool Create(const wxBitmap& bitmap);
|
||||
|
||||
// Implementation
|
||||
@ -95,14 +95,14 @@ class WXDLLEXPORT wxBitmapHandler: public wxObject
|
||||
public:
|
||||
wxBitmapHandler(void) { m_name = ""; m_extension = ""; m_type = 0; };
|
||||
|
||||
virtual bool Create(wxBitmap *bitmap, void *data, const long flags, const int width, const int height, const int depth = 1);
|
||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, const long flags,
|
||||
virtual bool Create(wxBitmap *bitmap, void *data, long flags, int width, int height, int depth = 1);
|
||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
||||
int desiredWidth, int desiredHeight);
|
||||
virtual bool SaveFile(wxBitmap *bitmap, const wxString& name, const int type, const wxPalette *palette = NULL);
|
||||
virtual bool SaveFile(wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette = NULL);
|
||||
|
||||
inline void SetName(const wxString& name) { m_name = name; }
|
||||
inline void SetExtension(const wxString& ext) { m_extension = ext; }
|
||||
inline void SetType(const long type) { m_type = type; }
|
||||
inline void SetType(long type) { m_type = type; }
|
||||
inline wxString GetName(void) const { return m_name; }
|
||||
inline wxString GetExtension(void) const { return m_extension; }
|
||||
inline long GetType(void) const { return m_type; }
|
||||
@ -128,7 +128,7 @@ public:
|
||||
inline wxBitmap(const wxBitmap* bitmap) { if (bitmap) Ref(*bitmap); if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this); }
|
||||
|
||||
// Initialize with raw data
|
||||
wxBitmap(const char bits[], const int width, const int height, const int depth = 1);
|
||||
wxBitmap(const char bits[], int width, int height, int depth = 1);
|
||||
|
||||
#if USE_XPM_IN_MSW
|
||||
class wxItem;
|
||||
@ -137,19 +137,19 @@ public:
|
||||
#endif
|
||||
|
||||
// Load a file or resource
|
||||
wxBitmap(const wxString& name, const long type = wxBITMAP_TYPE_BMP_RESOURCE);
|
||||
wxBitmap(const wxString& name, long type = wxBITMAP_TYPE_BMP_RESOURCE);
|
||||
|
||||
// New constructor for generalised creation from data
|
||||
wxBitmap(void *data, const long type, const int width, const int height, const int depth = 1);
|
||||
wxBitmap(void *data, long type, int width, int height, int depth = 1);
|
||||
|
||||
// If depth is omitted, will create a bitmap compatible with the display
|
||||
wxBitmap(const int width, const int height, const int depth = -1);
|
||||
wxBitmap(int width, int height, int depth = -1);
|
||||
~wxBitmap(void);
|
||||
|
||||
virtual bool Create(const int width, const int height, const int depth = -1);
|
||||
virtual bool Create(void *data, const long type, const int width, const int height, const int depth = 1);
|
||||
virtual bool LoadFile(const wxString& name, const long type = wxBITMAP_TYPE_BMP_RESOURCE);
|
||||
virtual bool SaveFile(const wxString& name, const int type, const wxPalette *cmap = NULL);
|
||||
virtual bool Create(int width, int height, int depth = -1);
|
||||
virtual bool Create(void *data, long type, int width, int height, int depth = 1);
|
||||
virtual bool LoadFile(const wxString& name, long type = wxBITMAP_TYPE_BMP_RESOURCE);
|
||||
virtual bool SaveFile(const wxString& name, int type, const wxPalette *cmap = NULL);
|
||||
|
||||
inline bool Ok(void) const { return (M_BITMAPDATA && M_BITMAPDATA->m_ok); }
|
||||
inline int GetWidth(void) const { return (M_BITMAPDATA ? M_BITMAPDATA->m_width : 0); }
|
||||
|
@ -27,18 +27,18 @@ class WXDLLEXPORT wxBitmapButton: public wxButton
|
||||
DECLARE_DYNAMIC_CLASS(wxBitmapButton)
|
||||
public:
|
||||
inline wxBitmapButton(void) { m_marginX = wxDEFAULT_BUTTON_MARGIN; m_marginY = wxDEFAULT_BUTTON_MARGIN; }
|
||||
inline wxBitmapButton(wxWindow *parent, const wxWindowID id, const wxBitmap& bitmap,
|
||||
inline wxBitmapButton(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = wxBU_AUTODRAW,
|
||||
const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxButtonNameStr)
|
||||
{
|
||||
Create(parent, id, bitmap, pos, size, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id, const wxBitmap& bitmap,
|
||||
bool Create(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = wxBU_AUTODRAW,
|
||||
const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxButtonNameStr);
|
||||
|
||||
|
@ -45,8 +45,8 @@ class WXDLLEXPORT wxBrush: public wxGDIObject
|
||||
|
||||
public:
|
||||
wxBrush(void);
|
||||
wxBrush(const wxColour& col, const int style);
|
||||
wxBrush(const wxString& col, const int style);
|
||||
wxBrush(const wxColour& col, int style);
|
||||
wxBrush(const wxString& col, int style);
|
||||
wxBrush(const wxBitmap& stipple);
|
||||
inline wxBrush(const wxBrush& brush) { Ref(brush); }
|
||||
inline wxBrush(const wxBrush* brush) { /* UnRef(); */ if (brush) Ref(*brush); }
|
||||
@ -55,7 +55,7 @@ public:
|
||||
virtual void SetColour(const wxColour& col) ;
|
||||
virtual void SetColour(const wxString& col) ;
|
||||
virtual void SetColour(const unsigned char r, const unsigned char g, const unsigned char b) ;
|
||||
virtual void SetStyle(const int style) ;
|
||||
virtual void SetStyle(int style) ;
|
||||
virtual void SetStipple(const wxBitmap& stipple) ;
|
||||
|
||||
inline wxBrush& operator = (const wxBrush& brush) { if (*this == brush) return (*this); Ref(brush); return *this; }
|
||||
|
@ -27,28 +27,28 @@ class WXDLLEXPORT wxButton: public wxControl
|
||||
DECLARE_DYNAMIC_CLASS(wxButton)
|
||||
public:
|
||||
inline wxButton(void) {}
|
||||
inline wxButton(wxWindow *parent, const wxWindowID id, const wxString& label,
|
||||
inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxButtonNameStr)
|
||||
{
|
||||
Create(parent, id, label, pos, size, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id, const wxString& label,
|
||||
bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxButtonNameStr);
|
||||
|
||||
virtual void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
virtual void SetDefault(void);
|
||||
virtual void SetLabel(const wxString& label);
|
||||
virtual wxString GetLabel(void) const ;
|
||||
virtual void Command(wxCommandEvent& event);
|
||||
virtual bool MSWCommand(const WXUINT param, const WXWORD id);
|
||||
virtual WXHBRUSH OnCtlColor(const WXHDC pDC, const WXHWND pWnd, const WXUINT nCtlColor,
|
||||
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
||||
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
||||
};
|
||||
|
||||
|
@ -28,27 +28,27 @@ class WXDLLEXPORT wxCheckBox: public wxControl
|
||||
|
||||
public:
|
||||
inline wxCheckBox(void) { }
|
||||
inline wxCheckBox(wxWindow *parent, const wxWindowID id, const wxString& label,
|
||||
inline wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxCheckBoxNameStr)
|
||||
{
|
||||
Create(parent, id, label, pos, size, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id, const wxString& label,
|
||||
bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxCheckBoxNameStr);
|
||||
virtual void SetValue(const bool);
|
||||
virtual void SetValue(bool);
|
||||
virtual bool GetValue(void) const ;
|
||||
virtual void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
virtual bool MSWCommand(const WXUINT param, const WXWORD id);
|
||||
virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
||||
virtual void SetLabel(const wxString& label);
|
||||
virtual void Command(wxCommandEvent& event);
|
||||
virtual WXHBRUSH OnCtlColor(const WXHDC pDC, const WXHWND pWnd, const WXUINT nCtlColor,
|
||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
||||
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
||||
};
|
||||
|
||||
@ -61,23 +61,23 @@ class WXDLLEXPORT wxBitmapCheckBox: public wxCheckBox
|
||||
int checkHeight ;
|
||||
|
||||
inline wxBitmapCheckBox(void) { checkWidth = -1; checkHeight = -1; }
|
||||
inline wxBitmapCheckBox(wxWindow *parent, const wxWindowID id, const wxBitmap *label,
|
||||
inline wxBitmapCheckBox(wxWindow *parent, wxWindowID id, const wxBitmap *label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxCheckBoxNameStr)
|
||||
{
|
||||
Create(parent, id, label, pos, size, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id, const wxBitmap *bitmap,
|
||||
bool Create(wxWindow *parent, wxWindowID id, const wxBitmap *bitmap,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxCheckBoxNameStr);
|
||||
virtual void SetValue(const bool);
|
||||
virtual void SetValue(bool);
|
||||
virtual bool GetValue(void) const ;
|
||||
virtual void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
virtual void SetLabel(const wxBitmap *bitmap);
|
||||
};
|
||||
#endif
|
||||
|
@ -30,12 +30,12 @@ class wxCheckListBox : public wxListBox
|
||||
public:
|
||||
// ctors
|
||||
wxCheckListBox();
|
||||
wxCheckListBox(wxWindow *parent, const wxWindowID id,
|
||||
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int nStrings = 0,
|
||||
int nStrings = 0,
|
||||
const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxListBoxNameStr);
|
||||
// const wxFont& font = wxNullFont);
|
||||
|
@ -30,45 +30,45 @@ class WXDLLEXPORT wxChoice: public wxControl
|
||||
|
||||
inline wxChoice(void) { no_strings = 0; }
|
||||
|
||||
inline wxChoice(wxWindow *parent, const wxWindowID id,
|
||||
inline wxChoice(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxChoiceNameStr)
|
||||
{
|
||||
Create(parent, id, pos, size, n, choices, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxChoiceNameStr);
|
||||
|
||||
virtual void Append(const wxString& item);
|
||||
virtual void Delete(const int n);
|
||||
virtual void Delete(int n);
|
||||
virtual void Clear(void);
|
||||
virtual int GetSelection(void) const ;
|
||||
virtual void SetSelection(const int n);
|
||||
virtual void SetSelection(int n);
|
||||
virtual int FindString(const wxString& s) const;
|
||||
virtual wxString GetString(const int n) const ;
|
||||
virtual void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
virtual wxString GetString(int n) const ;
|
||||
virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
virtual wxString GetStringSelection(void) const ;
|
||||
virtual bool SetStringSelection(const wxString& sel);
|
||||
|
||||
virtual inline int Number(void) const { return no_strings; }
|
||||
virtual void Command(wxCommandEvent& event);
|
||||
|
||||
virtual bool MSWCommand(const WXUINT param, const WXWORD id);
|
||||
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
||||
|
||||
virtual inline void SetColumns(const int WXUNUSED(n) = 1 ) { /* No effect */ } ;
|
||||
virtual inline void SetColumns(int WXUNUSED(n) = 1 ) { /* No effect */ } ;
|
||||
virtual inline int GetColumns(void) const { return 1 ; };
|
||||
|
||||
virtual WXHBRUSH OnCtlColor(const WXHDC pDC, const WXHWND pWnd, const WXUINT nCtlColor,
|
||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
||||
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
||||
|
||||
long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
||||
|
@ -31,24 +31,24 @@ class WXDLLEXPORT wxComboBox: public wxChoice
|
||||
public:
|
||||
inline wxComboBox(void) {}
|
||||
|
||||
inline wxComboBox(wxWindow *parent, const wxWindowID id,
|
||||
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
||||
const wxString& value = wxEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxComboBoxNameStr)
|
||||
{
|
||||
Create(parent, id, value, pos, size, n, choices, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxString& value = wxEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxComboBoxNameStr);
|
||||
|
||||
@ -62,16 +62,16 @@ class WXDLLEXPORT wxComboBox: public wxChoice
|
||||
virtual void Copy(void);
|
||||
virtual void Cut(void);
|
||||
virtual void Paste(void);
|
||||
virtual void SetInsertionPoint(const long pos);
|
||||
virtual void SetInsertionPoint(long pos);
|
||||
virtual void SetInsertionPointEnd(void);
|
||||
virtual long GetInsertionPoint(void) const ;
|
||||
virtual long GetLastPosition(void) const ;
|
||||
virtual void Replace(const long from, const long to, const wxString& value);
|
||||
virtual void Remove(const long from, const long to);
|
||||
virtual void SetSelection(const long from, const long to);
|
||||
virtual void SetEditable(const bool editable);
|
||||
virtual void Replace(long from, long to, const wxString& value);
|
||||
virtual void Remove(long from, long to);
|
||||
virtual void SetSelection(long from, long to);
|
||||
virtual void SetEditable(bool editable);
|
||||
|
||||
virtual bool MSWCommand(const WXUINT param, const WXWORD id);
|
||||
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
||||
};
|
||||
|
||||
#endif // USE_COMBOBOX
|
||||
|
@ -31,7 +31,7 @@ public:
|
||||
virtual void Command(wxCommandEvent& WXUNUSED(event)) = 0; // Simulates an event
|
||||
virtual void ProcessCommand(wxCommandEvent& event); // Calls the callback and
|
||||
// appropriate event handlers
|
||||
virtual void SetClientSize(const int width, const int height);
|
||||
virtual void SetClientSize(int width, int height);
|
||||
virtual void SetLabel(const wxString& label);
|
||||
virtual wxString GetLabel(void) const ;
|
||||
|
||||
@ -46,15 +46,15 @@ public:
|
||||
#endif
|
||||
|
||||
// Places item in centre of panel - so can't be used BEFORE panel->Fit()
|
||||
void Centre(const int direction = wxHORIZONTAL);
|
||||
void Centre(int direction = wxHORIZONTAL);
|
||||
inline void Callback(const wxFunction function); // Adds callback
|
||||
|
||||
// MSW-specific
|
||||
|
||||
// Window procedure
|
||||
virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
||||
virtual void MSWOnMouseMove(const int x, const int y, const WXUINT flags);
|
||||
virtual bool MSWNotify(const WXWPARAM wParam, const WXLPARAM lParam);
|
||||
virtual void MSWOnMouseMove(int x, int y, WXUINT flags);
|
||||
virtual bool MSWNotify(WXWPARAM wParam, WXLPARAM lParam);
|
||||
|
||||
void OnEraseBackground(wxEraseEvent& event);
|
||||
|
||||
|
@ -46,11 +46,11 @@ public:
|
||||
inline wxCursor(const wxCursor& cursor) { Ref(cursor); }
|
||||
inline wxCursor(const wxCursor* cursor) { /* UnRef(); */ if (cursor) Ref(*cursor); }
|
||||
|
||||
wxCursor(const char bits[], const int width, const int height, const int hotSpotX = -1, const int hotSpotY = -1,
|
||||
wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1,
|
||||
const char maskBits[] = NULL);
|
||||
wxCursor(const wxString& name, const long flags = wxBITMAP_TYPE_CUR_RESOURCE,
|
||||
const int hotSpotX = 0, const int hotSpotY = 0);
|
||||
wxCursor(const int cursor_type);
|
||||
wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_CUR_RESOURCE,
|
||||
int hotSpotX = 0, int hotSpotY = 0);
|
||||
wxCursor(int cursor_type);
|
||||
~wxCursor(void);
|
||||
|
||||
virtual bool Ok(void) const { return (m_refData != NULL && M_CURSORDATA->m_hCursor) ; }
|
||||
|
@ -24,7 +24,7 @@ class WXDLLEXPORT wxPrinterDC: public wxDC
|
||||
DECLARE_CLASS(wxPrinterDC)
|
||||
|
||||
// Create a printer DC
|
||||
wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, const bool interactive = TRUE, const int orientation = wxPORTRAIT);
|
||||
wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, bool interactive = TRUE, int orientation = wxPORTRAIT);
|
||||
wxPrinterDC(WXHDC theDC);
|
||||
|
||||
~wxPrinterDC(void);
|
||||
|
@ -33,8 +33,8 @@ public:
|
||||
// Constructor with a modal flag, but no window id - the old convention
|
||||
inline wxDialog(wxWindow *parent,
|
||||
const wxString& title, bool modal,
|
||||
const int x = -1, const int y= -1, const int width = 500, const int height = 500,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE,
|
||||
int x = -1, int y= -1, int width = 500, int height = 500,
|
||||
long style = wxDEFAULT_DIALOG_STYLE,
|
||||
const wxString& name = wxDialogNameStr)
|
||||
{
|
||||
long modalStyle = modal ? wxDIALOG_MODAL : wxDIALOG_MODELESS ;
|
||||
@ -42,32 +42,32 @@ public:
|
||||
}
|
||||
|
||||
// Constructor with no modal flag - the new convention.
|
||||
inline wxDialog(wxWindow *parent, const wxWindowID id,
|
||||
inline wxDialog(wxWindow *parent, wxWindowID id,
|
||||
const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE,
|
||||
long style = wxDEFAULT_DIALOG_STYLE,
|
||||
const wxString& name = wxDialogNameStr)
|
||||
{
|
||||
Create(parent, id, title, pos, size, style, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxString& title, // bool modal = FALSE, // TODO make this a window style?
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_DIALOG_STYLE,
|
||||
long style = wxDEFAULT_DIALOG_STYLE,
|
||||
const wxString& name = wxDialogNameStr);
|
||||
|
||||
~wxDialog(void);
|
||||
|
||||
virtual bool Destroy(void);
|
||||
void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
void SetClientSize(const int width, const int height);
|
||||
void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
void SetClientSize(int width, int height);
|
||||
void GetPosition(int *x, int *y) const;
|
||||
bool Show(const bool show);
|
||||
bool Show(bool show);
|
||||
bool IsShown(void) const ;
|
||||
void Iconize(const bool iconize);
|
||||
void Iconize(bool iconize);
|
||||
|
||||
#if WXWIN_COMPATIBILITY
|
||||
inline bool Iconized(void) const { return IsIconized(); };
|
||||
@ -84,9 +84,9 @@ public:
|
||||
void OnPaint(wxPaintEvent& event);
|
||||
void OnCloseWindow(wxCloseEvent& event);
|
||||
|
||||
void SetModal(const bool flag);
|
||||
void SetModal(bool flag);
|
||||
|
||||
virtual void Centre(const int direction = wxBOTH);
|
||||
virtual void Centre(int direction = wxBOTH);
|
||||
virtual bool IsModal(void) const { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
|
||||
|
||||
// For now, same as Show(TRUE) but returns return code
|
||||
@ -108,7 +108,7 @@ public:
|
||||
// virtual bool MSWOnEraseBkgnd(WXHDC pDC);
|
||||
virtual bool MSWOnClose(void);
|
||||
inline bool IsModalShowing() const { return m_modalShowing ; }
|
||||
virtual WXHBRUSH OnCtlColor(const WXHDC pDC, const WXHWND pWnd, const WXUINT nCtlColor,
|
||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
||||
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
@ -75,8 +75,8 @@ char* WXDLLEXPORT wxFileSelector(const char *message = wxFileSelectorPromptStr,
|
||||
// An extended version of wxFileSelector
|
||||
char* WXDLLEXPORT wxFileSelectorEx(const char *message = wxFileSelectorPromptStr, const char *default_path = NULL,
|
||||
const char *default_filename = NULL, int *indexDefaultExtension = NULL,
|
||||
const char *wildcard = wxFileSelectorDefaultWildcardStr, const int flags = 0,
|
||||
wxWindow *parent = NULL, const int x = -1, const int y = -1);
|
||||
const char *wildcard = wxFileSelectorDefaultWildcardStr, int flags = 0,
|
||||
wxWindow *parent = NULL, int x = -1, int y = -1);
|
||||
|
||||
// Generic file load dialog
|
||||
char* WXDLLEXPORT wxLoadFileSelector(const char *what, const char *extension, const char *default_name = NULL, wxWindow *parent = NULL);
|
||||
|
@ -82,12 +82,12 @@ public:
|
||||
wxString GetWeightString(void) const ;
|
||||
inline bool GetUnderlined(void) const { return M_FONTDATA->m_underlined; }
|
||||
|
||||
void SetPointSize(const int pointSize);
|
||||
void SetFamily(const int family);
|
||||
void SetStyle(const int style);
|
||||
void SetWeight(const int weight);
|
||||
void SetPointSize(int pointSize);
|
||||
void SetFamily(int family);
|
||||
void SetStyle(int style);
|
||||
void SetWeight(int weight);
|
||||
void SetFaceName(const wxString& faceName);
|
||||
void SetUnderlined(const bool underlined);
|
||||
void SetUnderlined(bool underlined);
|
||||
|
||||
inline wxFont& operator = (const wxFont& font) { if (*this == font) return (*this); Ref(font); return *this; }
|
||||
inline bool operator == (const wxFont& font) { return m_refData == font.m_refData; }
|
||||
|
@ -30,11 +30,11 @@ class WXDLLEXPORT wxFrame: public wxWindow {
|
||||
public:
|
||||
wxFrame(void);
|
||||
inline wxFrame(wxWindow *parent,
|
||||
const wxWindowID id,
|
||||
wxWindowID id,
|
||||
const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE,
|
||||
long style = wxDEFAULT_FRAME_STYLE,
|
||||
const wxString& name = wxFrameNameStr)
|
||||
{
|
||||
Create(parent, id, title, pos, size, style, name);
|
||||
@ -43,14 +43,15 @@ public:
|
||||
~wxFrame(void);
|
||||
|
||||
bool Create(wxWindow *parent,
|
||||
const wxWindowID id,
|
||||
wxWindowID id,
|
||||
const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxDEFAULT_FRAME_STYLE,
|
||||
long style = wxDEFAULT_FRAME_STYLE,
|
||||
const wxString& name = wxFrameNameStr);
|
||||
|
||||
#if WXWIN_COMPATIBILITY
|
||||
/*
|
||||
// The default thing is to set the focus for the first child window.
|
||||
// Override for your own behaviour.
|
||||
virtual void OldOnActivate(bool flag);
|
||||
@ -60,15 +61,16 @@ public:
|
||||
|
||||
inline virtual void OldOnMenuCommand(int WXUNUSED(id)) {}; // Called on frame menu command
|
||||
void OldOnSize(int x, int y);
|
||||
*/
|
||||
#endif
|
||||
|
||||
virtual bool Destroy(void);
|
||||
void SetClientSize(const int width, const int height);
|
||||
void SetClientSize(int width, int height);
|
||||
void GetClientSize(int *width, int *height) const;
|
||||
|
||||
void GetSize(int *width, int *height) const ;
|
||||
void GetPosition(int *x, int *y) const ;
|
||||
void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
|
||||
void OnSize(wxSizeEvent& event);
|
||||
void OnMenuHighlight(wxMenuEvent& event);
|
||||
@ -76,7 +78,7 @@ public:
|
||||
void OnIdle(wxIdleEvent& event);
|
||||
void OnCloseWindow(wxCloseEvent& event);
|
||||
|
||||
bool Show(const bool show);
|
||||
bool Show(bool show);
|
||||
|
||||
// Set menu bar
|
||||
void SetMenuBar(wxMenuBar *menu_bar);
|
||||
@ -86,7 +88,7 @@ public:
|
||||
void SetTitle(const wxString& title);
|
||||
wxString GetTitle(void) const ;
|
||||
|
||||
void Centre(const int direction = wxBOTH);
|
||||
void Centre(int direction = wxBOTH);
|
||||
|
||||
// Call this to simulate a menu command
|
||||
virtual void Command(int id);
|
||||
@ -96,14 +98,14 @@ public:
|
||||
virtual void SetIcon(const wxIcon& icon);
|
||||
|
||||
// Create status line
|
||||
virtual bool CreateStatusBar(const int number=1);
|
||||
virtual bool CreateStatusBar(int number=1);
|
||||
inline wxStatusBar *GetStatusBar() const { return m_frameStatusBar; }
|
||||
|
||||
// Set status line text
|
||||
virtual void SetStatusText(const wxString& text, const int number = 0);
|
||||
virtual void SetStatusText(const wxString& text, int number = 0);
|
||||
|
||||
// Set status line widths
|
||||
virtual void SetStatusWidths(const int n, const int *widths_field);
|
||||
virtual void SetStatusWidths(int n, int *widths_field);
|
||||
|
||||
// Hint to tell framework which status bar to use
|
||||
// TODO: should this go into a wxFrameworkSettings class perhaps?
|
||||
@ -114,18 +116,18 @@ public:
|
||||
virtual void Fit(void);
|
||||
|
||||
// Iconize
|
||||
virtual void Iconize(const bool iconize);
|
||||
virtual void Iconize(bool iconize);
|
||||
|
||||
virtual bool IsIconized(void) const ;
|
||||
|
||||
// Compatibility
|
||||
inline bool Iconized(void) const { return IsIconized(); }
|
||||
|
||||
virtual void Maximize(const bool maximize);
|
||||
virtual void Maximize(bool maximize);
|
||||
virtual bool LoadAccelerators(const wxString& table);
|
||||
|
||||
virtual void PositionStatusBar(void);
|
||||
virtual wxStatusBar *OnCreateStatusBar(const int number);
|
||||
virtual wxStatusBar *OnCreateStatusBar(int number);
|
||||
|
||||
// Query app for menu item updates (called from OnIdle)
|
||||
void DoMenuUpdates(void);
|
||||
@ -139,13 +141,13 @@ public:
|
||||
// Handlers
|
||||
bool MSWOnPaint(void);
|
||||
WXHICON MSWOnQueryDragIcon(void);
|
||||
void MSWOnSize(const int x, const int y, const WXUINT flag);
|
||||
bool MSWOnCommand(const WXWORD id, const WXWORD cmd, const WXHWND control);
|
||||
void MSWOnSize(int x, int y, WXUINT flag);
|
||||
bool MSWOnCommand(WXWORD id, WXWORD cmd, WXHWND control);
|
||||
bool MSWOnClose(void);
|
||||
void MSWOnMenuHighlight(const WXWORD item, const WXWORD flags, const WXHMENU sysmenu);
|
||||
void MSWOnMenuHighlight(WXWORD item, WXWORD flags, WXHMENU sysmenu);
|
||||
bool MSWProcessMessage(WXMSG *msg);
|
||||
void MSWCreate(const int id, wxWindow *parent, const char *WXUNUSED(wclass), wxWindow *wx_win, const char *title,
|
||||
const int x, const int y, const int width, const int height, const long style);
|
||||
void MSWCreate(int id, wxWindow *parent, const char *WXUNUSED(wclass), wxWindow *wx_win, const char *title,
|
||||
int x, int y, int width, int height, long style);
|
||||
|
||||
protected:
|
||||
wxMenuBar * m_frameMenuBar;
|
||||
|
@ -27,29 +27,29 @@ class WXDLLEXPORT wxGauge95: public wxControl
|
||||
public:
|
||||
inline wxGauge95(void) { m_rangeMax = 0; m_gaugePos = 0; }
|
||||
|
||||
inline wxGauge95(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
inline wxGauge95(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxGaugeNameStr)
|
||||
{
|
||||
Create(parent, id, range, pos, size, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxGaugeNameStr);
|
||||
|
||||
void SetShadowWidth(const int w);
|
||||
void SetBezelFace(const int w);
|
||||
void SetRange(const int r);
|
||||
void SetValue(const int pos);
|
||||
void SetShadowWidth(int w);
|
||||
void SetBezelFace(int w);
|
||||
void SetRange(int r);
|
||||
void SetValue(int pos);
|
||||
|
||||
int GetShadowWidth(void) const ;
|
||||
int GetBezelFace(void) const ;
|
||||
@ -64,7 +64,7 @@ class WXDLLEXPORT wxGauge95: public wxControl
|
||||
inline void SetButtonColour(const wxColour& col) { SetForegroundColour(col); }
|
||||
#endif
|
||||
|
||||
void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
|
||||
virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
|
||||
|
||||
|
@ -27,29 +27,29 @@ class WXDLLEXPORT wxGaugeMSW: public wxControl
|
||||
public:
|
||||
inline wxGaugeMSW(void) { m_rangeMax = 0; m_gaugePos = 0; }
|
||||
|
||||
inline wxGaugeMSW(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
inline wxGaugeMSW(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxGaugeNameStr)
|
||||
{
|
||||
Create(parent, id, range, pos, size, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
const int range,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
int range,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const long style = wxGA_HORIZONTAL,
|
||||
long style = wxGA_HORIZONTAL,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxGaugeNameStr);
|
||||
|
||||
void SetShadowWidth(const int w);
|
||||
void SetBezelFace(const int w);
|
||||
void SetRange(const int r);
|
||||
void SetValue(const int pos);
|
||||
void SetShadowWidth(int w);
|
||||
void SetBezelFace(int w);
|
||||
void SetRange(int r);
|
||||
void SetValue(int pos);
|
||||
|
||||
int GetShadowWidth(void) const ;
|
||||
int GetBezelFace(void) const ;
|
||||
@ -64,7 +64,7 @@ class WXDLLEXPORT wxGaugeMSW: public wxControl
|
||||
inline void SetButtonColour(const wxColour& col) { SetForegroundColour(col); }
|
||||
#endif
|
||||
|
||||
void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
|
||||
virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
|
||||
|
||||
|
@ -45,12 +45,12 @@ public:
|
||||
inline wxIcon(const wxIcon& icon) { Ref(icon); }
|
||||
inline wxIcon(const wxIcon* icon) { /* UnRef(); */ if (icon) Ref(*icon); }
|
||||
|
||||
wxIcon(const char bits[], const int width, const int height);
|
||||
wxIcon(const wxString& name, const long flags = wxBITMAP_TYPE_ICO_RESOURCE,
|
||||
wxIcon(const char bits[], int width, int height);
|
||||
wxIcon(const wxString& name, long flags = wxBITMAP_TYPE_ICO_RESOURCE,
|
||||
int desiredWidth = -1, int desiredHeight = -1);
|
||||
~wxIcon(void);
|
||||
|
||||
bool LoadFile(const wxString& name, const long flags = wxBITMAP_TYPE_ICO_RESOURCE,
|
||||
bool LoadFile(const wxString& name, long flags = wxBITMAP_TYPE_ICO_RESOURCE,
|
||||
int desiredWidth = -1, int desiredHeight = -1);
|
||||
|
||||
inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
|
||||
@ -78,7 +78,7 @@ public:
|
||||
m_type = wxBITMAP_TYPE_ICO;
|
||||
};
|
||||
|
||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, const long flags,
|
||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
||||
int desiredWidth = -1, int desiredHeight = -1);
|
||||
};
|
||||
|
||||
@ -93,7 +93,7 @@ public:
|
||||
m_type = wxBITMAP_TYPE_ICO_RESOURCE;
|
||||
};
|
||||
|
||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, const long flags,
|
||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
||||
int desiredWidth = -1, int desiredHeight = -1);
|
||||
|
||||
};
|
||||
|
@ -63,7 +63,7 @@ class WXDLLEXPORT wxImageList: public wxObject
|
||||
// Specify the width and height of the images in the list,
|
||||
// whether there are masks associated with them (e.g. if creating images
|
||||
// from icons), and the initial size of the list.
|
||||
inline wxImageList(const int width, const int height, const bool mask = TRUE, const int initialCount = 1)
|
||||
inline wxImageList(int width, int height, bool mask = TRUE, int initialCount = 1)
|
||||
{
|
||||
Create(width, height, mask, initialCount);
|
||||
}
|
||||
@ -83,7 +83,7 @@ class WXDLLEXPORT wxImageList: public wxObject
|
||||
// width, height specify the size of the images in the list (all the same).
|
||||
// mask specifies whether the images have masks or not.
|
||||
// initialNumber is the initial number of images to reserve.
|
||||
bool Create(const int width, const int height, const bool mask = TRUE, const int initialNumber = 1);
|
||||
bool Create(int width, int height, bool mask = TRUE, int initialNumber = 1);
|
||||
|
||||
// Adds a bitmap, and optionally a mask bitmap.
|
||||
// Note that wxImageList creates *new* bitmaps, so you may delete
|
||||
@ -101,21 +101,21 @@ class WXDLLEXPORT wxImageList: public wxObject
|
||||
// Replaces a bitmap, optionally passing a mask bitmap.
|
||||
// Note that wxImageList creates new bitmaps, so you may delete
|
||||
// 'bitmap' and 'mask' after calling Replace.
|
||||
bool Replace(const int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
|
||||
bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
|
||||
|
||||
/* Not supported by Win95
|
||||
// Replacing a bitmap, using the specified colour to create the mask bitmap
|
||||
// Note that wxImageList creates new bitmaps, so you may delete
|
||||
// 'bitmap'.
|
||||
bool Replace(const int index, const wxBitmap& bitmap, const wxColour& maskColour);
|
||||
bool Replace(int index, const wxBitmap& bitmap, const wxColour& maskColour);
|
||||
*/
|
||||
|
||||
// Replaces a bitmap and mask from an icon.
|
||||
// You can delete 'icon' after calling Replace.
|
||||
bool Replace(const int index, const wxIcon& icon);
|
||||
bool Replace(int index, const wxIcon& icon);
|
||||
|
||||
// Removes the image at the given index.
|
||||
bool Remove(const int index);
|
||||
bool Remove(int index);
|
||||
|
||||
// Remove all images
|
||||
bool RemoveAll(void);
|
||||
@ -124,13 +124,13 @@ class WXDLLEXPORT wxImageList: public wxObject
|
||||
// If 'solidBackground' is TRUE, Draw sets the image list background
|
||||
// colour to the background colour of the wxDC, to speed up
|
||||
// drawing by eliminating masked drawing where possible.
|
||||
bool Draw(const int index, wxDC& dc, const int x, const int y,
|
||||
const int flags = wxIMAGELIST_DRAW_NORMAL, const bool solidBackground = FALSE);
|
||||
bool Draw(int index, wxDC& dc, int x, int y,
|
||||
int flags = wxIMAGELIST_DRAW_NORMAL, bool solidBackground = FALSE);
|
||||
|
||||
// TODO: miscellaneous functionality
|
||||
/*
|
||||
wxIcon *MakeIcon(const int index);
|
||||
bool SetOverlayImage(const int index, const int overlayMask);
|
||||
wxIcon *MakeIcon(int index);
|
||||
bool SetOverlayImage(int index, int overlayMask);
|
||||
|
||||
*/
|
||||
|
||||
@ -139,7 +139,7 @@ class WXDLLEXPORT wxImageList: public wxObject
|
||||
#if 0
|
||||
// Creates a new drag image by combining the given image (typically a mouse cursor image)
|
||||
// with the current drag image.
|
||||
bool SetDragCursorImage(const int index, const wxPoint& hotSpot);
|
||||
bool SetDragCursorImage(int index, const wxPoint& hotSpot);
|
||||
|
||||
// If successful, returns a pointer to the temporary image list that is used for dragging;
|
||||
// otherwise, NULL.
|
||||
@ -152,7 +152,7 @@ class WXDLLEXPORT wxImageList: public wxObject
|
||||
// current cursor. In response to subsequent mouse move messages, you can move the drag image
|
||||
// by using the DragMove member function. To end the drag operation, you can use the EndDrag
|
||||
// member function.
|
||||
bool BeginDrag(const int index, const wxPoint& hotSpot);
|
||||
bool BeginDrag(int index, const wxPoint& hotSpot);
|
||||
|
||||
// Ends a drag operation.
|
||||
bool EndDrag(void);
|
||||
|
@ -41,28 +41,28 @@ class WXDLLEXPORT wxListBox: public wxControl
|
||||
public:
|
||||
|
||||
wxListBox(void);
|
||||
inline wxListBox(wxWindow *parent, const wxWindowID id,
|
||||
inline wxListBox(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxListBoxNameStr)
|
||||
{
|
||||
Create(parent, id, pos, size, n, choices, style, validator, name);
|
||||
}
|
||||
|
||||
bool Create(wxWindow *parent, const wxWindowID id,
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
const int n = 0, const wxString choices[] = NULL,
|
||||
const long style = 0,
|
||||
int n = 0, const wxString choices[] = NULL,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxListBoxNameStr);
|
||||
|
||||
~wxListBox();
|
||||
|
||||
bool MSWCommand(const WXUINT param, const WXWORD id);
|
||||
bool MSWCommand(WXUINT param, WXWORD id);
|
||||
|
||||
#if USE_OWNER_DRAWN
|
||||
bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item);
|
||||
@ -77,35 +77,35 @@ class WXDLLEXPORT wxListBox: public wxControl
|
||||
|
||||
virtual void Append(const wxString& item);
|
||||
virtual void Append(const wxString& item, char *clientData);
|
||||
virtual void Set(const int n, const wxString* choices, char **clientData = NULL);
|
||||
virtual void Set(int n, const wxString* choices, char **clientData = NULL);
|
||||
virtual int FindString(const wxString& s) const ;
|
||||
virtual void Clear(void);
|
||||
virtual void SetSelection(const int n, const bool select = TRUE);
|
||||
virtual void SetSelection(int n, bool select = TRUE);
|
||||
|
||||
virtual void Deselect(const int n);
|
||||
virtual void Deselect(int n);
|
||||
|
||||
// For single choice list item only
|
||||
virtual int GetSelection() const ;
|
||||
virtual void Delete(const int n);
|
||||
virtual char *GetClientData(const int n) const ;
|
||||
virtual void SetClientData(const int n, char *clientData);
|
||||
virtual void SetString(const int n, const wxString& s);
|
||||
virtual void Delete(int n);
|
||||
virtual char *GetClientData(int n) const ;
|
||||
virtual void SetClientData(int n, char *clientData);
|
||||
virtual void SetString(int n, const wxString& s);
|
||||
|
||||
// For single or multiple choice list item
|
||||
virtual int GetSelections(wxArrayInt& aSelections) const;
|
||||
virtual bool Selected(const int n) const ;
|
||||
virtual wxString GetString(const int n) const ;
|
||||
virtual void SetSize(const int x, const int y, const int width, const int height, const int sizeFlags = wxSIZE_AUTO);
|
||||
virtual bool Selected(int n) const ;
|
||||
virtual wxString GetString(int n) const ;
|
||||
virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
|
||||
// Set the specified item at the first visible item
|
||||
// or scroll to max range.
|
||||
virtual void SetFirstItem(const int n) ;
|
||||
virtual void SetFirstItem(int n) ;
|
||||
virtual void SetFirstItem(const wxString& s) ;
|
||||
|
||||
virtual void InsertItems(const int nItems, const wxString items[], const int pos);
|
||||
virtual void InsertItems(int nItems, const wxString items[], int pos);
|
||||
|
||||
virtual wxString GetStringSelection(void) const ;
|
||||
virtual bool SetStringSelection(const wxString& s, const bool flag = TRUE);
|
||||
virtual bool SetStringSelection(const wxString& s, bool flag = TRUE);
|
||||
virtual int Number(void) const ;
|
||||
|
||||
void Command(wxCommandEvent& event);
|
||||
@ -116,7 +116,7 @@ class WXDLLEXPORT wxListBox: public wxControl
|
||||
// Otherwise, all strings are used.
|
||||
virtual void SetHorizontalExtent(const wxString& s = wxEmptyString);
|
||||
|
||||
virtual WXHBRUSH OnCtlColor(const WXHDC pDC, const WXHWND pWnd, const WXUINT nCtlColor,
|
||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
||||
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
||||
|
||||
virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user