GAbstractView: Add function for adding all to selection

This commit is contained in:
Shannon Booth 2020-01-07 22:28:40 +13:00 committed by Andreas Kling
commit 7cf15bcb75
Notes: sideshowbarker 2024-07-19 10:17:49 +09:00
2 changed files with 13 additions and 0 deletions

View file

@ -18,6 +18,7 @@ public:
GModelSelection& selection() { return m_selection; }
const GModelSelection& selection() const { return m_selection; }
void select_all();
bool is_editable() const { return m_editable; }
void set_editable(bool editable) { m_editable = editable; }