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="", const wxString &longHelp="", wxObject *data=NULL) |
wxToolBarToolBase * | AddTool (int toolid, const wxString &label, const wxBitmap &bitmap, const wxString &shortHelp="", 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="", const wxString &longHelp="", 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 |
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 1005 of file toolbar.cpp.
|
virtual |
Definition at line 1848 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 = "" , |
||
const wxString & | longHelp = "" , |
||
wxObject * | data = NULL |
||
) |
Definition at line 871 of file toolbar.cpp.
|
inline |
|
virtual |
Definition at line 1796 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 974 of file toolbar.cpp.
wxBitmap & ocpnToolBarSimple::CreateBitmap | ( | double | display_scale = 1.0 | ) |
Definition at line 1174 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 798 of file toolbar.cpp.
|
protected |
Definition at line 1349 of file toolbar.cpp.
|
virtual |
Definition at line 1829 of file toolbar.cpp.
|
virtual |
Definition at line 1813 of file toolbar.cpp.
void ocpnToolBarSimple::DisableTooltips | ( | ) |
Definition at line 1013 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 855 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 962 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1680 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 916 of file toolbar.cpp.
|
virtual |
Definition at line 1978 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1686 of file toolbar.cpp.
|
protectedvirtual |
Definition at line 1468 of file toolbar.cpp.
|
inline |
|
virtual |
Definition at line 1774 of file toolbar.cpp.
void ocpnToolBarSimple::EnableTooltips | ( | ) |
Definition at line 1007 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::FindById | ( | int | toolid | ) | const |
Definition at line 1916 of file toolbar.cpp.
|
virtual |
Definition at line 1897 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::FindToolForPosition | ( | wxCoord | x, |
wxCoord | y | ||
) |
Definition at line 1638 of file toolbar.cpp.
|
inlinevirtual |
|
inlinevirtual |
|
virtual |
Definition at line 1761 of file toolbar.cpp.
|
virtual |
Definition at line 1744 of file toolbar.cpp.
|
virtual |
Definition at line 1704 of file toolbar.cpp.
|
virtual |
Definition at line 1725 of file toolbar.cpp.
|
virtual |
Definition at line 1665 of file toolbar.cpp.
|
virtual |
Definition at line 1697 of file toolbar.cpp.
|
inlinevirtual |
|
virtual |
Definition at line 1737 of file toolbar.cpp.
int ocpnToolBarSimple::GetVisibleToolCount | ( | ) |
Definition at line 1802 of file toolbar.cpp.
void ocpnToolBarSimple::HideTooltip | ( | ) |
Definition at line 1029 of file toolbar.cpp.
|
protected |
Definition at line 822 of file toolbar.cpp.
|
virtual |
Definition at line 1852 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 882 of file toolbar.cpp.
wxToolBarToolBase * ocpnToolBarSimple::InsertTool | ( | size_t | pos, |
wxToolBarToolBase * | tool | ||
) |
Definition at line 901 of file toolbar.cpp.
void ocpnToolBarSimple::InvalidateBitmaps | ( | ) |
Definition at line 1655 of file toolbar.cpp.
void ocpnToolBarSimple::KillTooltip | ( | ) |
Definition at line 1019 of file toolbar.cpp.
|
virtual |
Definition at line 1939 of file toolbar.cpp.
bool ocpnToolBarSimple::OnMouseEvent | ( | wxMouseEvent & | event, |
wxPoint & | position | ||
) |
Definition at line 1245 of file toolbar.cpp.
|
virtual |
Definition at line 1955 of file toolbar.cpp.
void ocpnToolBarSimple::OnToolTipOffTimerEvent | ( | wxTimerEvent & | event | ) |
Definition at line 1241 of file toolbar.cpp.
void ocpnToolBarSimple::OnToolTipTimerEvent | ( | wxTimerEvent & | event | ) |
Definition at line 1207 of file toolbar.cpp.
|
virtual |
Definition at line 1044 of file toolbar.cpp.
|
virtual |
Definition at line 1872 of file toolbar.cpp.
|
inlinevirtual |
|
virtual |
Definition at line 1035 of file toolbar.cpp.
|
inline |
|
inlinevirtual |
|
inlinevirtual |
|
virtual |
Definition at line 2022 of file toolbar.cpp.
|
inlinevirtual |
|
virtual |
Definition at line 2060 of file toolbar.cpp.
|
virtual |
Definition at line 1766 of file toolbar.cpp.
|
virtual |
Definition at line 1718 of file toolbar.cpp.
void ocpnToolBarSimple::SetToolNormalBitmapEx | ( | wxToolBarToolBase * | tool, |
const wxString & | iconname | ||
) |
Definition at line 1997 of file toolbar.cpp.
void ocpnToolBarSimple::SetToolNormalBitmapSVG | ( | wxToolBarToolBase * | tool, |
wxString | fileSVG | ||
) |
Definition at line 2012 of file toolbar.cpp.
|
virtual |
Definition at line 1711 of file toolbar.cpp.
|
inline |
|
virtual |
Definition at line 1789 of file toolbar.cpp.
|
virtual |
Definition at line 1751 of file toolbar.cpp.
|
protected |
|
protected |
ocpnFloatingToolbarDialog* ocpnToolBarSimple::m_parentContainer |
|
protected |
|
protected |