Updated French translation
[timedsilencer] / switchingeventlist.h
1 /*
2  * This file is part of TimedSilencer.
3  *
4  *  TimedSilencer is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  TimedSilencer is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with TimedSilencer.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef SWITCHINGEVENTLIST_H
19 #define SWITCHINGEVENTLIST_H
20
21 #include <QTableView>
22 struct QStandardItemModel;
23 struct ProfileEvent;
24
25 enum EventCols {EV_STATUS, EV_FROM, EV_TO, EV_REPEAT, EV_ID};
26
27 class SwitchingEventList : public QTableView
28 {
29     Q_OBJECT
30 public:
31     explicit SwitchingEventList(QWidget *parent = 0);
32     ~SwitchingEventList();
33     int getRowFromID(QByteArray id);
34
35 signals:
36
37 public slots:
38     void addNewEvent(QVariant event);
39     void editEvent(QByteArray id, bool new_status);
40     void deleteEvent(QByteArray id);
41
42 protected slots:
43     void loadSavedEvents();
44     void updateRow(int row, ProfileEvent *pe);
45     void editEvent(QModelIndex index);
46
47 private:
48     QStandardItemModel *model;
49 };
50
51 #endif // SWITCHINGEVENTLIST_H