automated virtual/const fixes by ifacecheck

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-09-22 19:01:17 +00:00
parent 62a7da7532
commit b7e94bd7eb
15 changed files with 56 additions and 56 deletions

View File

@@ -120,7 +120,7 @@ public:
/** /**
Sets selected items from the array of selected items' indexes. Sets selected items from the array of selected items' indexes.
*/ */
void SetSelections(const wxArrayInt& selections) const; void SetSelections(const wxArrayInt& selections);
/** /**
Shows the dialog, returning either wxID_OK or wxID_CANCEL. Shows the dialog, returning either wxID_OK or wxID_CANCEL.
@@ -265,7 +265,7 @@ public:
/** /**
Sets the index of the initially selected item. Sets the index of the initially selected item.
*/ */
void SetSelection(int selection) const; void SetSelection(int selection);
/** /**
Shows the dialog, returning either wxID_OK or wxID_CANCEL. Shows the dialog, returning either wxID_OK or wxID_CANCEL.

View File

@@ -123,7 +123,7 @@ public:
/** /**
Destructor, destroying the choice item. Destructor, destroying the choice item.
*/ */
~wxChoice(); virtual ~wxChoice();
//@{ //@{
/** /**
@@ -150,7 +150,7 @@ public:
@remarks This is implemented for GTK and Motif only and always @remarks This is implemented for GTK and Motif only and always
returns 1 for the other platforms. returns 1 for the other platforms.
*/ */
int GetColumns() const; virtual int GetColumns() const;
/** /**
Unlike wxControlWithItems::GetSelection() which only returns the Unlike wxControlWithItems::GetSelection() which only returns the
@@ -164,7 +164,7 @@ public:
In older versions, wxControlWithItems::GetSelection() itself In older versions, wxControlWithItems::GetSelection() itself
behaved like this. behaved like this.
*/ */
int GetCurrentSelection() const; virtual int GetCurrentSelection() const;
/** /**
Sets the number of columns in this choice item. Sets the number of columns in this choice item.
@@ -175,6 +175,6 @@ public:
@remarks This is implemented for GTK and Motif only and doesnt do @remarks This is implemented for GTK and Motif only and doesnt do
anything under other platforms. anything under other platforms.
*/ */
void SetColumns(int n = 1); virtual void SetColumns(int n = 1);
}; };

View File

@@ -70,7 +70,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxClipboard(); virtual ~wxClipboard();
/** /**
Call this function to add the data object to the clipboard. You may Call this function to add the data object to the clipboard. You may
@@ -82,19 +82,19 @@ public:
@see SetData() @see SetData()
*/ */
bool AddData(wxDataObject* data); virtual bool AddData(wxDataObject* data);
/** /**
Clears the global clipboard object and the system's clipboard if Clears the global clipboard object and the system's clipboard if
possible. possible.
*/ */
void Clear(); virtual void Clear();
/** /**
Call this function to close the clipboard, having opened it with Call this function to close the clipboard, having opened it with
Open(). Open().
*/ */
void Close(); virtual void Close();
/** /**
Flushes the clipboard: this means that the data which is currently on Flushes the clipboard: this means that the data which is currently on
@@ -104,18 +104,18 @@ public:
@return @false if the operation is unsuccessful for any reason. @return @false if the operation is unsuccessful for any reason.
*/ */
bool Flush(); virtual bool Flush();
/** /**
Call this function to fill @a data with data on the clipboard, if Call this function to fill @a data with data on the clipboard, if
available in the required format. Returns @true on success. available in the required format. Returns @true on success.
*/ */
bool GetData(wxDataObject& data); virtual bool GetData(wxDataObject& data);
/** /**
Returns @true if the clipboard has been opened. Returns @true if the clipboard has been opened.
*/ */
bool IsOpened() const; virtual bool IsOpened() const;
/** /**
Returns @true if there is data which matches the data format of the Returns @true if there is data which matches the data format of the
@@ -124,7 +124,7 @@ public:
@todo The name of this function is misleading. This should be renamed @todo The name of this function is misleading. This should be renamed
to something that more accurately indicates what it does. to something that more accurately indicates what it does.
*/ */
bool IsSupported(const wxDataFormat& format); virtual bool IsSupported(const wxDataFormat& format);
/** /**
Returns @true if we are using the primary selection, @false if Returns @true if we are using the primary selection, @false if
@@ -144,7 +144,7 @@ public:
@return @true on success. This should be tested (as in the sample @return @true on success. This should be tested (as in the sample
shown above). shown above).
*/ */
bool Open(); virtual bool Open();
/** /**
Call this function to set the data object to the clipboard. This Call this function to set the data object to the clipboard. This
@@ -156,7 +156,7 @@ public:
@see AddData() @see AddData()
*/ */
bool SetData(wxDataObject* data); virtual bool SetData(wxDataObject* data);
/** /**
On platforms supporting it (all X11-based ports), wxClipboard uses the On platforms supporting it (all X11-based ports), wxClipboard uses the

View File

@@ -35,7 +35,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxClientDataContainer(); virtual ~wxClientDataContainer();
/** /**
Get the untyped client data. Get the untyped client data.
@@ -99,7 +99,7 @@ public:
/** /**
Virtual destructor. Virtual destructor.
*/ */
~wxClientData(); virtual ~wxClientData();
}; };

View File

@@ -40,12 +40,12 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxCommand(); virtual ~wxCommand();
/** /**
Returns @true if the command can be undone, @false otherwise. Returns @true if the command can be undone, @false otherwise.
*/ */
bool CanUndo(); virtual bool CanUndo() const;
/** /**
Override this member function to execute the appropriate action when Override this member function to execute the appropriate action when
@@ -61,7 +61,7 @@ public:
/** /**
Returns the command name. Returns the command name.
*/ */
wxString GetName(); virtual wxString GetName() const;
/** /**
Override this member function to un-execute a previous Do. Override this member function to un-execute a previous Do.
@@ -118,13 +118,13 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxCommandProcessor(); virtual ~wxCommandProcessor();
/** /**
Returns @true if the currently-active command can be undone, @false Returns @true if the currently-active command can be undone, @false
otherwise. otherwise.
*/ */
virtual bool CanUndo(); virtual bool CanUndo() const;
/** /**
Deletes all commands in the list and sets the current command pointer Deletes all commands in the list and sets the current command pointer
@@ -135,7 +135,7 @@ public:
/** /**
Returns the list of commands. Returns the list of commands.
*/ */
wxList& GetCommands() const; wxList& GetCommands();
/** /**
Returns the edit menu associated with the command processor. Returns the edit menu associated with the command processor.
@@ -180,13 +180,13 @@ public:
the last save operation. This only works if MarkAsSaved() is called the last save operation. This only works if MarkAsSaved() is called
whenever the project is saved. whenever the project is saved.
*/ */
virtual bool IsDirty(); virtual bool IsDirty() const;
/** /**
You must call this method whenever the project is saved if you plan to You must call this method whenever the project is saved if you plan to
use IsDirty(). use IsDirty().
*/ */
virtual void MarkAsSaved(); void MarkAsSaved();
/** /**
Executes (redoes) the current command (the command that has just been Executes (redoes) the current command (the command that has just been
@@ -206,7 +206,7 @@ public:
Sets the menu labels according to the currently set menu and the Sets the menu labels according to the currently set menu and the
current command state. current command state.
*/ */
void SetMenuStrings(); virtual void SetMenuStrings();
/** /**
Sets the string that will be appended to the Redo menu item. Sets the string that will be appended to the Redo menu item.

View File

@@ -41,13 +41,13 @@ public:
The default value is @true. The default value is @true.
*/ */
bool GetAllowSymbols(); bool GetAllowSymbols() const;
/** /**
Gets the font chosen by the user if the user pressed OK Gets the font chosen by the user if the user pressed OK
(wxFontDialog::ShowModal() returned wxID_OK). (wxFontDialog::ShowModal() returned wxID_OK).
*/ */
wxFont GetChosenFont(); wxFont GetChosenFont() const;
/** /**
Gets the colour associated with the font dialog. Gets the colour associated with the font dialog.
@@ -63,20 +63,20 @@ public:
The default value is @true. The default value is @true.
*/ */
bool GetEnableEffects(); bool GetEnableEffects() const;
/** /**
Gets the font that will be initially used by the font dialog. This Gets the font that will be initially used by the font dialog. This
should have previously been set by the application. should have previously been set by the application.
*/ */
wxFont GetInitialFont(); wxFont GetInitialFont() const;
/** /**
Returns @true if the Help button will be shown (Windows only). Returns @true if the Help button will be shown (Windows only).
The default value is @false. The default value is @false.
*/ */
bool GetShowHelp(); bool GetShowHelp() const;
/** /**
Under Windows, determines whether symbol fonts can be selected. Has no Under Windows, determines whether symbol fonts can be selected. Has no
@@ -162,7 +162,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxPageSetupDialogData(); virtual ~wxPageSetupDialogData();
/** /**
Enables or disables the "Help" button (Windows only). Enables or disables the "Help" button (Windows only).
@@ -365,7 +365,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxColourData(); virtual ~wxColourData();
/** /**
Under Windows, determines whether the Windows colour dialog will Under Windows, determines whether the Windows colour dialog will
@@ -383,7 +383,7 @@ public:
The default colour is black. The default colour is black.
*/ */
wxColour& GetColour() const; wxColour& GetColour();
/** /**
Returns custom colours associated with the colour dialog. Returns custom colours associated with the colour dialog.
@@ -518,7 +518,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxPrintData(); virtual ~wxPrintData();
/** /**
Returns the current bin (papersource). By default, the system is left Returns the current bin (papersource). By default, the system is left
@@ -691,7 +691,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxPrintDialogData(); virtual ~wxPrintDialogData();
/** /**
Enables or disables the "Help" button. Enables or disables the "Help" button.

View File

@@ -154,7 +154,7 @@ public:
/** /**
Collapses or expands the pane window. Collapses or expands the pane window.
*/ */
void Collapse(bool collapse = true); virtual void Collapse(bool collapse = true);
/** /**
Same as calling Collapse(@false). Same as calling Collapse(@false).
@@ -165,12 +165,12 @@ public:
Returns a pointer to the pane window. Add controls to the returned Returns a pointer to the pane window. Add controls to the returned
wxWindow to make them collapsible. wxWindow to make them collapsible.
*/ */
wxWindow* GetPane() const; virtual wxWindow* GetPane() const;
/** /**
Returns @true if the pane window is currently hidden. Returns @true if the pane window is currently hidden.
*/ */
bool IsCollapsed() const; virtual bool IsCollapsed() const;
/** /**
Returns @true if the pane window is currently shown. Returns @true if the pane window is currently shown.

View File

@@ -37,7 +37,7 @@ public:
/** /**
Destructor. Destructor.
*/ */
~wxColourDialog(); virtual ~wxColourDialog();
/** /**
Same as wxColourDialog(). Same as wxColourDialog().
@@ -53,7 +53,7 @@ public:
Shows the dialog, returning wxID_OK if the user pressed OK, and Shows the dialog, returning wxID_OK if the user pressed OK, and
wxID_CANCEL otherwise. wxID_CANCEL otherwise.
*/ */
int ShowModal(); virtual int ShowModal();
}; };

View File

@@ -71,12 +71,12 @@ public:
Returns the alpha value, on platforms where alpha is not yet supported, this Returns the alpha value, on platforms where alpha is not yet supported, this
always returns wxALPHA_OPAQUE. always returns wxALPHA_OPAQUE.
*/ */
unsigned char Alpha() const; virtual unsigned char Alpha() const;
/** /**
Returns the blue intensity. Returns the blue intensity.
*/ */
unsigned char Blue() const; virtual unsigned char Blue() const;
/** /**
Converts this colour to a wxString using the given flags. Converts this colour to a wxString using the given flags.
@@ -108,7 +108,7 @@ public:
/** /**
Returns the green intensity. Returns the green intensity.
*/ */
unsigned char Green() const; virtual unsigned char Green() const;
/** /**
Returns @true if the colour object is valid (the colour has been initialised Returns @true if the colour object is valid (the colour has been initialised
@@ -119,7 +119,7 @@ public:
/** /**
Returns the red intensity. Returns the red intensity.
*/ */
unsigned char Red() const; virtual unsigned char Red() const;
//@{ //@{
/** /**

View File

@@ -150,7 +150,7 @@ public:
/** /**
Destructor, destroying the combobox. Destructor, destroying the combobox.
*/ */
~wxComboBox(); virtual ~wxComboBox();
//@{ //@{
/** /**
@@ -221,7 +221,7 @@ public:
and returns the item currently selected in the dropdown list if it's and returns the item currently selected in the dropdown list if it's
open or the same thing as wxControlWithItems::GetSelection() otherwise. open or the same thing as wxControlWithItems::GetSelection() otherwise.
*/ */
int GetCurrentSelection() const; virtual int GetCurrentSelection() const;
/** /**
Returns the insertion point for the combobox's text field. Returns the insertion point for the combobox's text field.
@@ -243,7 +243,7 @@ public:
Currently this method is only implemented in wxMSW and wxGTK. Currently this method is only implemented in wxMSW and wxGTK.
*/ */
void GetSelection(long* from, long* to) const; virtual void GetSelection(long* from, long* to) const;
/** /**
Returns the current value in the combobox text field. Returns the current value in the combobox text field.
@@ -309,7 +309,7 @@ public:
wxControlWithItems::SetSelection(). wxControlWithItems::SetSelection().
@endWxPythonOnly @endWxPythonOnly
*/ */
void SetSelection(long from, long to); virtual void SetSelection(long from, long to);
/** /**
Sets the text for the combobox text field. Sets the text for the combobox text field.

View File

@@ -335,7 +335,7 @@ public:
/** /**
Empty but ensures that dtor of all derived classes is virtual. Empty but ensures that dtor of all derived classes is virtual.
*/ */
~wxConfigBase(); virtual ~wxConfigBase();
/** /**

View File

@@ -27,7 +27,7 @@ public:
@see wxCommandEvent @see wxCommandEvent
*/ */
void Command(wxCommandEvent& event); virtual void Command(wxCommandEvent& event);
/** /**
Returns the control's text. Returns the control's text.

View File

@@ -205,7 +205,7 @@ public:
/** /**
Destroys the context help object. Destroys the context help object.
*/ */
~wxContextHelp(); virtual ~wxContextHelp();
/** /**
Puts the application into context-sensitive help mode. @a window is the Puts the application into context-sensitive help mode. @a window is the

View File

@@ -191,7 +191,7 @@ public:
destroyed when the window is destroyed. wxWidgets destroys all cursors destroyed when the window is destroyed. wxWidgets destroys all cursors
on application exit, although it is best to clean them up explicitly. on application exit, although it is best to clean them up explicitly.
*/ */
~wxCursor(); virtual ~wxCursor();
/** /**
Returns @true if cursor data is present. Returns @true if cursor data is present.

View File

@@ -251,7 +251,7 @@ public:
@return @true if the class represented by info is the same class as this @return @true if the class represented by info is the same class as this
one or is derived from it. one or is derived from it.
*/ */
bool IsKindOf(const wxClassInfo* info); bool IsKindOf(const wxClassInfo* info) const;
/** /**
Returns @true if this object has the same data pointer as @a obj. Returns @true if this object has the same data pointer as @a obj.
@@ -263,7 +263,7 @@ public:
@see @ref overview_refcount @see @ref overview_refcount
*/ */
bool IsSameAs(const wxObject& obj); bool IsSameAs(const wxObject& obj) const;
/** /**
Makes this object refer to the data in @a clone. Makes this object refer to the data in @a clone.