]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/window.h
Set/GetTitle out of wxWindowBase, forked and put to gtk/window.h and mgl/window.h...
[wxWidgets.git] / include / wx / gtk1 / 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;