You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
899 B
32 lines
899 B
#include <ntqapplication.h>
|
|
#include <ntqmainwindow.h>
|
|
#include <ntqtoolbar.h>
|
|
#include <ntqaction.h>
|
|
|
|
#include "labelonoff.xpm"
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
TQApplication app( argc, argv );
|
|
TQMainWindow * window = new TQMainWindow;
|
|
window->setCaption("TQt Example - Toggleaction");
|
|
TQToolBar * toolbar = new TQToolBar( window );
|
|
|
|
TQAction * labelonoffaction = new TQAction( window, "labelonoff" );
|
|
labelonoffaction->setToggleAction( TRUE );
|
|
|
|
labelonoffaction->setText( "labels on/off" );
|
|
labelonoffaction->setAccel( TQt::ALT+TQt::Key_L );
|
|
labelonoffaction->setIconSet( (TQPixmap) labelonoff_xpm );
|
|
|
|
TQObject::connect( labelonoffaction, SIGNAL( toggled( bool ) ),
|
|
window, SLOT( setUsesTextLabel( bool ) ) );
|
|
|
|
labelonoffaction->addTo( toolbar );
|
|
|
|
app.setMainWidget( window );
|
|
window->show();
|
|
return app.exec();
|
|
}
|
|
|