]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/window.h
Don't enable dialog navigation inside wxFrame by default.
[wxWidgets.git] / include / wx / motif / window.h
index 12760abecbb788cfd5fe46831d7eac37b94a2868..d4cbc60d96c437f763a19a8e456c193217d9411d 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     17/09/98
-// RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -71,12 +70,6 @@ public:
 
     virtual int GetCharHeight() const;
     virtual int GetCharWidth() const;
-    virtual void GetTextExtent(const wxString& string,
-        int *x, int *y,
-        int *descent = NULL,
-        int *externalLeading = NULL,
-        const wxFont *theFont = (const wxFont *) NULL)
-        const;
 
     virtual void SetScrollbar( int orient, int pos, int thumbVisible,
         int range, bool refresh = true );
@@ -144,9 +137,6 @@ public:
     void ClearUpdateRegion() { m_updateRegion.Clear(); }
     void SetUpdateRegion(const wxRegion& region) { m_updateRegion = region; }
 
-    // Process idle (send update events)
-    void OnInternalIdle();
-
     // post-creation activities
     void PostCreation();
 
@@ -280,6 +270,11 @@ protected:
     int                   m_scrollPosY;
 
     // implement the base class pure virtuals
+    virtual void DoGetTextExtent(const wxString& string,
+                                 int *x, int *y,
+                                 int *descent = NULL,
+                                 int *externalLeading = NULL,
+                                 const wxFont *font = NULL) const;
     virtual void DoClientToScreen( int *x, int *y ) const;
     virtual void DoScreenToClient( int *x, int *y ) const;
     virtual void DoGetPosition( int *x, int *y ) const;
@@ -303,7 +298,7 @@ private:
     void Init();
 
     DECLARE_DYNAMIC_CLASS(wxWindow)
-    DECLARE_NO_COPY_CLASS(wxWindow)
+    wxDECLARE_NO_COPY_CLASS(wxWindow);
     DECLARE_EVENT_TABLE()
 };