]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/vscroll/vstest.cpp
Allow passing the URL to open to webview sample on command line.
[wxWidgets.git] / samples / vscroll / vstest.cpp
index c8af46184e51e660ab4f9d382555f514188cf100..47e2822b3cf75506aede81b7fc5c7f2ad5a63696 100644 (file)
@@ -40,7 +40,7 @@
 // ----------------------------------------------------------------------------
 
 // the application icon (under Windows and OS/2 it is in resources)
 // ----------------------------------------------------------------------------
 
 // the application icon (under Windows and OS/2 it is in resources)
-#if !defined(__WXMSW__) && !defined(__WXPM__)
+#ifndef wxHAS_IMAGES_IN_RESOURCES
     #include "../sample.xpm"
 #endif
 
     #include "../sample.xpm"
 #endif
 
@@ -83,7 +83,7 @@ public:
         if ( m_frameStatusBar )
         {
             wxSize sz = GetClientSize();
         if ( m_frameStatusBar )
         {
             wxSize sz = GetClientSize();
-            SetStatusText(wxString::Format(_T("%dx%d"), sz.x, sz.y), 1);
+            SetStatusText(wxString::Format(wxT("%dx%d"), sz.x, sz.y), 1);
         }
 #endif // wxUSE_STATUSBAR
 
         }
 #endif // wxUSE_STATUSBAR
 
@@ -119,7 +119,7 @@ public:
 #if wxUSE_STATUSBAR
         m_frame->SetStatusText(wxString::Format
                                (
 #if wxUSE_STATUSBAR
         m_frame->SetStatusText(wxString::Format
                                (
-                                    _T("Page size = %d, pos = %d, max = %d"),
+                                    wxT("Page size = %d, pos = %d, max = %d"),
                                     GetScrollThumb(wxVERTICAL),
                                     GetScrollPos(wxVERTICAL),
                                     GetScrollRange(wxVERTICAL)
                                     GetScrollThumb(wxVERTICAL),
                                     GetScrollPos(wxVERTICAL),
                                     GetScrollRange(wxVERTICAL)
@@ -147,7 +147,7 @@ public:
             dc.DrawLine(0, y, clientSize.GetWidth(), y);
 
             wxCoord hLine = OnGetRowHeight(line);
             dc.DrawLine(0, y, clientSize.GetWidth(), y);
 
             wxCoord hLine = OnGetRowHeight(line);
-            dc.DrawText(wxString::Format(_T("Line %lu"), (unsigned long)line),
+            dc.DrawText(wxString::Format(wxT("Line %lu"), (unsigned long)line),
                         2, y + (hLine - hText) / 2);
 
             y += hLine;
                         2, y + (hLine - hText) / 2);
 
             y += hLine;
@@ -216,7 +216,7 @@ public:
 #if wxUSE_STATUSBAR
         m_frame->SetStatusText(wxString::Format
                                (
 #if wxUSE_STATUSBAR
         m_frame->SetStatusText(wxString::Format
                                (
-                                    _T("Page size = %d, pos = %d, max = %d"),
+                                    wxT("Page size = %d, pos = %d, max = %d"),
                                     GetScrollThumb(wxVERTICAL),
                                     GetScrollPos(wxVERTICAL),
                                     GetScrollRange(wxVERTICAL)
                                     GetScrollThumb(wxVERTICAL),
                                     GetScrollPos(wxVERTICAL),
                                     GetScrollRange(wxVERTICAL)
@@ -244,7 +244,7 @@ public:
             dc.DrawLine(x, 0, x, clientSize.GetHeight());
 
             wxCoord wLine = OnGetColumnWidth(line);
             dc.DrawLine(x, 0, x, clientSize.GetHeight());
 
             wxCoord wLine = OnGetColumnWidth(line);
-            dc.DrawRotatedText(wxString::Format(_T("Line %lu"), (unsigned long)line),
+            dc.DrawRotatedText(wxString::Format(wxT("Line %lu"), (unsigned long)line),
                                x + (wLine - hText) / 2, clientSize.GetHeight() - 5, 90);
 
             x += wLine;
                                x + (wLine - hText) / 2, clientSize.GetHeight() - 5, 90);
 
             x += wLine;
@@ -316,7 +316,7 @@ public:
 #if wxUSE_STATUSBAR
         m_frame->SetStatusText(wxString::Format
                                (
 #if wxUSE_STATUSBAR
         m_frame->SetStatusText(wxString::Format
                                (
-                                    _T("Page size = %d rows %d columns; pos = row: %d, column: %d; max = %d rows, %d columns"),
+                                    wxT("Page size = %d rows %d columns; pos = row: %d, column: %d; max = %d rows, %d columns"),
                                     GetScrollThumb(wxVERTICAL),
                                     GetScrollThumb(wxHORIZONTAL),
                                     GetScrollPos(wxVERTICAL),
                                     GetScrollThumb(wxVERTICAL),
                                     GetScrollThumb(wxHORIZONTAL),
                                     GetScrollPos(wxVERTICAL),
@@ -358,9 +358,9 @@ public:
                 if ( row == rowFirst )
                     dc.DrawLine(x, 0, x, clientSize.GetHeight());
 
                 if ( row == rowFirst )
                     dc.DrawLine(x, 0, x, clientSize.GetHeight());
 
-                dc.DrawText(wxString::Format(_T("Row %lu"), (unsigned long)row),
+                dc.DrawText(wxString::Format(wxT("Row %lu"), (unsigned long)row),
                             x + 2, y + rowHeight / 2 - hText);
                             x + 2, y + rowHeight / 2 - hText);
-                dc.DrawText(wxString::Format(_T("Col %lu"), (unsigned long)col),
+                dc.DrawText(wxString::Format(wxT("Col %lu"), (unsigned long)col),
                             x + 2, y + rowHeight / 2);
 
                 x += colWidth;
                             x + 2, y + rowHeight / 2);
 
                 x += colWidth;
@@ -497,7 +497,7 @@ bool VarScrollApp::OnInit()
 VarScrollFrame::VarScrollFrame()
                : wxFrame(NULL,
                          wxID_ANY,
 VarScrollFrame::VarScrollFrame()
                : wxFrame(NULL,
                          wxID_ANY,
-                         _T("VScroll wxWidgets Sample"),
+                         wxT("VScroll wxWidgets Sample"),
                          wxDefaultPosition,
                          wxSize(400, 350)),
                  m_scrollWindow(NULL)
                          wxDefaultPosition,
                          wxSize(400, 350)),
                  m_scrollWindow(NULL)
@@ -513,33 +513,33 @@ VarScrollFrame::VarScrollFrame()
 
     // the "About" item should be in the help menu
     wxMenu *menuHelp = new wxMenu;
 
     // the "About" item should be in the help menu
     wxMenu *menuHelp = new wxMenu;
-    menuHelp->Append(VScroll_About, _T("&About...\tF1"), _T("Show about dialog"));
+    menuHelp->Append(VScroll_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
 #ifdef wxHAS_RADIO_MENU_ITEMS
 
 #ifdef wxHAS_RADIO_MENU_ITEMS
-    menuMode->AppendRadioItem(VScroll_VScrollMode, _T("&Vertical\tAlt-V"),
-                              _T("Vertical scrolling only"));
-    menuMode->AppendRadioItem(VScroll_HScrollMode, _T("&Horizontal\tAlt-H"),
-                              _T("Horizontal scrolling only"));
+    menuMode->AppendRadioItem(VScroll_VScrollMode, wxT("&Vertical\tAlt-V"),
+                              wxT("Vertical scrolling only"));
+    menuMode->AppendRadioItem(VScroll_HScrollMode, wxT("&Horizontal\tAlt-H"),
+                              wxT("Horizontal scrolling only"));
     menuMode->AppendRadioItem(VScroll_HVScrollMode,
     menuMode->AppendRadioItem(VScroll_HVScrollMode,
-                              _T("Hori&zontal/Vertical\tAlt-Z"),
-                              _T("Horizontal and vertical scrolling"));
+                              wxT("Hori&zontal/Vertical\tAlt-Z"),
+                              wxT("Horizontal and vertical scrolling"));
     menuMode->Check(VScroll_VScrollMode, true);
 #else
     menuMode->Check(VScroll_VScrollMode, true);
 #else
-    menuMode->Append(VScroll_VScrollMode, _T("&Vertical\tAlt-V"),
-                     _T("Vertical scrolling only"));
-    menuMode->Append(VScroll_HScrollMode, _T("&Horizontal\tAlt-H"),
-                     _T("Horizontal scrolling only"));
-    menuMode->Append(VScroll_HVScrollMode, _T("Hori&zontal/Vertical\tAlt-Z"),
-                     _T("Horizontal and vertical scrolling"));
+    menuMode->Append(VScroll_VScrollMode, wxT("&Vertical\tAlt-V"),
+                     wxT("Vertical scrolling only"));
+    menuMode->Append(VScroll_HScrollMode, wxT("&Horizontal\tAlt-H"),
+                     wxT("Horizontal scrolling only"));
+    menuMode->Append(VScroll_HVScrollMode, wxT("Hori&zontal/Vertical\tAlt-Z"),
+                     wxT("Horizontal and vertical scrolling"));
 #endif
 
 #endif
 
-    menuFile->Append(VScroll_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
+    menuFile->Append(VScroll_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar;
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar;
-    menuBar->Append(menuFile, _T("&File"));
-    menuBar->Append(menuMode, _T("&Mode"));
-    menuBar->Append(menuHelp, _T("&Help"));
+    menuBar->Append(menuFile, wxT("&File"));
+    menuBar->Append(menuMode, wxT("&Mode"));
+    menuBar->Append(menuHelp, wxT("&Help"));
 
     // ... and attach this menu bar to the frame
     SetMenuBar(menuBar);
 
     // ... and attach this menu bar to the frame
     SetMenuBar(menuBar);
@@ -548,7 +548,7 @@ VarScrollFrame::VarScrollFrame()
 #if wxUSE_STATUSBAR
     // create a status bar just for fun (by default with 1 pane only)
     CreateStatusBar(2);
 #if wxUSE_STATUSBAR
     // create a status bar just for fun (by default with 1 pane only)
     CreateStatusBar(2);
-    SetStatusText(_T("Welcome to wxWidgets!"));
+    SetStatusText(wxT("Welcome to wxWidgets!"));
     int widths[2];
     widths[0] = -1;
     widths[1] = 100;
     int widths[2];
     widths[0] = -1;
     widths[1] = 100;
@@ -603,10 +603,10 @@ void VarScrollFrame::OnModeHVScroll(wxCommandEvent& WXUNUSED(event))
 
 void VarScrollFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 {
 
 void VarScrollFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 {
-    wxMessageBox(_T("VScroll shows how to implement scrolling with\n")
-                 _T("variable line widths and heights.\n")
-                 _T("(c) 2003 Vadim Zeitlin"),
-                 _T("About VScroll"),
+    wxMessageBox(wxT("VScroll shows how to implement scrolling with\n")
+                 wxT("variable line widths and heights.\n")
+                 wxT("(c) 2003 Vadim Zeitlin"),
+                 wxT("About VScroll"),
                  wxOK | wxICON_INFORMATION,
                  this);
 }
                  wxOK | wxICON_INFORMATION,
                  this);
 }