]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/ogl/studio/cspalette.cpp
added bookctrl.h and listbook.h; moved bookctrl.cpp to the correct place
[wxWidgets.git] / contrib / samples / ogl / studio / cspalette.cpp
index 80b48ebd534284ecc1e6222a616bd481947fa226..23a238dc2ab41299bc98babd1fa668e2d563aaf7 100644 (file)
@@ -36,7 +36,7 @@
 #include "cspalette.h"
 #include "symbols.h"
 
-#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)
+#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
 #include "bitmaps/arrow.xpm"
 #include "bitmaps/texttool.xpm"
 #endif
@@ -72,9 +72,9 @@ bool csEditorToolPalette::OnLeftClick(int toolIndex, bool toggled)
 
 void csEditorToolPalette::OnMouseEnter(int toolIndex)
 {
-    wxString msg("");
+    wxString msg = wxEmptyString;
     if (toolIndex == PALETTE_ARROW)
-        msg = "Pointer";
+        msg = _T("Pointer");
     else if (toolIndex != -1)
     {
         csSymbol* symbol = wxGetApp().GetSymbolDatabase()->FindSymbol(toolIndex);
@@ -115,10 +115,10 @@ bool csApp::CreatePalette(wxFrame *parent)
 
   // Load palette bitmaps
 #ifdef __WXMSW__
-    wxBitmap PaletteArrow("arrowtool");
-    wxBitmap TextTool("texttool");
+    wxBitmap PaletteArrow(_T("arrowtool"));
+    wxBitmap TextTool(_T("texttool"));
     wxSize toolBitmapSize(32, 32);
-#elif defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)
+#elif defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
     wxBitmap PaletteArrow(arrow_xpm);
     wxBitmap TextTool(texttool_xpm);
     wxSize toolBitmapSize(22, 22);
@@ -130,37 +130,37 @@ bool csApp::CreatePalette(wxFrame *parent)
 
   palette->SetToolBitmapSize(toolBitmapSize);
 
-  palette->AddTool(PALETTE_ARROW, PaletteArrow, wxNullBitmap, TRUE, 0, -1, NULL, "Pointer");
-  palette->AddTool(PALETTE_TEXT_TOOL, TextTool, wxNullBitmap, TRUE, 0, -1, NULL, "Text");
+  palette->AddTool(PALETTE_ARROW, PaletteArrow, wxNullBitmap, TRUE, 0, -1, NULL, _T("Pointer"));
+  palette->AddTool(PALETTE_TEXT_TOOL, TextTool, wxNullBitmap, TRUE, 0, -1, NULL, _T("Text"));
 
-  char** symbols = new char*[20];
+  wxChar** symbols = new wxChar*[20];
   int noSymbols = 0;
 
-  symbols[noSymbols] = "Wide Rectangle";
+  symbols[noSymbols] = _T("Wide Rectangle");
   noSymbols ++;
 
-  symbols[noSymbols] =  "Thin Rectangle";
+  symbols[noSymbols] =  _T("Thin Rectangle");
   noSymbols ++;
  
-  symbols[noSymbols] =  "Triangle";
+  symbols[noSymbols] =  _T("Triangle");
   noSymbols ++;
 
-  symbols[noSymbols] =  "Octagon";
+  symbols[noSymbols] =  _T("Octagon");
   noSymbols ++;
 
   // For some reason, we're getting Gdk errors with
   // some shapes, such as ones that use DrawEllipse.
 #ifndef __WXGTK__
-  symbols[noSymbols] =  "Group";
+  symbols[noSymbols] =  _T("Group");
   noSymbols ++;
 
-  symbols[noSymbols] =  "Circle";
+  symbols[noSymbols] =  _T("Circle");
   noSymbols ++;
 
-  symbols[noSymbols] =  "Circle shadow";
+  symbols[noSymbols] =  _T("Circle shadow");
   noSymbols ++;
 
-  symbols[noSymbols] =  "SemiCircle";
+  symbols[noSymbols] =  _T("SemiCircle");
   noSymbols ++;
 #endif