Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
908 - 1
/***************************************************************************
2
 *   Copyright (C) 2009 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 WGT_INDEX_H
20
#define WGT_INDEX_H
21
 
22
#include <QWidget>
23
 
24
#include "ui_wgt_Index.h"
25
 
26
class wgt_Index : public QWidget, public Ui::wgt_Index_ui
27
{
28
    Q_OBJECT
29
 
30
    public:
31
        wgt_Index(QWidget *parent = 0);
32
 
33
        void set_StyleSheet(QString s_StyleSheet);
34
        void set_Name(QString s_Name);
35
        void set_Checked(bool b_Check);
36
        void set_Wert(QString s_Wert);
37
 
38
        bool get_Checked();
39
 
40
    private slots:
41
        void slot_Clicked();
42
 
43
    signals:
44
        void sig_Clicked();
45
 
46
 
47
};
48
 
49
#endif // WGT_INDEX_H