f53df7da64
Code submissions have continually suffered from formatting inconsistencies that constantly have to be addressed. Using clang-format simplifies this by making code formatting more consistent, and allows automation of the code formatting so that maintainers can focus more on the code itself instead of code formatting.
24 lines
417 B
C++
24 lines
417 B
C++
#pragma once
|
|
|
|
#include <QPushButton>
|
|
|
|
class MenuButton : public QPushButton {
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
void keyPressEvent(QKeyEvent *event) override;
|
|
|
|
public:
|
|
explicit inline MenuButton(QWidget *parent = nullptr)
|
|
: QPushButton(parent)
|
|
{
|
|
}
|
|
|
|
explicit inline MenuButton(const QString &text,
|
|
QWidget *parent = nullptr)
|
|
: QPushButton(text, parent)
|
|
{
|
|
}
|
|
};
|