summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/systrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/systrace.h')
-rw-r--r--utils/rbutilqt/systrace.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/utils/rbutilqt/systrace.h b/utils/rbutilqt/systrace.h
new file mode 100644
index 0000000000..b0a6f70fa6
--- /dev/null
+++ b/utils/rbutilqt/systrace.h
@@ -0,0 +1,47 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Riebeling
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#ifndef SYSTRACE_H
22#define SYSTRACE_H
23
24#include <QDialog>
25#include "ui_systracefrm.h"
26
27class SysTrace : public QDialog
28{
29 Q_OBJECT
30 public:
31 SysTrace(QWidget *parent);
32 static QString getTrace(void);
33 static void save(QString filename = "");
34 static void rotateTrace(void);
35 private:
36 void changeEvent(QEvent *event);
37 Ui::SysTraceFrm ui;
38
39 private slots:
40 void saveCurrentTrace(void);
41 void savePreviousTrace(void);
42 void refresh(void);
43
44};
45
46#endif
47