moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / keduca / keduca / kradioeduca.h
blobb17276d9f8c732a2a036fb73bfca77cc07930841
1 /***************************************************************************
2 kradioeduca.h - description
3 -------------------
4 begin : Wed Sep 6 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 KRADIOEDUCA_H
19 #define KRADIOEDUCA_H
22 #include <qradiobutton.h>
23 #include <qsimplerichtext.h>
25 /**QRadioButton with wordwrap and richtext features
26 *@author Javier Campos Morales
28 class KRadioEduca : public QRadioButton {
29 Q_OBJECT
31 public:
32 KRadioEduca(QWidget *parent=0, const char *name=0);
33 ~KRadioEduca();
35 protected:
37 // Protected methods
39 /** reimpl */
40 void drawButtonLabel( QPainter *p);
42 private:
44 // Private attributes
46 /** Rich Text */
47 QSimpleRichText *_doc;
51 #endif