forked from ElvishArtisan/rivendell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_events.h
80 lines (69 loc) · 2.18 KB
/
list_events.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// list_events.h
//
// List Rivendell Log Events
//
// (C) Copyright 2002-2020 Fred Gleason <[email protected]>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#ifndef LIST_EVENTS_H
#define LIST_EVENTS_H
#include <q3listview.h>
#include <qlabel.h>
#include <qcombobox.h>
#include <rddb.h>
#include <rddialog.h>
class ListEvents : public RDDialog
{
Q_OBJECT
public:
ListEvents(QString *eventname,QWidget *parent=0);
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
private slots:
void addData();
void editData();
void deleteData();
void renameData();
void doubleClickedData(Q3ListViewItem *,const QPoint &,int);
void filterActivatedData(int id);
void closeData();
void okData();
void cancelData();
protected:
void resizeEvent(QResizeEvent *e);
void closeEvent(QCloseEvent *e);
private:
void RefreshList();
void RefreshItem(Q3ListViewItem *item,std::vector<QString> *new_events=NULL);
void UpdateItem(Q3ListViewItem *item,QString name);
void WriteItem(Q3ListViewItem *item,RDSqlQuery *q);
QString WriteItemSql() const;
int ActiveEvents(QString event_name,QString *clock_list);
void DeleteEvent(QString event_name);
QString GetEventFilter(QString svc_name);
QString GetNoneFilter();
Q3ListView *edit_events_list;
QString *edit_eventname;
QLabel *edit_filter_label;
QComboBox *edit_filter_box;
QPushButton *edit_add_button;
QPushButton *edit_edit_button;
QPushButton *edit_delete_button;
QPushButton *edit_rename_button;
QPushButton *edit_close_button;
QPushButton *edit_ok_button;
QPushButton *edit_cancel_button;
};
#endif