]> git.saurik.com Git - wxWidgets.git/commitdiff
changed to use 2 html windows
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 3 Oct 1999 18:02:19 +0000 (18:02 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 3 Oct 1999 18:02:19 +0000 (18:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/html/test/test.cpp

index 8ac83bc75e83a8d5279f62145b814ccc88686cc7..38f6aa47be712692a85a57a0d1997cf75ff2bc6d 100644 (file)
     // Create the main application window
       MyFrame *frame = new MyFrame("wxHtmlWindow testing application",
          wxPoint(50, 50), wxSize(640, 480));
     // Create the main application window
       MyFrame *frame = new MyFrame("wxHtmlWindow testing application",
          wxPoint(50, 50), wxSize(640, 480));
+      MyFrame *frame2 = new MyFrame("wxHtmlWindow testing application",
+         wxPoint(150, 50), wxSize(640, 480));
    
     // Show it and tell the application that it's our main window
     // @@@ what does it do exactly, in fact? is it necessary here?
       frame->Show(TRUE);
    
     // Show it and tell the application that it's our main window
     // @@@ what does it do exactly, in fact? is it necessary here?
       frame->Show(TRUE);
+      frame2->Show(TRUE);
       SetTopWindow(frame);
 
    
       SetTopWindow(frame);
 
    
@@ -141,7 +144,7 @@ wxHtmlWindow *html;
 
 // frame constructor
    MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
 
 // frame constructor
    MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
-   : wxFrame((wxFrame *)NULL, -1, title, pos, size)
+   : wxFrame((wxFrame *)NULL, -1, title, pos, size, wxDEFAULT_FRAME_STYLE, "html_test_app")
    {
     // create a menu bar
       wxMenu *menuFile = new wxMenu;
    {
     // create a menu bar
       wxMenu *menuFile = new wxMenu;