]> git.saurik.com Git - wxWidgets.git/commitdiff
rewrote to use wxBoxSizer instead of hardcoded sizes
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 16 Jan 2000 00:31:59 +0000 (00:31 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 16 Jan 2000 00:31:59 +0000 (00:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/html/about/about.cpp

index 99f32b263e6e52f181e17d1fac07fdddff301f03..7b5f005112808825b191c84dd915fa5eefa2ecc2 100644 (file)
@@ -24,6 +24,7 @@
 #include <wx/image.h>
 #include <wx/imagpng.h>
 #include <wx/wxhtml.h>
+#include <wx/statline.h>
 
 // ----------------------------------------------------------------------------
 // private classes
 
    void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
    {
+        wxBoxSizer *topsizer;
         wxHtmlWindow *html;
-#ifdef __WXMSW__
-        wxDialog dlg(this, -1, "About", wxDefaultPosition, wxSize(400, 250), wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE);
-#else
-        wxDialog dlg(this, -1, "About", wxDefaultPosition, wxSize(400, 230), wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE);
-#endif
+        wxDialog dlg(this, -1, "About");
+
+        topsizer = new wxBoxSizer(wxVERTICAL);
 
-        html = new wxHtmlWindow(&dlg, -1, wxPoint(10, 10), wxSize(380, 160), wxHW_SCROLLBAR_NEVER);
+        html = new wxHtmlWindow(&dlg, -1, wxDefaultPosition, wxSize(380, 160), wxHW_SCROLLBAR_NEVER);
         html -> SetBorders(0);
         html -> LoadPage("data/about.htm");
-        wxButton *bu1 = new wxButton(&dlg, wxID_OK, "OK", wxPoint(250, 185), wxSize(100, 30));
+        html -> SetSize(html -> GetInternalRepresentation() -> GetWidth(), 
+                        html -> GetInternalRepresentation() -> GetHeight());
+
+        topsizer -> Add(html, 1, wxALL, 10);
+
+        topsizer -> Add(new wxStaticLine(&dlg, -1), 0, wxEXPAND | wxLEFT | wxRIGHT, 10);
+                        
+        wxButton *bu1 = new wxButton(&dlg, wxID_OK, "Okay");
         bu1 -> SetDefault();
+
+        topsizer -> Add(bu1, 0, wxALL | wxALIGN_RIGHT, 15);
+
+        dlg.SetAutoLayout(TRUE);
+        dlg.SetSizer(topsizer);
+        topsizer -> Fit(&dlg);
+
         dlg.ShowModal();
     }