OpenCPN Partial API docs
|
Generic toolbar implementation in pure wxWidgets adapted from wxToolBarSimple (deprecated). More...
#include <toolbar.h>
Public Member Functions | |
ocpnToolBarSimple (ocpnFloatingToolbarDialog *parent, wxWindowID winid, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxNO_BORDER, int orient=wxTB_HORIZONTAL) | |
bool | Create (ocpnFloatingToolbarDialog *parent, wxWindowID winid, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxNO_BORDER, int orient=wxTB_HORIZONTAL) |
virtual void | SetToggledBackgroundColour (wxColour c) |
virtual void | SetBackgroundColour (wxColour c) |
virtual wxColour | GetBackgroundColour () |
virtual void | SetColorScheme (ColorScheme cs) |
bool | OnMouseEvent (wxMouseEvent &event, wxPoint &position) |
void | OnToolTipTimerEvent (wxTimerEvent &event) |
void | OnToolTipOffTimerEvent (wxTimerEvent &event) |
wxToolBarToolBase * | AddTool (int toolid, const wxString &label, const wxBitmap &bitmap, const wxBitmap &bmpDisabled, wxItemKind kind=wxITEM_NORMAL, const wxString &shortHelp=wxEmptyString, const wxString &longHelp=wxEmptyString, wxObject *data=NULL) |
wxToolBarToolBase * | AddTool (int toolid, const wxString &label, const wxBitmap &bitmap, const wxString &shortHelp=wxEmptyString, wxItemKind kind=wxITEM_NORMAL) |
wxToolBarToolBase * | InsertTool (size_t pos, int id, const wxString &label, const wxBitmap &bitmap, const wxBitmap &bmpDisabled, wxItemKind kind, const wxString &shortHelp, const wxString &longHelp, wxObject *clientData) |
wxToolBarToolBase * | InsertTool (size_t pos, wxToolBarToolBase *tool) |
virtual bool | OnLeftClick (int toolid, bool toggleDown) |
virtual void | OnRightClick (int toolid, long x, long y) |
virtual void | DoPluginToolUp () |
bool | IsDirty () |
void | SetDirty (bool value) |
size_t | GetToolsCount () const |
void | SetToolShowCount (int count) |
int | GetToolShowCount () |
int | GetNoRowsOrColumns () |
int | GetLineCount () |
int | GetVisibleToolCount () |
void | SetToolNormalBitmapEx (wxToolBarToolBase *tool, const wxString &iconname) |
void | SetToolNormalBitmapSVG (wxToolBarToolBase *tool, wxString fileSVG) |
void | EnableRolloverBitmaps (bool enable) |
wxBitmap & | GetBitmap () |
virtual wxControl * | FindControl (int toolid) |
virtual wxToolBarToolBase * | AddSeparator () |
virtual wxToolBarToolBase * | InsertSeparator (size_t pos) |
virtual wxToolBarToolBase * | RemoveTool (int toolid) |
virtual bool | DeleteToolByPos (size_t pos) |
virtual bool | DeleteTool (int toolid) |
virtual void | ClearTools () |
virtual bool | Realize () |
virtual void | EnableTool (int toolid, bool enable) |
virtual void | ToggleTool (int toolid, bool toggle) |
virtual void | SetToolBitmaps (int toolid, wxBitmap *bmp, wxBitmap *bmpRollover) |
virtual void | SetToolBitmapsSVG (int id, wxString fileSVGNormal, wxString fileSVGRollover, wxString fileSVGToggled) |
void | InvalidateBitmaps () |
wxBitmap & | CreateBitmap (double display_scale=1.0) |
virtual wxObject * | GetToolClientData (int toolid) const |
virtual void | SetToolClientData (int toolid, wxObject *clientData) |
virtual int | GetToolPos (int id) const |
virtual bool | GetToolState (int toolid) const |
virtual bool | GetToolEnabled (int toolid) const |
virtual void | SetToolShortHelp (int toolid, const wxString &helpString) |
virtual wxString | GetToolShortHelp (int toolid) const |
virtual void | SetToolLongHelp (int toolid, const wxString &helpString) |
virtual wxString | GetToolLongHelp (int toolid) const |
virtual void | SetToolTooltipHiViz (int id, bool b_hiviz) |
virtual void | SetSizeFactor (float factor) |
void | SetMaxRowsCols (int rows, int cols) |
int | GetMaxRows () const |
int | GetMaxCols () const |
virtual void | SetToolBitmapSize (const wxSize &size) |
virtual wxSize | GetToolBitmapSize () const |
virtual wxSize | GetToolSize () const |
virtual wxRect | GetToolRect (int tool_id) |
wxToolBarToolBase * | FindToolForPosition (wxCoord x, wxCoord y) |
wxToolBarToolBase * | FindById (int toolid) const |
bool | IsVertical () const |
void | HideTooltip () |
void | KillTooltip () |
void | EnableTooltips () |
void | DisableTooltips () |
Public Attributes | |
wxToolBarToolsList | m_tools |
ocpnFloatingToolbarDialog * | m_parentContainer |
int | m_maxRows |
int | m_maxCols |
wxCoord | m_defaultWidth |
wxCoord | m_defaultHeight |
wxCoord | m_maxWidth |
wxCoord | m_maxHeight |
Protected Member Functions | |
void | Init () |
virtual wxToolBarToolBase * | DoAddTool (int toolid, const wxString &label, const wxBitmap &bitmap, const wxBitmap &bmpDisabled, wxItemKind kind, const wxString &shortHelp=wxEmptyString, const wxString &longHelp=wxEmptyString, wxObject *clientData=NULL, wxCoord xPos=wxDefaultCoord, wxCoord yPos=wxDefaultCoord) |
virtual bool | DoInsertTool (size_t pos, wxToolBarToolBase *tool) |
virtual bool | DoDeleteTool (size_t pos, wxToolBarToolBase *tool) |
virtual void | DoEnableTool (wxToolBarToolBase *tool, bool enable) |
virtual void | DoToggleTool (wxToolBarToolBase *tool, bool toggle) |
virtual wxToolBarToolBase * | CreateTool (int winid, const wxString &label, const wxBitmap &bmpNormal, const wxBitmap &bmpDisabled, wxItemKind kind, wxObject *clientData, const wxString &shortHelp, const wxString &longHelp) |
void | DrawTool (wxToolBarToolBase *tool) |
virtual void | DrawTool (wxDC &dc, wxToolBarToolBase *tool) |
void | CreateToolBitmap (wxToolBarToolBase *toolBase) |
Protected Attributes | |
bool | m_dirty |
int | m_currentRowsOrColumns |
int | m_LineCount |
int | m_pressedTool |
int | m_currentTool |
wxCoord | m_lastX |
wxCoord | m_lastY |
wxCoord | m_xPos |
wxCoord | m_yPos |
wxColour | m_toggle_bg_color |
wxColour | m_toolOutlineColour |
wxColour | m_background_color |
ToolTipWin * | m_pToolTipWin |
ocpnToolBarTool * | m_last_ro_tool |
ColorScheme | m_currentColorScheme |
wxTimer | m_tooltip_timer |
int | m_one_shot |
wxTimer | m_tooltipoff_timer |
int | m_tooltip_off |
bool | m_btooltip_show |
bool | m_btoolbar_is_zooming |
ocpnStyle::Style * | m_style |
int | m_orient |
float | m_sizefactor |
int | m_last_plugin_down_id |
bool | m_leftDown |
int | m_nShowTools |
bool | m_tbenableRolloverBitmaps |
wxBitmap | m_bitmap |
Generic toolbar implementation in pure wxWidgets adapted from wxToolBarSimple (deprecated).
|
inline |
|
virtual |
Definition at line 1179 of file toolbar.cpp.
|
virtual |
Definition at line 2048 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::AddTool | ( | int | toolid, |
const wxString & | label, | ||
const wxBitmap & | bitmap, | ||
const wxBitmap & | bmpDisabled, | ||
wxItemKind | kind = wxITEM_NORMAL , |
||
const wxString & | shortHelp = wxEmptyString , |
||
const wxString & | longHelp = wxEmptyString , |
||
wxObject * | data = NULL |
||
) |
Definition at line 1045 of file toolbar.cpp.
|
inline |
|
virtual |
Definition at line 1996 of file toolbar.cpp.
bool ocpnToolBarSimple::Create | ( | ocpnFloatingToolbarDialog * | parent, |
wxWindowID | winid, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = wxNO_BORDER , |
||
int | orient = wxTB_HORIZONTAL |
||
) |
Definition at line 1148 of file toolbar.cpp.
wxBitmap & ocpnToolBarSimple::CreateBitmap | ( | double | display_scale = 1.0 | ) |
Definition at line 1362 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 971 of file toolbar.cpp.
|
protected |
Definition at line 1549 of file toolbar.cpp.
|
virtual |
Definition at line 2029 of file toolbar.cpp.
|
virtual |
Definition at line 2013 of file toolbar.cpp.
void ocpnToolBarSimple::DisableTooltips | ( | ) |
Definition at line 1192 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1029 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1136 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1880 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1090 of file toolbar.cpp.
|
virtual |
Definition at line 2178 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1886 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1668 of file toolbar.cpp.
|
inline |
|
virtual |
Definition at line 1974 of file toolbar.cpp.
void ocpnToolBarSimple::EnableTooltips | ( | ) |
Definition at line 1186 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::FindById | ( | int | toolid | ) | const |
Definition at line 2116 of file toolbar.cpp.
|
virtual |
Definition at line 2097 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::FindToolForPosition | ( | wxCoord | x, |
wxCoord | y | ||
) |
Definition at line 1838 of file toolbar.cpp.
|
inlinevirtual |
|
inlinevirtual |
|
virtual |
Definition at line 1961 of file toolbar.cpp.
|
virtual |
Definition at line 1944 of file toolbar.cpp.
|
virtual |
Definition at line 1904 of file toolbar.cpp.
|
virtual |
Definition at line 1925 of file toolbar.cpp.
|
virtual |
Definition at line 1865 of file toolbar.cpp.
|
virtual |
Definition at line 1897 of file toolbar.cpp.
|
inlinevirtual |
|
virtual |
Definition at line 1937 of file toolbar.cpp.
int ocpnToolBarSimple::GetVisibleToolCount | ( | ) |
Definition at line 2002 of file toolbar.cpp.
void ocpnToolBarSimple::HideTooltip | ( | ) |
Definition at line 1212 of file toolbar.cpp.
|
protected |
Definition at line 995 of file toolbar.cpp.
|
virtual |
Definition at line 2052 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::InsertTool | ( | size_t | pos, |
int | id, | ||
const wxString & | label, | ||
const wxBitmap & | bitmap, | ||
const wxBitmap & | bmpDisabled, | ||
wxItemKind | kind, | ||
const wxString & | shortHelp, | ||
const wxString & | longHelp, | ||
wxObject * | clientData | ||
) |
Definition at line 1056 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::InsertTool | ( | size_t | pos, |
wxToolBarToolBase * | tool | ||
) |
Definition at line 1075 of file toolbar.cpp.
void ocpnToolBarSimple::InvalidateBitmaps | ( | ) |
Definition at line 1855 of file toolbar.cpp.
void ocpnToolBarSimple::KillTooltip | ( | ) |
Definition at line 1198 of file toolbar.cpp.
|
virtual |
Definition at line 2139 of file toolbar.cpp.
bool ocpnToolBarSimple::OnMouseEvent | ( | wxMouseEvent & | event, |
wxPoint & | position | ||
) |
Definition at line 1438 of file toolbar.cpp.
|
virtual |
Definition at line 2155 of file toolbar.cpp.
void ocpnToolBarSimple::OnToolTipOffTimerEvent | ( | wxTimerEvent & | event | ) |
Definition at line 1434 of file toolbar.cpp.
void ocpnToolBarSimple::OnToolTipTimerEvent | ( | wxTimerEvent & | event | ) |
Definition at line 1395 of file toolbar.cpp.
|
virtual |
Definition at line 1232 of file toolbar.cpp.
|
virtual |
Definition at line 2072 of file toolbar.cpp.
|
inlinevirtual |
|
virtual |
Definition at line 1220 of file toolbar.cpp.
|
inline |
|
inlinevirtual |
|
inlinevirtual |
|
virtual |
Definition at line 2222 of file toolbar.cpp.
|
inlinevirtual |
|
virtual |
Definition at line 2260 of file toolbar.cpp.
|
virtual |
Definition at line 1966 of file toolbar.cpp.
|
virtual |
Definition at line 1918 of file toolbar.cpp.
void ocpnToolBarSimple::SetToolNormalBitmapEx | ( | wxToolBarToolBase * | tool, |
const wxString & | iconname | ||
) |
Definition at line 2197 of file toolbar.cpp.
void ocpnToolBarSimple::SetToolNormalBitmapSVG | ( | wxToolBarToolBase * | tool, |
wxString | fileSVG | ||
) |
Definition at line 2212 of file toolbar.cpp.
|
virtual |
Definition at line 1911 of file toolbar.cpp.
|
inline |
|
virtual |
Definition at line 1989 of file toolbar.cpp.
|
virtual |
Definition at line 1951 of file toolbar.cpp.
|
protected |
|
protected |
ocpnFloatingToolbarDialog* ocpnToolBarSimple::m_parentContainer |
|
protected |
|
protected |
|
protected |