| 77 | } |
| 78 | |
| 79 | void PlotButtonManager::setCollapseOrientation(CollapseButtonOrientation p) |
| 80 | { |
| 81 | if(p == PBM_LEFT) { |
| 82 | m_lay->addWidget(m_collapseBtn); |
| 83 | m_lay->addWidget(m_collapsableContainer); |
| 84 | } else { |
| 85 | m_lay->addWidget(m_collapsableContainer); |
| 86 | m_lay->addWidget(m_collapseBtn); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | bool PlotButtonManager::collapsed() { return m_collapseBtn->isChecked(); } |
| 91 |
no test coverage detected