| 58 | const size_t nrDefaultButtons = sizeof(defaultButtons)/sizeof(defaultButtons[0]); |
| 59 | |
| 60 | Toolbar::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 | |
| 73 | Toolbar::~Toolbar() { |
| 74 | } |
nothing calls this directly
no outgoing calls
no test coverage detected