QskDialog::ButtonLayoutFlag added

This commit is contained in:
Uwe Rathmann 2018-11-05 16:06:43 +01:00
parent a5f9bd7f0c
commit 96ec87a620
1 changed files with 12 additions and 0 deletions

View File

@ -88,6 +88,18 @@ class QSK_EXPORT QskDialog : public QObject
Q_ENUM( ActionRole ) Q_ENUM( ActionRole )
// for building the mask in QskSkin::dialogButtonLayout
enum ButtonLayoutFlag
{
// from QPlatformDialogHelper::ButtonRole
ActionMask = 0x0FFFFFFF,
AlternateRole = 1 << 28,
Stretch = 1 << 29,
Reverse = 1 << 30
};
enum DialogCode enum DialogCode
{ {
Rejected = 0, Rejected = 0,