MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / Toolbar

Method Toolbar

src/Windows/Toolbar.cpp:60–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58const size_t nrDefaultButtons = sizeof(defaultButtons)/sizeof(defaultButtons[0]);
59
60Toolbar::Toolbar() :
61 Window(NULL, TOOLBARCLASSNAME),
62 m_nrButtons(0),
63 m_buttons(NULL),
64 m_buttonMenus(NULL),
65 m_connectBitmapIndex(-1),
66 m_disconnectBitmapIndex(-1),
67 m_rebar(NULL)
68{
69 m_exStyle = WS_EX_PALETTEWINDOW;
70 m_style = WS_CHILD|/*WS_VISIBLE|*/WS_CLIPCHILDREN|WS_CLIPSIBLINGS|TBSTYLE_TOOLTIPS|CCS_TOP|TBSTYLE_FLAT|BTNS_AUTOSIZE|CCS_NOPARENTALIGN|CCS_NORESIZE|CCS_NODIVIDER;
71}
72
73Toolbar::~Toolbar() {
74}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected