summaryrefslogtreecommitdiffstats
path: root/src/infodialog.h
blob: 305a1a1d636fe0cef86a236d01b4c3fb2b0d6c4f (plain)
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
80
81
/***************************************************************************
 *   Copyright (C) 2005 by Danny Kukawka                                   *
 *                         danny.kukawka@web.de, dkukawka@suse.de          *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of version 2 of the GNU General Public License     *
 *   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.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 ***************************************************************************/
 
/*! 
*  \file 	infodialog.h
*  \brief 	Headerfile for infoDialog.cpp and the class \ref infoDialog .
*/
/*! 
*  \class 	infoDialog
*  \brief 	class for information dialog with checkbox (e.g. for DontShowAgain) 
*  \author 	Danny Kukawka, <dkukawka@suse.de>, <danny.kukawka@web.de>
*  \date    	2005
*/

#ifndef INFODIALOG_H
#define INFODIALOG_H

#include <tdeconfig.h>

#include "info_Dialog.h"

class infoDialog: public info_Dialog {

	Q_OBJECT
  

public:
	
	//! default constructor
	infoDialog( TDEConfig *config = 0, TQString captionName = TQString(), TQString message = TQString(), 
		    TQString dontShowAgainMsg = TQString(), TQString settingsEntryName = TQString(),
		    TQWidget *parent = 0, const char *name = 0);
	//! default destructor
	~infoDialog();

	//! return the value of dialogDisabled
	bool dialogIsDisabled();

private:

	//! the pointer to the settings of kpowersave, get from constructor
	TDEConfig *settings;

	//! name of the entry in the settings  
        /*! TQString store the name of the settings entry to 
	 *  store settings of 'DontShowAgain' checkbox
	 */
	TQString entryName;

	//! represent if the dialog is disabled by user
	/*!
	* This boolean tell if the dialog is already disabled by user settings
	* \li true:  if dialog is disabled
	* \li false: if not
	*/
	bool dialogDisabled;

private slots:

	//! called if the 'ok' button clicked
	void ButtonOK_clicked();
	
};

#endif