moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kalzium / src / infodialog_small_impl.h
blob5987171429e419edf77bdb90629385d78cac1e76
1 /***************************************************************************
2 * Copyright (C) 2003 by Carsten Niehaus *
3 * cniehaus@kde.org *
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, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifndef INFODLG_SMALL_IMPL_H
21 #define INFODLG_SMALL_IMPL_H
23 #include "infodialog_small.h"
24 #include "element.h"
26 /**
27 * @author Carsten Niehaus
29 class infoDlgSmallImpl : public infoDlgSmall
31 Q_OBJECT
32 public:
33 /**
34 * Constructor
35 * @param el is the element which data will be used
37 infoDlgSmallImpl( Element *el, QWidget *parent = 0, const char *name = 0);
38 ~infoDlgSmallImpl();
40 Element *e;
42 private:
43 /**
44 * this set the values in the infodialog
45 **/
46 void setValues();
48 /**
49 * this add QWhatsThis to the labels
50 * **/
51 void setupHelp();
55 #endif