Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
199 KeyOz 1
/***************************************************************************
2
 *   Copyright (C) 2008 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
9
 *   This program 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 this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
19
#ifndef DLG_CONFIG_H
20
#define DLG_CONFIG_H
21
 
22
#include <QCheckBox>
23
 
24
#include "ui_dlg_Config.h"
25
#include "../cSettings.h"
26
#include "../global.h"
27
 
28
class dlg_Config : public QDialog, public Ui::dlg_Config_UI
29
{
30
public:
31
    dlg_Config(QWidget *parent = 0);
32
 
33
    ~dlg_Config();
34
 
35
    void set_Settings(cSettings *Set, int ID = 0);
36
    cSettings *get_Settings();
37
 
38
private:
39
    cSettings *Settings;
40
    QCheckBox *cb_Plot[MaxAnalog];
41
    QCheckBox *cb_Log[MaxAnalog];
42
 
43
};
44
 
45
#endif