// Created: 12/07/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#endif
// For compilers that support precompilation, includes "wx.h".
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#include "cspalette.h"
#include "symbols.h"
-#if defined(__WXGTK__) || defined(__WXMOTIF__)
+#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
#include "bitmaps/arrow.xpm"
#include "bitmaps/texttool.xpm"
#endif
{
// BEGIN mutual exclusivity code
if (toggled && (m_currentlySelected != -1) && (toolIndex != m_currentlySelected))
- ToggleTool(m_currentlySelected, FALSE);
+ ToggleTool(m_currentlySelected, false);
if (toggled)
m_currentlySelected = toolIndex;
m_currentlySelected = -1;
// END mutual exclusivity code
- return TRUE;
+ return true;
}
void csEditorToolPalette::OnMouseEnter(int toolIndex)
{
- wxString msg("");
+#if wxUSE_STATUSBAR
+ wxString msg = wxEmptyString;
if (toolIndex == PALETTE_ARROW)
- msg = "Pointer";
+ msg = _T("Pointer");
else if (toolIndex != -1)
{
csSymbol* symbol = wxGetApp().GetSymbolDatabase()->FindSymbol(toolIndex);
msg = symbol->GetName();
}
((wxFrame*) wxGetApp().GetTopWindow())->SetStatusText(msg);
+#else
+ wxUnusedVar(toolIndex);
+#endif // wxUSE_STATUSBAR
}
void csEditorToolPalette::SetSize(int x, int y, int width, int height, int sizeFlags)
{
if ((sel != m_currentlySelected) && (m_currentlySelected != -1))
{
- ToggleTool(m_currentlySelected, FALSE);
+ ToggleTool(m_currentlySelected, false);
}
m_currentlySelected = sel;
- ToggleTool(m_currentlySelected, TRUE);
+ ToggleTool(m_currentlySelected, true);
}
bool csApp::CreatePalette(wxFrame *parent)
win->SetDefaultSize(wxSize(10000, 40));
win->SetOrientation(wxLAYOUT_HORIZONTAL);
win->SetAlignment(wxLAYOUT_TOP);
- win->SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
- win->SetSashVisible(wxSASH_BOTTOM, TRUE);
+ win->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
+ win->SetSashVisible(wxSASH_BOTTOM, true);
m_diagramPaletteSashWindow = win;
- m_diagramPaletteSashWindow->Show(FALSE);
+ m_diagramPaletteSashWindow->Show(false);
// Load palette bitmaps
#ifdef __WXMSW__
- wxBitmap PaletteArrow("arrowtool");
- wxBitmap TextTool("texttool");
-#elif defined(__WXGTK__) || defined(__WXMOTIF__)
+ wxBitmap PaletteArrow(_T("arrowtool"));
+ wxBitmap TextTool(_T("texttool"));
+ wxSize toolBitmapSize(32, 32);
+#elif defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
wxBitmap PaletteArrow(arrow_xpm);
wxBitmap TextTool(texttool_xpm);
+ wxSize toolBitmapSize(22, 22);
#endif
- csEditorToolPalette *palette = new csEditorToolPalette(m_diagramPaletteSashWindow, ID_DIAGRAM_PALETTE, wxPoint(0, 0), wxSize(-1, -1), wxTB_HORIZONTAL|wxNO_BORDER);
+ csEditorToolPalette *palette = new csEditorToolPalette(m_diagramPaletteSashWindow, ID_DIAGRAM_PALETTE, wxPoint(0, 0), wxDefaultSize, wxTB_HORIZONTAL|wxNO_BORDER);
palette->SetMargins(2, 2);
- palette->SetToolBitmapSize(wxSize(32, 32));
+ 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, wxDefaultCoord, NULL, _T("Pointer"));
+ palette->AddTool(PALETTE_TEXT_TOOL, TextTool, wxNullBitmap, true, 0, wxDefaultCoord, NULL, _T("Text"));
+ wxChar** symbols = new wxChar*[20];
+ int noSymbols = 0;
+
+ symbols[noSymbols] = _T("Wide Rectangle");
+ noSymbols ++;
+
+ symbols[noSymbols] = _T("Thin Rectangle");
+ noSymbols ++;
+
+ symbols[noSymbols] = _T("Triangle");
+ noSymbols ++;
+
+ 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] = _T("Group");
+ noSymbols ++;
+
+ symbols[noSymbols] = _T("Circle");
+ noSymbols ++;
+
+ symbols[noSymbols] = _T("Circle shadow");
+ noSymbols ++;
+
+ symbols[noSymbols] = _T("SemiCircle");
+ noSymbols ++;
+#endif
+
+ int i;
+ for (i = 0; i < noSymbols; i++)
+ {
+ csSymbol* symbol = GetSymbolDatabase()->FindSymbol(symbols[i]);
+ if (symbol)
+ {
+ wxBitmap* bitmap = GetSymbolDatabase()->CreateToolBitmap(symbol, toolBitmapSize);
+ palette->AddTool(symbol->GetToolId(), *bitmap, wxNullBitmap, true, 0, wxDefaultCoord, NULL, symbol->GetName());
+
+ delete bitmap;
+ }
+ }
+ delete[] symbols;
+
+#if 0
wxNode* node = GetSymbolDatabase()->GetSymbols().First();
while (node)
{
csSymbol* symbol = (csSymbol*) node->Data();
- wxBitmap* bitmap = GetSymbolDatabase()->CreateToolBitmap(symbol);
- palette->AddTool(symbol->GetToolId(), *bitmap, wxNullBitmap, TRUE, 0, -1, NULL, symbol->GetName());
+
+ wxBitmap* bitmap = GetSymbolDatabase()->CreateToolBitmap(symbol, toolBitmapSize);
+ palette->AddTool(symbol->GetToolId(), *bitmap, wxNullBitmap, true, 0, wxDefaultCoord, NULL, symbol->GetName());
delete bitmap;
node = node->Next();
}
+#endif
palette->Realize();
palette->SetSelection(PALETTE_ARROW);
m_diagramPalette = palette;
- return TRUE;
+ return true;
}