]> git.saurik.com Git - wxWidgets.git/commitdiff
Set/GetTitle out of wxWindowBase, forked and put to gtk/window.h and mgl/window.h...
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 2 Aug 2001 23:32:27 +0000 (23:32 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 2 Aug 2001 23:32:27 +0000 (23:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/window.h
include/wx/gtk1/window.h
include/wx/window.h

index 8fafeca033dd800510c1325c7ccecdc593f17aff..fde824a7b1498a9e1111a96b26d9b3a521d166cd 100644 (file)
@@ -48,6 +48,9 @@ public:
 
     // implement base class (pure) virtual methods
     // -------------------------------------------
+    virtual void SetTitle( const wxString& title ) { m_title = title; }
+    virtual wxString GetTitle() const { return m_title; }
+
     virtual bool Destroy();
 
     virtual void Raise();
@@ -212,6 +215,9 @@ public:
     // wxMDIFrame, wxNotebook etc. this is the callback that will get used.
     wxInsertChildFunction  m_insertCallback;
 
+    // the window label
+    wxString               m_title;
+
     // implement the base class pure virtuals
     virtual void DoClientToScreen( int *x, int *y ) const;
     virtual void DoScreenToClient( int *x, int *y ) const;
index 8fafeca033dd800510c1325c7ccecdc593f17aff..fde824a7b1498a9e1111a96b26d9b3a521d166cd 100644 (file)
@@ -48,6 +48,9 @@ public:
 
     // implement base class (pure) virtual methods
     // -------------------------------------------
+    virtual void SetTitle( const wxString& title ) { m_title = title; }
+    virtual wxString GetTitle() const { return m_title; }
+
     virtual bool Destroy();
 
     virtual void Raise();
@@ -212,6 +215,9 @@ public:
     // wxMDIFrame, wxNotebook etc. this is the callback that will get used.
     wxInsertChildFunction  m_insertCallback;
 
+    // the window label
+    wxString               m_title;
+
     // implement the base class pure virtuals
     virtual void DoClientToScreen( int *x, int *y ) const;
     virtual void DoScreenToClient( int *x, int *y ) const;
index fb8971a94c690482e8243b3cbc675bbfc5b186bb..bdc25cdb64282bc1879cf07b1b50aab5fb9f8331 100644 (file)
@@ -172,8 +172,8 @@ public:
 
         // the title (or label, see below) of the window: the text which the
         // window shows
-    virtual void SetTitle( const wxString& title ) { m_title = title; }
-    virtual wxString GetTitle() const { return m_title; }
+    virtual void SetTitle( const wxString& title ) = 0;
+    virtual wxString GetTitle() const = 0;
 
         // label is just the same as the title (but for, e.g., buttons it
         // makes more sense to speak about labels)
@@ -787,9 +787,6 @@ protected:
     // its siblings unless it is -1
     wxWindowID           m_windowId;
     
-    // the window label
-    wxString             m_title;
-
     // the parent window of this window (or NULL) and the list of the children
     // of this window
     wxWindow            *m_parent;