]> sigrok.org Git - sigrok-qt.git/blob - decodersform.h
.gitignore: Add missing entries.
[sigrok-qt.git] / decodersform.h
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifndef SIGROK_QT_DECODERSFORM_H
22 #define SIGROK_QT_DECODERSFORM_H
23
24 #include <QDialog>
25 #include <QListWidgetItem>
26
27 /* TODO: Don't hardcode maximum number of decoders. */
28 #define MAX_NUM_DECODERS 64
29
30 namespace Ui {
31         class DecodersForm;
32 }
33
34 class DecodersForm : public QDialog {
35         Q_OBJECT
36 public:
37         DecodersForm(QWidget *parent = 0);
38         ~DecodersForm();
39
40 protected:
41         void changeEvent(QEvent *e);
42
43 private:
44         Ui::DecodersForm *ui;
45
46 private slots:
47         void on_listWidget_currentItemChanged(QListWidgetItem *current,
48                                               QListWidgetItem *previous);
49         void on_closeButton_clicked();
50 };
51
52 #endif