#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;");
}
Add a code snippet to your website: www.paste.org