]> git.saurik.com Git - wxWidgets.git/commitdiff
Added DoSetSize and DoMoveWindow to generic wxStaticLine.
authorMattia Barbon <mbarbon@cpan.org>
Sat, 27 Jul 2002 20:13:33 +0000 (20:13 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sat, 27 Jul 2002 20:13:33 +0000 (20:13 +0000)
Now it works with sizers.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16294 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/statline.h
src/generic/statline.cpp

index 5d3dafa675de09bdde429f35c329298067a9967f..67efb49f6c15994bca32cc4261e8d37f42e25eaa 100644 (file)
@@ -50,7 +50,11 @@ public:
     // will want to return the main widget for m_statbox
     //
     WXWidget GetMainWidget() const;
     // will want to return the main widget for m_statbox
     //
     WXWidget GetMainWidget() const;
-        
+
+    // override wxWindow methods to make things work
+    virtual void DoSetSize(int x, int y, int width, int height,
+                           int sizeFlags = wxSIZE_AUTO);
+    virtual void DoMoveWindow(int x, int y, int width, int height);
 protected:
     // we implement the static line using a static box
     wxStaticBox *m_statbox;
 protected:
     // we implement the static line using a static box
     wxStaticBox *m_statbox;
index 964385982f45ed34a142b25c3e45820f73fedd39..cebd4a9da85c94f84930ab945ca16d22a91ace7e 100644 (file)
@@ -65,3 +65,14 @@ WXWidget wxStaticLine::GetMainWidget() const
 {
     return m_statbox->GetMainWidget();
 }
 {
     return m_statbox->GetMainWidget();
 }
+
+void wxStaticLine::DoSetSize(int x, int y, int width, int height,
+                             int sizeFlags = wxSIZE_AUTO)
+{
+    m_statbox->SetSize(x, y, width, height, sizeFlags);
+}
+
+void wxStaticLine::DoMoveWindow(int x, int y, int width, int height)
+{
+    m_statbox->SetSize(x, y, width, height);
+}