mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-22 22:53:55 -07:00
32 lines
719 B
C++
32 lines
719 B
C++
/**
|
|
* @file dlg_roll_dice.h
|
|
* @ingroup GameDialogs
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#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
|