]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/wxtest/test_wdr.cpp
Removed wxtest sample.
[wxWidgets.git] / samples / wxtest / test_wdr.cpp
diff --git a/samples/wxtest/test_wdr.cpp b/samples/wxtest/test_wdr.cpp
deleted file mode 100644 (file)
index 9d577d1..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-//------------------------------------------------------------------------------
-// Source code generated by wxDesigner from file: test.wdr
-// Do not modify this file, all changes will be lost!
-//------------------------------------------------------------------------------
-
-#ifdef __GNUG__
-    #pragma implementation "test_wdr.cpp"
-#endif
-
-// For compilers that support precompilation
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
-// Include private header
-#include "test_wdr.h"
-
-
-// Implement window functions
-
-wxSizer *MyDialogFunc( wxWindow *parent, bool call_fit, bool set_sizer )
-{
-    wxBoxSizer *item0 = new wxBoxSizer( wxVERTICAL );
-
-    wxStaticBox *item2 = new wxStaticBox( parent, -1, _T("Text") );
-    wxStaticBoxSizer *item1 = new wxStaticBoxSizer( item2, wxVERTICAL );
-
-    wxBoxSizer *item3 = new wxBoxSizer( wxHORIZONTAL );
-
-    wxTextCtrl *item4 = new wxTextCtrl( parent, ID_TEXTCTRL, wxEmptyString, wxDefaultPosition, wxSize(80,-1), 0 );
-    item3->Add( item4, 0, wxALIGN_CENTRE|wxALL, 5 );
-
-    item1->Add( item3, 0, wxALIGN_CENTRE|wxALL, 5 );
-
-    item0->Add( item1, 0, wxALIGN_CENTRE|wxALL, 5 );
-
-    if (set_sizer)
-    {
-        parent->SetAutoLayout( TRUE );
-        parent->SetSizer( item0 );
-        if (call_fit)
-        {
-            item0->Fit( parent );
-            item0->SetSizeHints( parent );
-        }
-    }
-    
-    return item0;
-}
-
-// Implement menubar functions
-
-wxMenuBar *MyMenuBarFunc()
-{
-    wxMenuBar *item0 = new wxMenuBar;
-    
-    wxMenu* item1 = new wxMenu;
-    item1->Append( ID_ABOUT, _T("About...\tF1"), wxEmptyString );
-    item1->Append( ID_TEST, _T("Test...\tF2"), wxEmptyString );
-    item1->Append( ID_QUIT, _T("Quit\tCtrl-Q"), wxEmptyString );
-    item0->Append( item1, _T("File") );
-    
-    return item0;
-}
-
-// Implement toolbar functions
-
-// Implement bitmap functions
-
-
-// End of generated file