#include <QToggleButton.h>
Public Member Functions | |
QToggleButton (QWidget *parent=0, const char *name=0) | |
QToggleButton (const char *text1, const char *text2, QWidget *parent=0, const char *name=0) | |
~QToggleButton () | |
void | setText (const QString &) |
void | setPixmap (const QPixmap &) |
void | setText (const QString &up_text, const QString &down_text="") |
void | setPixmap (const QPixmap &up_pixmap, const QPixmap &down_pixmap) |
Private Slots | |
void | togglePixmap (bool on) |
Private Attributes | |
QString | toggled_btext |
QPixmap * | toggled_bpixmap |
This class implements a togglebutton with two different strings or pixmaps which will be exchanged when the button is toggled.
QToggleButton::QToggleButton | ( | QWidget * | parent = 0 , |
|
const char * | name = 0 | |||
) |
Default constructor.
QToggleButton::QToggleButton | ( | const char * | text1, | |
const char * | text2, | |||
QWidget * | parent = 0 , |
|||
const char * | name = 0 | |||
) |
The same as above but you can also pass the textes with it.
QToggleButton::~QToggleButton | ( | ) |
Default destructor.
void QToggleButton::setPixmap | ( | const QPixmap & | up_pixmap, | |
const QPixmap & | down_pixmap | |||
) |
Sets the pixmap which is shown when pressed or raised.
void QToggleButton::setPixmap | ( | const QPixmap & | ) | [inline] |
void QToggleButton::setText | ( | const QString & | up_text, | |
const QString & | down_text = "" | |||
) |
Sets the text which is shown when pressed or raised.
void QToggleButton::setText | ( | const QString & | ) | [inline] |
void QToggleButton::togglePixmap | ( | bool | on | ) | [private, slot] |
QPixmap* QToggleButton::toggled_bpixmap [private] |
QString QToggleButton::toggled_btext [private] |