moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / keduca / keduca / kcheckeduca.h
bloba874b62d9dacc566cb7de337f933a9cc7390614f
1 /***************************************************************************
2 kcheckeduca.h - description
3 -------------------
4 begin : Tue Sep 5 2000
5 copyright : (C) 2000 by Javier Campos Morales
6 email : javi@asyris.org
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef KCHECKEDUCA_H
19 #define KCHECKEDUCA_H
21 #include <qcheckbox.h>
23 #include <qsimplerichtext.h>
25 /**KCheck with wordwrap and rich text support
26 *@author Javier Campos Morales
29 class KCheckEduca : public QCheckBox {
30 Q_OBJECT
32 public:
33 KCheckEduca(QWidget *parent=0, const char *name=0);
34 ~KCheckEduca();
36 protected:
37 void drawButtonLabel( QPainter *);
39 private:
40 /** Rich text */
41 QSimpleRichText *_doc;
44 #endif