X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/48e74ff549be8bb9b4a0c9a25e4dc67b33e7fbbe..d80207c3445ece64793fc499818d4c7a3584e01f:/samples/html/about/about.cpp diff --git a/samples/html/about/about.cpp b/samples/html/about/about.cpp index ae25ab35c2..a97c5e58c3 100644 --- a/samples/html/about/about.cpp +++ b/samples/html/about/about.cpp @@ -22,7 +22,9 @@ #endif #include +#include #include +#include // ---------------------------------------------------------------------------- // private classes @@ -72,7 +74,7 @@ Minimal_Forward, // controls start here (the numbers are, of course, arbitrary) - Minimal_Text = 1000, + Minimal_Text = 1000 }; // ---------------------------------------------------------------------------- @@ -155,24 +157,31 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) { + wxBoxSizer *topsizer; wxHtmlWindow *html; -#if __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, wxString("About")); + + topsizer = new wxBoxSizer(wxVERTICAL); - html = new wxHtmlWindow(&dlg, -1, wxPoint(10, 10), wxSize(380, 160));//, "htmlWindow", FALSE); + 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)); - bu1 -> SetDefault(); - dlg.ShowModal(); - } - + 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(); + }