mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-15 11:38:49 -07:00
26 lines
631 B
C++
26 lines
631 B
C++
#ifndef DLG_ROLL_DICE_H
|
|
#define DLG_ROLL_DICE_H
|
|
|
|
#include <QDialog>
|
|
#include <QDialogButtonBox>
|
|
#include <QLabel>
|
|
#include <QSpinBox>
|
|
|
|
class DlgRollDice : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
static constexpr uint DEFAULT_NUMBER_SIDES_DIE = 20;
|
|
static constexpr uint DEFAULT_NUMBER_DICE_TO_ROLL = 1;
|
|
|
|
QLabel *numberOfSidesLabel, *numberOfDiceLabel;
|
|
QSpinBox *numberOfSidesEdit, *numberOfDiceEdit;
|
|
QDialogButtonBox *buttonBox;
|
|
|
|
public:
|
|
explicit DlgRollDice(QWidget *parent = nullptr);
|
|
[[nodiscard]] uint getDieSideCount() const;
|
|
[[nodiscard]] uint getDiceToRollCount() const;
|
|
};
|
|
|
|
#endif // DLG_ROLL_DICE_H
|