diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-09-20 10:55:36 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-09-21 08:07:50 (GMT) |
commit | 7bb16c92a29d316b0dc385e95d99d3edfd1b4196 (patch) | |
tree | 462d020724be4048a6cc6738d55f6dd34db2f445 /src/gui/widgets/qdialogbuttonbox.cpp | |
parent | f01dd45eb52e6a9d76fbd2645466cc52319715a0 (diff) | |
download | Qt-7bb16c92a29d316b0dc385e95d99d3edfd1b4196.zip Qt-7bb16c92a29d316b0dc385e95d99d3edfd1b4196.tar.gz Qt-7bb16c92a29d316b0dc385e95d99d3edfd1b4196.tar.bz2 |
Simplify the soft key roles of QAction.
Previously there were many options here that were inherited from the
Qtopia implementation. It was not clear to developers which value
they actually should use. A good example was the 'Next' value. In
a typical wizard application, next would be on the right and
'Previous' would be on the left. However, it is also common to have
'Next' on the left and have 'Cancel' on the right.
Basically what people really wanted was a way to explicitly set the
right and left soft keys, but since this relies on form factor and
is wrong if the screen is rotated, we choose positive and negative
actions as the values for these such that they still make sense when
the screen is rotated. Also this helps people who don't know if a
particular action should be on the left or right, but they *do* know
if their action has destructive characterisitics (negative).
As a convenience for widgets in Qt that use softkeys, we create a
standard softkey enumeration. That maps the actions to the correct
role and has default text.
Reviewed-by: Alessandro Portale
Diffstat (limited to 'src/gui/widgets/qdialogbuttonbox.cpp')
-rw-r--r-- | src/gui/widgets/qdialogbuttonbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/qdialogbuttonbox.cpp b/src/gui/widgets/qdialogbuttonbox.cpp index 2ceeca7..39566ef 100644 --- a/src/gui/widgets/qdialogbuttonbox.cpp +++ b/src/gui/widgets/qdialogbuttonbox.cpp @@ -580,13 +580,13 @@ QAction* QDialogButtonBoxPrivate::createSoftKey(QAbstractButton *button, QDialog case YesRole: case ActionRole: case HelpRole: - softkeyRole = QAction::OkSoftKey; + softkeyRole = QAction::PositiveSoftKey; break; case RejectRole: case DestructiveRole: case NoRole: case ResetRole: - softkeyRole = QAction::CancelSoftKey; + softkeyRole = QAction::NegativeSoftKey; break; default: break; |