updated to modern VTK
[engrid-github.git] / src / libengrid / guiselectboundarycodes.h
blobd66f8d3155a1cc0c095d16e9f37244b0179c0bb2
1 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 // + +
3 // + This file is part of enGrid. +
4 // + +
5 // + Copyright 2008-2014 enGits GmbH +
6 // + +
7 // + enGrid is free software: you can redistribute it and/or modify +
8 // + it under the terms of the GNU General Public License as published by +
9 // + the Free Software Foundation, either version 3 of the License, or +
10 // + (at your option) any later version. +
11 // + +
12 // + enGrid is distributed in the hope that it will be useful, +
13 // + but WITHOUT ANY WARRANTY; without even the implied warranty of +
14 // + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +
15 // + GNU General Public License for more details. +
16 // + +
17 // + You should have received a copy of the GNU General Public License +
18 // + along with enGrid. If not, see <http://www.gnu.org/licenses/>. +
19 // + +
20 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21 #ifndef guiselectboundarycodes_H
22 #define guiselectboundarycodes_H
24 #include "ui_guiselectboundarycodes.h"
25 #include "dialogoperation.h"
27 class GuiSelectBoundaryCodes : public DialogOperation<Ui::GuiSelectBoundaryCodes, Operation>
30 Q_OBJECT;
32 private: // attributes
34 QSet<int> m_DisplayBoundaryCodes;
36 private slots:
38 void selectAll();
39 void deselectAll();
40 void saveSelectionAsGrid();
42 protected: // methods
44 virtual void before();
45 virtual void operate();
47 public:
49 GuiSelectBoundaryCodes();
50 void setDisplayBoundaryCodes(const QSet<int> &bcs);
51 void getSelectedBoundaryCodes(QSet<int> &bcs);
55 #endif