]> git.saurik.com Git - wxWidgets.git/commitdiff
virtual/static attributes automated fixes by ifacecheck
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 13 Oct 2008 11:09:56 +0000 (11:09 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 13 Oct 2008 11:09:56 +0000 (11:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

34 files changed:
interface/wx/bitmap.h
interface/wx/brush.h
interface/wx/colour.h
interface/wx/combobox.h
interface/wx/cursor.h
interface/wx/dcsvg.h
interface/wx/dialog.h
interface/wx/filesys.h
interface/wx/font.h
interface/wx/grid.h
interface/wx/html/htmlpars.h
interface/wx/htmllbox.h
interface/wx/icon.h
interface/wx/listbook.h
interface/wx/mdi.h
interface/wx/object.h
interface/wx/odcombo.h
interface/wx/palette.h
interface/wx/pen.h
interface/wx/propdlg.h
interface/wx/quantize.h
interface/wx/richtext/richtextbuffer.h
interface/wx/richtext/richtextctrl.h
interface/wx/richtext/richtextformatdlg.h
interface/wx/richtext/richtexthtml.h
interface/wx/richtext/richtextstyles.h
interface/wx/richtext/richtextxml.h
interface/wx/spinctrl.h
interface/wx/stream.h
interface/wx/textctrl.h
interface/wx/textfile.h
interface/wx/toplevel.h
interface/wx/vlbox.h
interface/wx/window.h

index ef1996453ca5aa229cee54f931e1c1fad233f6af..07503809e9671b88fba30738b22ceafdd888dcd5 100644 (file)
@@ -492,7 +492,7 @@ public:
     /**
         Returns @true if bitmap data is present.
     */
     /**
         Returns @true if bitmap data is present.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Loads a bitmap from a file or resource.
 
     /**
         Loads a bitmap from a file or resource.
index 512b7f00ebaf07eb2c3c6ff0f0dbe397f7259947..7df0e781821ffc9923d830d98f8d8f3f4303a656 100644 (file)
@@ -165,7 +165,7 @@ public:
         constructor has been used (for example, the brush is a member of a class, or
         @NULL has been assigned to it).
     */
         constructor has been used (for example, the brush is a member of a class, or
         @NULL has been assigned to it).
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     //@{
     /**
 
     //@{
     /**
index b1fcc6bebffa0d52429b365ad83a3f3869dbe2b8..b1102d41e8bafc1e53efef8a1121189fa547ef77 100644 (file)
@@ -128,7 +128,7 @@ public:
         Returns @true if the colour object is valid (the colour has been initialised
         with RGB values).
     */
         Returns @true if the colour object is valid (the colour has been initialised
         with RGB values).
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Returns the red intensity.
 
     /**
         Returns the red intensity.
index 9f2c45ea2fe306fcfef522935b3e870107fe82f7..a13a5838e0a6b130cb961fa4efa4b3f97ce290f1 100644 (file)
@@ -179,42 +179,42 @@ public:
         Returns @true if the combobox is editable and there is a text selection
         to copy to the clipboard. Only available on Windows.
     */
         Returns @true if the combobox is editable and there is a text selection
         to copy to the clipboard. Only available on Windows.
     */
-    bool CanCopy() const;
+    virtual bool CanCopy() const;
 
     /**
         Returns @true if the combobox is editable and there is a text selection
         to copy to the clipboard. Only available on Windows.
     */
 
     /**
         Returns @true if the combobox is editable and there is a text selection
         to copy to the clipboard. Only available on Windows.
     */
-    bool CanCut() const;
+    virtual bool CanCut() const;
 
     /**
         Returns @true if the combobox is editable and there is text on the
         clipboard that can be pasted into the text field. Only available on
         Windows.
     */
 
     /**
         Returns @true if the combobox is editable and there is text on the
         clipboard that can be pasted into the text field. Only available on
         Windows.
     */
-    bool CanPaste() const;
+    virtual bool CanPaste() const;
 
     /**
         Returns @true if the combobox is editable and the last undo can be
         redone. Only available on Windows.
     */
 
     /**
         Returns @true if the combobox is editable and the last undo can be
         redone. Only available on Windows.
     */
-    bool CanRedo() const;
+    virtual bool CanRedo() const;
 
     /**
         Returns @true if the combobox is editable and the last edit can be
         undone. Only available on Windows.
     */
 
     /**
         Returns @true if the combobox is editable and the last edit can be
         undone. Only available on Windows.
     */
-    bool CanUndo() const;
+    virtual bool CanUndo() const;
 
     /**
         Copies the selected text to the clipboard.
     */
 
     /**
         Copies the selected text to the clipboard.
     */
-    void Copy();
+    virtual void Copy();
 
     /**
         Copies the selected text to the clipboard and removes the selection.
     */
 
     /**
         Copies the selected text to the clipboard and removes the selection.
     */
-    void Cut();
+    virtual void Cut();
 
     /**
         This function does the same things as wxChoice::GetCurrentSelection()
 
     /**
         This function does the same things as wxChoice::GetCurrentSelection()
@@ -229,7 +229,7 @@ public:
         @note Under wxMSW, this function always returns 0 if the combobox
               doesn't have the focus.
     */
         @note Under wxMSW, this function always returns 0 if the combobox
               doesn't have the focus.
     */
-    long GetInsertionPoint() const;
+    virtual long GetInsertionPoint() const;
 
     /**
         Returns the last position in the combobox text field.
 
     /**
         Returns the last position in the combobox text field.
@@ -248,17 +248,17 @@ public:
     /**
         Returns the current value in the combobox text field.
     */
     /**
         Returns the current value in the combobox text field.
     */
-    wxString GetValue() const;
+    virtual wxString GetValue() const;
 
     /**
         Pastes text from the clipboard to the text field.
     */
 
     /**
         Pastes text from the clipboard to the text field.
     */
-    void Paste();
+    virtual void Paste();
 
     /**
         Redoes the last undo in the text field. Windows only.
     */
 
     /**
         Redoes the last undo in the text field. Windows only.
     */
-    void Redo();
+    virtual void Redo();
 
     /**
         Removes the text between the two positions in the combobox text field.
 
     /**
         Removes the text between the two positions in the combobox text field.
@@ -268,7 +268,7 @@ public:
         @param to
             The last position.
     */
         @param to
             The last position.
     */
-    void Remove(long from, long to);
+    virtual void Remove(long from, long to);
 
     /**
         Replaces the text between two positions with the given text, in the
 
     /**
         Replaces the text between two positions with the given text, in the
@@ -281,7 +281,7 @@ public:
         @param text
             The text to insert.
     */
         @param text
             The text to insert.
     */
-    void Replace(long from, long to, const wxString& text);
+    virtual void Replace(long from, long to, const wxString& text);
 
     /**
         Sets the insertion point in the combobox text field.
 
     /**
         Sets the insertion point in the combobox text field.
@@ -289,12 +289,12 @@ public:
         @param pos
             The new insertion point.
     */
         @param pos
             The new insertion point.
     */
-    void SetInsertionPoint(long pos);
+    virtual void SetInsertionPoint(long pos);
 
     /**
         Sets the insertion point at the end of the combobox text field.
     */
 
     /**
         Sets the insertion point at the end of the combobox text field.
     */
-    void SetInsertionPointEnd();
+    virtual void SetInsertionPointEnd();
 
     /**
         Selects the text between the two positions, in the combobox text field.
 
     /**
         Selects the text between the two positions, in the combobox text field.
@@ -321,11 +321,11 @@ public:
         @param text
             The text to set.
     */
         @param text
             The text to set.
     */
-    void SetValue(const wxString& text);
+    virtual void SetValue(const wxString& text);
 
     /**
         Undoes the last edit in the text field. Windows only.
     */
 
     /**
         Undoes the last edit in the text field. Windows only.
     */
-    void Undo();
+    virtual void Undo();
 };
 
 };
 
index 2a7392fe16ec7115509f9eaf3686d8cba1f1eaae..5a6f9997fc28293846de0153692bf94140955489 100644 (file)
@@ -206,7 +206,7 @@ public:
     /**
         Returns @true if cursor data is present.
     */
     /**
         Returns @true if cursor data is present.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Assignment operator, using @ref overview_refcount "reference counting".
 
     /**
         Assignment operator, using @ref overview_refcount "reference counting".
index 35366122169e1b277df45660599d2f53f51b26e6..17f92831cb1a0741488d12123b557860bc3fd14a 100644 (file)
@@ -96,27 +96,27 @@ public:
         Convert device X coordinate to logical coordinate, using the current
         mapping mode.
     */
         Convert device X coordinate to logical coordinate, using the current
         mapping mode.
     */
-    wxCoord DeviceToLogicalX(wxCoord x);
+    wxCoord DeviceToLogicalX(wxCoord x) const;
 
     /**
         Convert device X coordinate to relative logical coordinate, using the
         current mapping mode but ignoring the x axis orientation. Use this
         function for converting a width, for example.
     */
 
     /**
         Convert device X coordinate to relative logical coordinate, using the
         current mapping mode but ignoring the x axis orientation. Use this
         function for converting a width, for example.
     */
-    wxCoord DeviceToLogicalXRel(wxCoord x);
+    wxCoord DeviceToLogicalXRel(wxCoord x) const;
 
     /**
         Converts device Y coordinate to logical coordinate, using the current
         mapping mode.
     */
 
     /**
         Converts device Y coordinate to logical coordinate, using the current
         mapping mode.
     */
-    wxCoord DeviceToLogicalY(wxCoord y);
+    wxCoord DeviceToLogicalY(wxCoord y) const;
 
     /**
         Convert device Y coordinate to relative logical coordinate, using the
         current mapping mode but ignoring the y axis orientation. Use this
         function for converting a height, for example.
     */
 
     /**
         Convert device Y coordinate to relative logical coordinate, using the
         current mapping mode but ignoring the y axis orientation. Use this
         function for converting a height, for example.
     */
-    wxCoord DeviceToLogicalYRel(wxCoord y);
+    wxCoord DeviceToLogicalYRel(wxCoord y) const;
 
     /**
         Draws an arc of a circle, centred on (@a xc, @a yc), with starting
 
     /**
         Draws an arc of a circle, centred on (@a xc, @a yc), with starting
@@ -352,12 +352,12 @@ public:
     /**
         Gets the character height of the currently set font.
     */
     /**
         Gets the character height of the currently set font.
     */
-    wxCoord GetCharHeight();
+    wxCoord GetCharHeight() const;
 
     /**
         Gets the average character width of the currently set font.
     */
 
     /**
         Gets the average character width of the currently set font.
     */
-    wxCoord GetCharWidth();
+    wxCoord GetCharWidth() const;
 
     /**
         Not implemented.
 
     /**
         Not implemented.
@@ -379,14 +379,14 @@ public:
 
         @see SetLogicalFunction()
     */
 
         @see SetLogicalFunction()
     */
-    int GetLogicalFunction();
+    int GetLogicalFunction() const;
 
     /**
         Gets the mapping mode for the device context.
 
         @see SetMapMode()
     */
 
     /**
         Gets the mapping mode for the device context.
 
         @see SetMapMode()
     */
-    int GetMapMode();
+    int GetMapMode() const;
 
     //@{
     /**
 
     //@{
     /**
@@ -401,7 +401,7 @@ public:
     /**
         Not implemented.
     */
     /**
         Not implemented.
     */
-    bool GetPixel(wxCoord x, wxCoord y, wxColour* colour);
+    bool GetPixel(wxCoord x, wxCoord y, wxColour* colour) const;
 
     /**
         For a Windows printer device context, this gets the horizontal and
 
     /**
         For a Windows printer device context, this gets the horizontal and
@@ -467,47 +467,47 @@ public:
         Converts logical X coordinate to device coordinate, using the current
         mapping mode.
     */
         Converts logical X coordinate to device coordinate, using the current
         mapping mode.
     */
-    wxCoord LogicalToDeviceX(wxCoord x);
+    wxCoord LogicalToDeviceX(wxCoord x) const;
 
     /**
         Converts logical X coordinate to relative device coordinate, using the
         current mapping mode but ignoring the x axis orientation. Use this for
         converting a width, for example.
     */
 
     /**
         Converts logical X coordinate to relative device coordinate, using the
         current mapping mode but ignoring the x axis orientation. Use this for
         converting a width, for example.
     */
-    wxCoord LogicalToDeviceXRel(wxCoord x);
+    wxCoord LogicalToDeviceXRel(wxCoord x) const;
 
     /**
         Converts logical Y coordinate to device coordinate, using the current
         mapping mode.
     */
 
     /**
         Converts logical Y coordinate to device coordinate, using the current
         mapping mode.
     */
-    wxCoord LogicalToDeviceY(wxCoord y);
+    wxCoord LogicalToDeviceY(wxCoord y) const;
 
     /**
         Converts logical Y coordinate to relative device coordinate, using the
         current mapping mode but ignoring the y axis orientation. Use this for
         converting a height, for example.
     */
 
     /**
         Converts logical Y coordinate to relative device coordinate, using the
         current mapping mode but ignoring the y axis orientation. Use this for
         converting a height, for example.
     */
-    wxCoord LogicalToDeviceYRel(wxCoord y);
+    wxCoord LogicalToDeviceYRel(wxCoord y) const;
 
     /**
         Gets the maximum horizontal extent used in drawing commands so far.
     */
 
     /**
         Gets the maximum horizontal extent used in drawing commands so far.
     */
-    wxCoord MaxX();
+    wxCoord MaxX() const;
 
     /**
         Gets the maximum vertical extent used in drawing commands so far.
     */
 
     /**
         Gets the maximum vertical extent used in drawing commands so far.
     */
-    wxCoord MaxY();
+    wxCoord MaxY() const;
 
     /**
         Gets the minimum horizontal extent used in drawing commands so far.
     */
 
     /**
         Gets the minimum horizontal extent used in drawing commands so far.
     */
-    wxCoord MinX();
+    wxCoord MinX() const;
 
     /**
         Gets the minimum vertical extent used in drawing commands so far.
     */
 
     /**
         Gets the minimum vertical extent used in drawing commands so far.
     */
-    wxCoord MinY();
+    wxCoord MinY() const;
 
     /**
         Returns @true if the DC is ok to use. @false values arise from being
 
     /**
         Returns @true if the DC is ok to use. @false values arise from being
index ce50d802acb684db2f7604cadaaf12dd653ac5f7..f053d885be6572bc1e133f2a2d71a95b9bd4979c 100644 (file)
@@ -385,7 +385,7 @@ public:
         @remarks Always returns @false under Windows since dialogs cannot be
                  iconized.
     */
         @remarks Always returns @false under Windows since dialogs cannot be
                  iconized.
     */
-    bool IsIconized() const;
+    virtual bool IsIconized() const;
 
     /**
         A static function returning @true if layout adaptation is enabled for
 
     /**
         A static function returning @true if layout adaptation is enabled for
index 4620a9825ece878a4d32b0fadb3af8d7701c653d..35f6324ece7948943c2e699146ef1ae30b4141ac 100644 (file)
@@ -391,7 +391,7 @@ public:
 
         @note the anchor is NOT part of the left location.
     */
 
         @note the anchor is NOT part of the left location.
     */
-    wxString GetAnchor(const wxString& location) const;
+    static wxString GetAnchor(const wxString& location);
 
     /**
         Returns the left location string extracted from @e location.
 
     /**
         Returns the left location string extracted from @e location.
@@ -401,7 +401,7 @@ public:
         GetLeftLocation("file:myzipfile.zip#zip:index.htm") == "file:myzipfile.zip"
         @endcode
     */
         GetLeftLocation("file:myzipfile.zip#zip:index.htm") == "file:myzipfile.zip"
         @endcode
     */
-    wxString GetLeftLocation(const wxString& location) const;
+    static wxString GetLeftLocation(const wxString& location);
 
     /**
         Returns the MIME type based on @b extension of @a location.
 
     /**
         Returns the MIME type based on @b extension of @a location.
@@ -423,7 +423,7 @@ public:
         GetProtocol("file:myzipfile.zip#zip:index.htm") == "zip"
         @endcode
     */
         GetProtocol("file:myzipfile.zip#zip:index.htm") == "zip"
         @endcode
     */
-    wxString GetProtocol(const wxString& location) const;
+    static wxString GetProtocol(const wxString& location);
 
     /**
         Returns the right location string extracted from @a location.
 
     /**
         Returns the right location string extracted from @a location.
@@ -433,7 +433,7 @@ public:
         GetRightLocation("file:myzipfile.zip#zip:index.htm") == "index.htm"
         @endcode
     */
         GetRightLocation("file:myzipfile.zip#zip:index.htm") == "index.htm"
         @endcode
     */
-    wxString GetRightLocation(const wxString& location) const;
+    static wxString GetRightLocation(const wxString& location);
 
     /**
         Opens the file and returns wxFSFile pointer or @NULL if failed.
 
     /**
         Opens the file and returns wxFSFile pointer or @NULL if failed.
index 5f49e1a9a8236a7323214fff0bc2b94054572c00..2a2daa2bf41f3fbe1a07eb06e56ff89be3cda59d 100644 (file)
@@ -462,7 +462,7 @@ public:
     /**
         Returns @true if this object is a valid font, @false otherwise.
     */
     /**
         Returns @true if this object is a valid font, @false otherwise.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     //@{
     /**
 
     //@{
     /**
index da7bf9a11774befd82b274ced1f36236785dd44d..bd4284dc55b02dd4509b8e71583f0bf7508b49de 100644 (file)
@@ -470,7 +470,7 @@ public:
     /**
         The dtor is private because only DecRef() can delete us.
     */
     /**
         The dtor is private because only DecRef() can delete us.
     */
-    ~wxGridCellEditor();
+    virtual ~wxGridCellEditor();
 
     /**
         Fetch the value from the table and prepare the edit control
 
     /**
         Fetch the value from the table and prepare the edit control
@@ -723,12 +723,12 @@ public:
     /**
         Returns @true if the Alt key was down at the time of the event.
     */
     /**
         Returns @true if the Alt key was down at the time of the event.
     */
-    bool AltDown();
+    bool AltDown() const;
 
     /**
         Returns @true if the Control key was down at the time of the event.
     */
 
     /**
         Returns @true if the Control key was down at the time of the event.
     */
-    bool ControlDown();
+    bool ControlDown() const;
 
     /**
         Top left corner of the rectangular area that was (de)selected.
 
     /**
         Top left corner of the rectangular area that was (de)selected.
@@ -763,7 +763,7 @@ public:
     /**
         Returns @true if the Meta key was down at the time of the event.
     */
     /**
         Returns @true if the Meta key was down at the time of the event.
     */
-    bool MetaDown();
+    bool MetaDown() const;
 
     /**
         Returns @true if the area was selected, @false otherwise.
 
     /**
         Returns @true if the area was selected, @false otherwise.
@@ -773,7 +773,7 @@ public:
     /**
         Returns @true if the Shift key was down at the time of the event.
     */
     /**
         Returns @true if the Shift key was down at the time of the event.
     */
-    bool ShiftDown();
+    bool ShiftDown() const;
 };
 
 
 };
 
 
@@ -891,12 +891,12 @@ public:
     /**
         Returns @true if the Alt key was down at the time of the event.
     */
     /**
         Returns @true if the Alt key was down at the time of the event.
     */
-    bool AltDown();
+    bool AltDown() const;
 
     /**
         Returns @true if the Control key was down at the time of the event.
     */
 
     /**
         Returns @true if the Control key was down at the time of the event.
     */
-    bool ControlDown();
+    bool ControlDown() const;
 
     /**
         Position in pixels at which the event occurred.
 
     /**
         Position in pixels at which the event occurred.
@@ -911,12 +911,12 @@ public:
     /**
         Returns @true if the Meta key was down at the time of the event.
     */
     /**
         Returns @true if the Meta key was down at the time of the event.
     */
-    bool MetaDown();
+    bool MetaDown() const;
 
     /**
         Returns @true if the Shift key was down at the time of the event.
     */
 
     /**
         Returns @true if the Shift key was down at the time of the event.
     */
-    bool ShiftDown();
+    bool ShiftDown() const;
 };
 
 
 };
 
 
@@ -1146,12 +1146,12 @@ public:
     /**
         Returns @true if the Alt key was down at the time of the event.
     */
     /**
         Returns @true if the Alt key was down at the time of the event.
     */
-    bool AltDown();
+    bool AltDown() const;
 
     /**
         Returns @true if the Control key was down at the time of the event.
     */
 
     /**
         Returns @true if the Control key was down at the time of the event.
     */
-    bool ControlDown();
+    bool ControlDown() const;
 
     /**
         Column at which the event occurred.
 
     /**
         Column at which the event occurred.
@@ -1171,7 +1171,7 @@ public:
     /**
         Returns @true if the Meta key was down at the time of the event.
     */
     /**
         Returns @true if the Meta key was down at the time of the event.
     */
-    bool MetaDown();
+    bool MetaDown() const;
 
     /**
         Returns @true if the user is selecting grid cells, @false -- if
 
     /**
         Returns @true if the user is selecting grid cells, @false -- if
@@ -1182,7 +1182,7 @@ public:
     /**
         Returns @true if the Shift key was down at the time of the event.
     */
     /**
         Returns @true if the Shift key was down at the time of the event.
     */
-    bool ShiftDown();
+    bool ShiftDown() const;
 };
 
 
 };
 
 
index fb5ca68e2f911cff6d8aac0e9d8792f6083af783..ae1a20d7e02c697cbb84c71c761359e0275e65c2 100644 (file)
@@ -106,7 +106,7 @@ public:
         First it finds a handler capable of handling this tag and then it calls
         handler's HandleTag method.
     */
         First it finds a handler capable of handling this tag and then it calls
         handler's HandleTag method.
     */
-    void AddTag(const wxHtmlTag& tag);
+    virtual void AddTag(const wxHtmlTag& tag);
 
     /**
         Adds handler to the internal list ( hash table) of handlers. This
 
     /**
         Adds handler to the internal list ( hash table) of handlers. This
index 7096573fc0f5edc6d6677999eb98fb319e74bd9a..4d17a4caf03eb09719c70022834aa83bcd2abf04 100644 (file)
@@ -79,7 +79,7 @@ public:
 
         @see GetSelectedTextColour()
     */
 
         @see GetSelectedTextColour()
     */
-    wxColour GetSelectedTextBgColour(const wxColour& colBg) const;
+    virtual wxColour GetSelectedTextBgColour(const wxColour& colBg) const;
 
     /**
         This virtual function may be overridden to customize the appearance of the
 
     /**
         This virtual function may be overridden to customize the appearance of the
@@ -91,7 +91,7 @@ public:
         @see GetSelectedTextBgColour(),
              wxVListBox::SetSelectionBackground, wxSystemSettings::GetColour
     */
         @see GetSelectedTextBgColour(),
              wxVListBox::SetSelectionBackground, wxSystemSettings::GetColour
     */
-    wxColour GetSelectedTextColour(const wxColour& colFg) const;
+    virtual wxColour GetSelectedTextColour(const wxColour& colFg) const;
 
     /**
         This method must be implemented in the derived class and should return
 
     /**
         This method must be implemented in the derived class and should return
@@ -111,7 +111,7 @@ public:
         This function may be overridden to decorate HTML returned by
         OnGetItem().
     */
         This function may be overridden to decorate HTML returned by
         OnGetItem().
     */
-    wxString OnGetItemMarkup(size_t n) const;
+    virtual wxString OnGetItemMarkup(size_t n) const;
 
     /**
         Called when the user clicks on hypertext link. Does nothing by default.
 
     /**
         Called when the user clicks on hypertext link. Does nothing by default.
index c81d0d41889bc71b54d8bd3cd0e0fd763abfcde8..b51860c24e2e317f571a400feafd895ab8ee3681 100644 (file)
@@ -213,7 +213,7 @@ public:
     /**
         Returns @true if icon data is present.
     */
     /**
         Returns @true if icon data is present.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Loads an icon from a file or resource.
 
     /**
         Loads an icon from a file or resource.
index 6c641230e7c90a6e99c4c829f7a786ebfa5c81b6..50906f2a42332b275b2e1fb48cf41a32e03bfa2a 100644 (file)
@@ -34,7 +34,7 @@
            Place labels below the page area.
     @endStyleTable
 
            Place labels below the page area.
     @endStyleTable
 
-    @beginEventTable{wxListbookEvent}
+    @beginEventTable{wxBookCtrlEvent}
     @event{EVT_LISTBOOK_PAGE_CHANGED(id, func)}
         The page selection was changed.
         Processes a @c wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED event.
     @event{EVT_LISTBOOK_PAGE_CHANGED(id, func)}
         The page selection was changed.
         Processes a @c wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED event.
index 29231640c79841a482ad696ea7e51bdd150317c5..ff39121e6def2f3bbe37b93d5f0b9ef023152d51 100644 (file)
@@ -276,7 +276,7 @@ public:
         width and height.
         @endWxPythonOnly
     */
         width and height.
         @endWxPythonOnly
     */
-    virtual void GetClientSize(int* width, int* height) const;
+    void GetClientSize(int* width, int* height) const;
 
     /**
         Returns a pointer to the client window.
 
     /**
         Returns a pointer to the client window.
index 6a7ff2de521b72b17c0c674072456b2cd944346a..e3f7e93a0df712d05fce2bcaf5d861d6e84ef2d6 100644 (file)
@@ -125,7 +125,7 @@ protected:
         It's declared @c protected so that wxObjectRefData instances
         will never be destroyed directly but only as result of a DecRef() call.
     */
         It's declared @c protected so that wxObjectRefData instances
         will never be destroyed directly but only as result of a DecRef() call.
     */
-    ~wxObjectRefData();
+    virtual ~wxObjectRefData();
 
 public:
     /**
 
 public:
     /**
index a52627f52814b26870754f3e97fab9aa87ac8ca5..778ea4e20283a0abda3675370173de4951b6c513 100644 (file)
@@ -219,7 +219,7 @@ public:
         The default implementation returns text height, as if this control was
         a normal combobox.
     */
         The default implementation returns text height, as if this control was
         a normal combobox.
     */
-    wxCoord OnMeasureItem(size_t item) const;
+    virtual wxCoord OnMeasureItem(size_t item) const;
 
     /**
         The derived class may implement this method to return the width of the
 
     /**
         The derived class may implement this method to return the width of the
@@ -228,6 +228,6 @@ public:
 
         The default implementation returns -1.
     */
 
         The default implementation returns -1.
     */
-    wxCoord OnMeasureItemWidth(size_t item) const;
+    virtual wxCoord OnMeasureItemWidth(size_t item) const;
 };
 
 };
 
index fd7406c8d6dfb34567579e910ef194b9bc6f30b3..1884f01f161656caecd096aa3f43182b1193a8c7 100644 (file)
@@ -139,7 +139,7 @@ public:
     /**
         Returns @true if palette data is present.
     */
     /**
         Returns @true if palette data is present.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Assignment operator, using @ref overview_refcount.
 
     /**
         Assignment operator, using @ref overview_refcount.
index 86374646c6b3eceb626da99fc172a451d85fbcd2..8dd77c30934063aaa815917a41a8d7b44389942c 100644 (file)
@@ -265,7 +265,7 @@ public:
     /**
         Returns @true if the pen is initialised.
     */
     /**
         Returns @true if the pen is initialised.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Sets the pen cap style, which may be one of @c wxCAP_ROUND, @c wxCAP_PROJECTING
 
     /**
         Sets the pen cap style, which may be one of @c wxCAP_ROUND, @c wxCAP_PROJECTING
index 37fb44f58623293dbf9905e0519d79aff5b3c0ed..37df727d2fae82c8a75dc5991234badc6fbd52fb 100644 (file)
@@ -149,7 +149,7 @@ public:
 
         @note On PocketPC, no buttons are created.
     */
 
         @note On PocketPC, no buttons are created.
     */
-    void CreateButtons(int flags = wxOK|wxCANCEL);
+    virtual void CreateButtons(int flags = wxOK|wxCANCEL);
 
     /**
         Returns the book control that will contain your settings pages.
 
     /**
         Returns the book control that will contain your settings pages.
index d412add94a1c993709f5a93253308eea4eb9869f..a9cfec9df6a60210b7eea567211374363d20b1ae 100644 (file)
@@ -44,22 +44,22 @@ public:
         Specify an optional palette pointer to receive the resulting palette.
         This palette may be passed to ConvertImageToBitmap, for example.
     */
         Specify an optional palette pointer to receive the resulting palette.
         This palette may be passed to ConvertImageToBitmap, for example.
     */
-    bool Quantize(const wxImage& src, wxImage& dest,
-                  wxPalette** pPalette, int desiredNoColours = 236,
-                  unsigned char** eightBitData = 0,
-                  int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS
-                             |wxQUANTIZE_FILL_DESTINATION_IMAGE
-                             |wxQUANTIZE_RETURN_8BIT_DATA);
+    static bool Quantize(const wxImage& src, wxImage& dest,
+                         wxPalette** pPalette, int desiredNoColours = 236,
+                         unsigned char** eightBitData = 0,
+                         int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS|
+                                     wxQUANTIZE_FILL_DESTINATION_IMAGE|
+                                     wxQUANTIZE_RETURN_8BIT_DATA);
 
     /**
         This version sets a palette in the destination image so you don't
         have to manage it yourself.
     */
 
     /**
         This version sets a palette in the destination image so you don't
         have to manage it yourself.
     */
-    bool Quantize(const wxImage& src, wxImage& dest,
-                  int desiredNoColours = 236,
-                  unsigned char** eightBitData = 0,
-                  int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS
-                             |wxQUANTIZE_FILL_DESTINATION_IMAGE
-                             |wxQUANTIZE_RETURN_8BIT_DATA);
+    static bool Quantize(const wxImage& src, wxImage& dest,
+                         int desiredNoColours = 236,
+                         unsigned char** eightBitData = 0,
+                         int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS|
+                                     wxQUANTIZE_FILL_DESTINATION_IMAGE|
+                                     wxQUANTIZE_RETURN_8BIT_DATA);
 };
 
 };
 
index 0b63bdfd7df9d19ff089953716d9f7d88bbde795..5eeda8adc7d35f19f410bae44a2ec9468bb5fe32 100644 (file)
@@ -358,7 +358,7 @@ public:
     /**
         Clears the buffer.
     */
     /**
         Clears the buffer.
     */
-    void Clear();
+    virtual void Clear();
 
     //@{
     /**
 
     //@{
     /**
@@ -534,7 +534,7 @@ public:
     /**
         Finds a handler by name.
     */
     /**
         Finds a handler by name.
     */
-    wxRichTextFileHandler* FindHandler(const wxString& name);
+    static wxRichTextFileHandler* FindHandler(const wxString& name);
 
     /**
         Finds a handler by filename or, if supplied, type.
 
     /**
         Finds a handler by filename or, if supplied, type.
@@ -598,7 +598,7 @@ public:
         style attributes. To get the character or paragraph style alone,
         use GetUncombinedStyle().
     */
         style attributes. To get the character or paragraph style alone,
         use GetUncombinedStyle().
     */
-    bool GetStyle(long position, wxTextAttr& style);
+    virtual bool GetStyle(long position, wxTextAttr& style);
 
     /**
         This function gets a style representing the common, combined attributes in the
 
     /**
         This function gets a style representing the common, combined attributes in the
@@ -646,7 +646,7 @@ public:
         will fetch the paragraph attributes.
         Otherwise, it will return the character attributes.
     */
         will fetch the paragraph attributes.
         Otherwise, it will return the character attributes.
     */
-    bool GetUncombinedStyle(long position, wxTextAttr& style);
+    virtual bool GetUncombinedStyle(long position, wxTextAttr& style);
 
     /**
         Finds the text position for the given position, putting the position in
 
     /**
         Finds the text position for the given position, putting the position in
@@ -655,7 +655,7 @@ public:
 
         @return One of the ::wxRichTextHitTestFlags values.
     */
 
         @return One of the ::wxRichTextHitTestFlags values.
     */
-    int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition);
+    virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition);
 
     /**
         Initialisation.
 
     /**
         Initialisation.
@@ -810,7 +810,7 @@ public:
         only affects the style currently being applied (for example, setting the default
         style to bold will cause subsequently inserted text to be bold).
     */
         only affects the style currently being applied (for example, setting the default
         style to bold will cause subsequently inserted text to be bold).
     */
-    void SetBasicStyle(const wxTextAttr& style);
+    virtual void SetBasicStyle(const wxTextAttr& style);
 
     /**
         Sets the default style, affecting the style currently being applied
 
     /**
         Sets the default style, affecting the style currently being applied
@@ -888,9 +888,8 @@ public:
         - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style.
           Only the style flags are used in this operation.
     */
         - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style.
           Only the style flags are used in this operation.
     */
-    bool SetStyle(const wxRichTextRange& range,
-                  const wxTextAttr& style,
-                  int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
+    virtual bool SetStyle(const wxRichTextRange& range, const wxTextAttr& style,
+                          int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
 
     /**
         Sets the current style sheet, if any.
 
     /**
         Sets the current style sheet, if any.
index 45d35b9e47459e04002f8d460947bc7989511a58..a3b6aa953dd9965a53e1e782d3e75fd487e1f292 100644 (file)
@@ -516,7 +516,7 @@ public:
     /**
         Currently this simply returns @c wxSize(10, 10).
     */
     /**
         Currently this simply returns @c wxSize(10, 10).
     */
-    wxSize DoGetBestSize() const;
+    virtual wxSize DoGetBestSize() const;
 
     /**
         Ends alignment.
 
     /**
         Ends alignment.
@@ -1427,7 +1427,7 @@ public:
     /**
         Replaces existing content with the given text.
     */
     /**
         Replaces existing content with the given text.
     */
-    void SetValue(const wxString& value);
+    virtual void SetValue(const wxString& value);
 
     /**
         A helper function setting up scrollbars, for example after a resize.
 
     /**
         A helper function setting up scrollbars, for example after a resize.
@@ -1472,7 +1472,7 @@ public:
     /**
         Writes an image block at the current insertion point.
     */
     /**
         Writes an image block at the current insertion point.
     */
-    bool WriteImage(const wxRichTextImageBlock& imageBlock);
+    virtual bool WriteImage(const wxRichTextImageBlock& imageBlock);
 
     //@{
     /**
 
     //@{
     /**
index fb430cc3ecc3f56ec67c2d2571e09f65b9364027..3fc735b5783bf39852a4370e9c1c49772be1d4b0 100644 (file)
@@ -156,9 +156,8 @@ public:
         Apply attributes to the given range, only changing attributes that
         need to be changed.
     */
         Apply attributes to the given range, only changing attributes that
         need to be changed.
     */
-    bool ApplyStyle(wxRichTextCtrl* ctrl,
-                    const wxRichTextRange& range,
-                    int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO|wxRICHTEXT_SETSTYLE_OPTIMIZE);
+    virtual bool ApplyStyle(wxRichTextCtrl* ctrl, const wxRichTextRange& range,
+                            int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO|wxRICHTEXT_SETSTYLE_OPTIMIZE);
 
     /**
         Creation: see wxRichTextFormattingDialog() "the constructor" for
 
     /**
         Creation: see wxRichTextFormattingDialog() "the constructor" for
index 89760f1c2395151e749572925f64eb41d4a13aff..a4baf9d6d2e690931d6d4c414d1dc785d6ea879a 100644 (file)
@@ -85,7 +85,7 @@ public:
     /**
         Saves the buffer content to the HTML stream.
     */
     /**
         Saves the buffer content to the HTML stream.
     */
-    bool DoSaveFile(wxRichTextBuffer* buffer, wxOutputStream& stream);
+    virtual bool DoSaveFile(wxRichTextBuffer* buffer, wxOutputStream& stream);
 
     /**
         Returns the mapping for converting point sizes to HTML font sizes.
 
     /**
         Returns the mapping for converting point sizes to HTML font sizes.
index 3cc9fc99d6432dd12b970f30c5be8b5e561856d6..23cba9b4a752cee4a30897a6cc7132b71c94961b 100644 (file)
@@ -292,7 +292,7 @@ public:
     /**
         Returns the HTML for this item.
     */
     /**
         Returns the HTML for this item.
     */
-    wxString OnGetItem(size_t n) const;
+    virtual wxString OnGetItem(size_t n) const;
 
     /**
         Implements left click behaviour, applying the clicked style to the
 
     /**
         Implements left click behaviour, applying the clicked style to the
index 9c11dbe355ce0def85f3d674503135d45171edf7..309a5e0142314c5651ede7cd34dd411c613271a4 100644 (file)
@@ -37,7 +37,7 @@ public:
     */
     wxRichTextXMLHandler(const wxString& name = wxT("XML"),
                          const wxString& ext = wxT("xml"),
     */
     wxRichTextXMLHandler(const wxString& name = wxT("XML"),
                          const wxString& ext = wxT("xml"),
-                         int type = wxRICHTEXT_TYPE_XML) const;
+                         int type = wxRICHTEXT_TYPE_XML);
 
     /**
         Returns @true.
 
     /**
         Returns @true.
@@ -57,12 +57,12 @@ public:
     /**
         Loads buffer context from the given stream.
     */
     /**
         Loads buffer context from the given stream.
     */
-    bool DoLoadFile(wxRichTextBuffer* buffer, wxInputStream& stream);
+    virtual bool DoLoadFile(wxRichTextBuffer* buffer, wxInputStream& stream);
 
     /**
         Saves buffer context to the given stream.
     */
 
     /**
         Saves buffer context to the given stream.
     */
-    bool DoSaveFile(wxRichTextBuffer* buffer, wxOutputStream& stream);
+    virtual bool DoSaveFile(wxRichTextBuffer* buffer, wxOutputStream& stream);
 
     /**
         Recursively exports an object to the stream.
 
     /**
         Recursively exports an object to the stream.
index a2eb52078f4a6175b0055cbdef58f825ddafbea7..3095b42a2a758af96e217bb6a5012a5ef53f8c74 100644 (file)
@@ -127,7 +127,7 @@ public:
         @note this is currently only implemented for Windows and generic versions
               of the control.
     */
         @note this is currently only implemented for Windows and generic versions
               of the control.
     */
-    void SetSelection(long from, long to);
+    virtual void SetSelection(long from, long to);
 
     /**
         Sets the value of the spin control. Use the variant using int instead.
 
     /**
         Sets the value of the spin control. Use the variant using int instead.
index 5d02acabb6c966021805d46021d024642465eed3..2d2b1466de092fd0f9ea16b1a2d22d049f15ec03 100644 (file)
@@ -884,20 +884,23 @@ public:
     size_t OnSysRead(void* buffer, size_t bufsize);
 
     /**
     size_t OnSysRead(void* buffer, size_t bufsize);
 
     /**
-        Internal function.
-        It is called when the stream needs to change the current position.
+        See OnSysRead().
     */
     */
-    wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
+    size_t OnSysWrite(const void* buffer, size_t bufsize);
+
+
+protected:
 
     /**
         Internal function.
 
     /**
         Internal function.
-        It is called when the stream needs to know the real position.
+        It is called when the stream needs to change the current position.
     */
     */
-    wxFileOffset OnSysTell() const;
+    virtual wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
 
     /**
 
     /**
-        See OnSysRead().
+        Internal function.
+        It is called when the stream needs to know the real position.
     */
     */
-    size_t OnSysWrite(const void* buffer, size_t bufsize);
+    virtual wxFileOffset OnSysTell() const;
 };
 
 };
 
index d3815cada738c15f4feb7b824f6e91cc7bbf5b12..be226d3b26131fcbd71781016e31ef29f3162a5c 100644 (file)
@@ -1069,7 +1069,7 @@ public:
 
         @see WriteText()
     */
 
         @see WriteText()
     */
-    void AppendText(const wxString& text);
+    virtual void AppendText(const wxString& text);
 
     /**
         Call this function to enable auto-completion of the text typed in a
 
     /**
         Call this function to enable auto-completion of the text typed in a
@@ -1087,7 +1087,7 @@ public:
 
         @see AutoCompleteFileNames()
     */
 
         @see AutoCompleteFileNames()
     */
-    bool AutoComplete(const wxArrayString& choices);
+    virtual bool AutoComplete(const wxArrayString& choices);
 
     /**
         Call this function to enable auto-completion of the text typed in a
 
     /**
         Call this function to enable auto-completion of the text typed in a
@@ -1105,17 +1105,17 @@ public:
 
         @see AutoComplete()
     */
 
         @see AutoComplete()
     */
-    bool AutoCompleteFileNames();
+    virtual bool AutoCompleteFileNames();
 
     /**
         Returns @true if the selection can be copied to the clipboard.
     */
 
     /**
         Returns @true if the selection can be copied to the clipboard.
     */
-    virtual bool CanCopy();
+    virtual bool CanCopy() const;
 
     /**
         Returns @true if the selection can be cut to the clipboard.
     */
 
     /**
         Returns @true if the selection can be cut to the clipboard.
     */
-    virtual bool CanCut();
+    virtual bool CanCut() const;
 
     /**
         Returns @true if the contents of the clipboard can be pasted into the
 
     /**
         Returns @true if the contents of the clipboard can be pasted into the
@@ -1124,19 +1124,19 @@ public:
         On some platforms (Motif, GTK) this is an approximation and returns
         @true if the control is editable, @false otherwise.
     */
         On some platforms (Motif, GTK) this is an approximation and returns
         @true if the control is editable, @false otherwise.
     */
-    virtual bool CanPaste();
+    virtual bool CanPaste() const;
 
     /**
         Returns @true if there is a redo facility available and the last
         operation can be redone.
     */
 
     /**
         Returns @true if there is a redo facility available and the last
         operation can be redone.
     */
-    virtual bool CanRedo();
+    virtual bool CanRedo() const;
 
     /**
         Returns @true if there is an undo facility available and the last
         operation can be undone.
     */
 
     /**
         Returns @true if there is an undo facility available and the last
         operation can be undone.
     */
-    virtual bool CanUndo();
+    virtual bool CanUndo() const;
 
     /**
         Sets the new text control value.
 
     /**
         Sets the new text control value.
@@ -1326,7 +1326,7 @@ public:
 
         If there is no selection, the returned string is empty.
     */
 
         If there is no selection, the returned string is empty.
     */
-    virtual wxString GetStringSelection();
+    virtual wxString GetStringSelection() const;
 
     /**
         Returns the style at this position in the text control.
 
     /**
         Returns the style at this position in the text control.
index 32f330cbec060b92ed0a1b5704ca1ae9bae2a1d9..f156227a476cf65f53610f62d8c183b17412e067 100644 (file)
@@ -90,13 +90,13 @@ public:
     /**
         Delete all lines from the file, set current line number to 0.
     */
     /**
         Delete all lines from the file, set current line number to 0.
     */
-    void Clear() const;
+    void Clear();
 
     /**
         Closes the file and frees memory, @b "losing all changes".
         Use Write() if you want to save them.
     */
 
     /**
         Closes the file and frees memory, @b "losing all changes".
         Use Write() if you want to save them.
     */
-    bool Close() const;
+    bool Close();
 
     //@{
     /**
 
     //@{
     /**
@@ -213,7 +213,7 @@ public:
         Changes the value returned by GetCurrentLine() and used by GetFirstLine()
         and GetNextLine().
     */
         Changes the value returned by GetCurrentLine() and used by GetFirstLine()
         and GetNextLine().
     */
-    void GoToLine(size_t n) const;
+    void GoToLine(size_t n);
 
     /**
         Guess the type of file (which is supposed to be opened).
 
     /**
         Guess the type of file (which is supposed to be opened).
@@ -252,7 +252,7 @@ public:
     /**
         Delete line number @a n from the file.
     */
     /**
         Delete line number @a n from the file.
     */
-    void RemoveLine(size_t n) const;
+    void RemoveLine(size_t n);
 
     /**
         Change the file on disk.
 
     /**
         Change the file on disk.
index 69aa5a6bf16125eb0f3e076dc3bcfc95e5722293..197bf2df3e37f042166fb436b0916ea827fb4ee2 100644 (file)
@@ -84,7 +84,7 @@ public:
         (including GTK+) where the window manager may not support this operation
         and there is no way to find out.
     */
         (including GTK+) where the window manager may not support this operation
         and there is no way to find out.
     */
-    bool EnableCloseButton(bool enable = true);
+    virtual bool EnableCloseButton(bool enable = true);
 
     /**
         Returns a pointer to the button which is the default for this window, or
 
     /**
         Returns a pointer to the button which is the default for this window, or
@@ -115,7 +115,7 @@ public:
 
         @see SetTitle()
     */
 
         @see SetTitle()
     */
-    wxString GetTitle() const;
+    virtual wxString GetTitle() const;
 
     /**
         Unique to the wxWinCE port. Responds to showing/hiding SIP (soft input
 
     /**
         Unique to the wxWinCE port. Responds to showing/hiding SIP (soft input
@@ -153,17 +153,17 @@ public:
 
         @see ShowFullScreen()
     */
 
         @see ShowFullScreen()
     */
-    bool IsFullScreen();
+    virtual bool IsFullScreen() const;
 
     /**
         Returns @true if the window is iconized.
     */
 
     /**
         Returns @true if the window is iconized.
     */
-    bool IsIconized() const;
+    virtual bool IsIconized() const;
 
     /**
         Returns @true if the window is maximized.
     */
 
     /**
         Returns @true if the window is maximized.
     */
-    bool IsMaximized() const;
+    virtual bool IsMaximized() const;
 
     /**
         This method is specific to wxUniversal port.
 
     /**
         This method is specific to wxUniversal port.
@@ -394,7 +394,7 @@ public:
 
         @see IsFullScreen()
     */
 
         @see IsFullScreen()
     */
-    bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
+    virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
 
     /**
         This method is specific to wxUniversal port.
 
     /**
         This method is specific to wxUniversal port.
index caf04f3a74e38c978ac4cd8cc4d05c305209c142..377857c9af4c99363d2d50622b879a3c53beb694 100644 (file)
@@ -201,7 +201,7 @@ public:
 
         @todo Change this function signature to non-const.
     */
 
         @todo Change this function signature to non-const.
     */
-    void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const;
+    virtual void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const;
 
     /**
         The derived class must implement this function to actually draw the
 
     /**
         The derived class must implement this function to actually draw the
index 252c4e2be9d1df4fe44451220f8fb87a62ae0d95..9dd975e787658dc1e93665f39505a7d790f76ea9 100644 (file)
@@ -1867,7 +1867,7 @@ public:
         @param y
             Stores the screen x coordinate and receives the client x coordinate.
     */
         @param y
             Stores the screen x coordinate and receives the client x coordinate.
     */
-    virtual void ScreenToClient(int* x, int* y) const;
+    void ScreenToClient(int* x, int* y) const;
 
     /**
         Converts from screen to client window coordinates.
 
     /**
         Converts from screen to client window coordinates.
@@ -1875,7 +1875,7 @@ public:
         @param pt
             The screen position.
     */
         @param pt
             The screen position.
     */
-    virtual wxPoint ScreenToClient(const wxPoint& pt) const;
+    wxPoint ScreenToClient(const wxPoint& pt) const;
 
     /**
         Scrolls the window by the given number of lines down (if @a lines is
 
     /**
         Scrolls the window by the given number of lines down (if @a lines is