Psst.. new poll here.
[email protected] web/email now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!
Paste
Pasted as C++ by registered user raphael ( 1 year ago )
#ifndef PUSHBUTTONROUGE_H
#define PUSHBUTTONROUGE_H
#include <QPushButton>
class PushButtonRouge : public QPushButton
{
public:
PushButtonRouge(QWidget *parent);
};
#endif // PUSHBUTTONROUGE_H
#include "pushbuttonrouge.h"
PushButtonRouge::PushButtonRouge(QWidget *parent) : QPushButton(parent)
{
setStyleSheet("background-color: red;");
}
Revise this Paste