Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
QStyleSheet is a Qt class.
Technical facts
Application type(s)
Operating system(s) or programming environment(s)
IDE(s):
Project type:
C++ standard:
Compiler(s):
Libraries used:
Qt: version 4.8.3 (32 bit)
STL: GNU ISO C++ Library, version 4.7.2
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TEMPLATE = app
SOURCES += main.cpp\
dialog.cpp
HEADERS += dialog.h
FORMS += dialog.ui
|
dialog.h
dialog.cpp
#include "dialog.h"
#include "ui_dialog.h"
Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)
{
ui->setupUi(this);
}
Dialog::~Dialog()
{
delete ui;
}
void Dialog::on_button_toggle_clicked()
{
ui->button_show->setEnabled( ! ui->button_show->isEnabled() );
ui->button_show->setText(
ui->button_show->isEnabled()
? QString("I am enabled")
: QString("I am disabled"));
}
|
main.cpp
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.

This page has been created by the tool CodeToHtml