Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
c1350d80
Commit
c1350d80
authored
8 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
CheckBoxMessageDialog can have up to three buttons.
parent
0b79fc9e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/utils/dialog.py
+60
-25
60 additions, 25 deletions
fsl/utils/dialog.py
with
60 additions
and
25 deletions
fsl/utils/dialog.py
+
60
−
25
View file @
c1350d80
...
@@ -732,8 +732,10 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -732,8 +732,10 @@ class CheckBoxMessageDialog(wx.Dialog):
message
=
None
,
message
=
None
,
cbMessages
=
None
,
cbMessages
=
None
,
cbStates
=
None
,
cbStates
=
None
,
okBtnText
=
None
,
yesText
=
None
,
cancelBtnText
=
None
,
noText
=
None
,
cancelText
=
None
,
focus
=
None
,
icon
=
None
,
icon
=
None
,
style
=
None
):
style
=
None
):
"""
Create a ``CheckBoxMessageDialog``.
"""
Create a ``CheckBoxMessageDialog``.
...
@@ -749,11 +751,18 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -749,11 +751,18 @@ class CheckBoxMessageDialog(wx.Dialog):
:arg cbStates: A list of initial states (boolean values) for
:arg cbStates: A list of initial states (boolean values) for
each ``wx.CheckBox``.
each ``wx.CheckBox``.
:arg
okBtn
Text: Text to show on the
OK
/confirm button. Defaults
to
:arg
yes
Text:
Text to show on the
*yes*
/confirm button. Defaults
*OK*.
to
*OK*.
:arg cancelBtnText: Text to show on the cancel button. If not provided,
:arg noText: Text to show on the *no* button. If not provided,
there will be no cancel button.
there will be no *no* button.
:arg cancelText: Text to show on the *cancel* button. If not
provided, there will be no cancel button.
:arg focus: One of ``
'
yes
'
``, ``
'
no
'
```, or ``
'
cancel
'
``,
specifying which button should be given initial
focus.
:arg icon: A ``wx`` icon identifier (e.g.
:arg icon: A ``wx`` icon identifier (e.g.
``wx.ICON_EXCLAMATION``).
``wx.ICON_EXCLAMATION``).
...
@@ -762,12 +771,12 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -762,12 +771,12 @@ class CheckBoxMessageDialog(wx.Dialog):
method. Defaults to ``wx.DEFAULT_DIALOG_STYLE``.
method. Defaults to ``wx.DEFAULT_DIALOG_STYLE``.
"""
"""
if
style
is
None
:
style
=
wx
.
DEFAULT_DIALOG_STYLE
if
style
is
None
:
style
=
wx
.
DEFAULT_DIALOG_STYLE
if
title
is
None
:
title
=
''
if
title
is
None
:
title
=
''
if
message
is
None
:
message
=
''
if
message
is
None
:
message
=
''
if
cbMessages
is
None
:
cbMessages
=
[
''
]
if
cbMessages
is
None
:
cbMessages
=
[
''
]
if
cbStates
is
None
:
cbStates
=
[
False
]
*
len
(
cbMessages
)
if
cbStates
is
None
:
cbStates
=
[
False
]
*
len
(
cbMessages
)
if
okBtn
Text
is
None
:
okBtn
Text
=
'
OK
'
if
yes
Text
is
None
:
yes
Text
=
'
OK
'
wx
.
Dialog
.
__init__
(
self
,
parent
,
title
=
title
,
style
=
style
)
wx
.
Dialog
.
__init__
(
self
,
parent
,
title
=
title
,
style
=
style
)
...
@@ -791,18 +800,25 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -791,18 +800,25 @@ class CheckBoxMessageDialog(wx.Dialog):
cb
.
SetValue
(
state
)
cb
.
SetValue
(
state
)
self
.
__checkboxes
.
append
(
cb
)
self
.
__checkboxes
.
append
(
cb
)
self
.
__message
=
wx
.
StaticText
(
self
,
label
=
message
)
self
.
__message
=
wx
.
StaticText
(
self
,
label
=
message
)
self
.
__
ok
Button
=
wx
.
Button
(
self
,
label
=
okBtn
Text
,
id
=
wx
.
ID_
OK
)
self
.
__
yes
Button
=
wx
.
Button
(
self
,
label
=
yes
Text
,
id
=
wx
.
ID_
YES
)
self
.
__
ok
Button
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
__on
OK
Button
)
self
.
__
yes
Button
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
__on
Yes
Button
)
if
cancelBtnText
is
not
None
:
if
noText
is
not
None
:
self
.
__noButton
=
wx
.
Button
(
self
,
label
=
noText
,
id
=
wx
.
ID_NO
)
self
.
__noButton
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
__onNoButton
)
else
:
self
.
__noButton
=
None
if
cancelText
is
not
None
:
self
.
__cancelButton
=
wx
.
Button
(
self
,
self
.
__cancelButton
=
wx
.
Button
(
self
,
label
=
cancel
Btn
Text
,
label
=
cancelText
,
id
=
wx
.
ID_CANCEL
)
id
=
wx
.
ID_CANCEL
)
self
.
__cancelButton
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
__onCancelButton
)
self
.
__cancelButton
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
__onCancelButton
)
else
:
else
:
self
.
__cancelButton
=
None
self
.
__cancelButton
=
None
self
.
__mainSizer
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
self
.
__mainSizer
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
self
.
__contentSizer
=
wx
.
BoxSizer
(
wx
.
VERTICAL
)
self
.
__contentSizer
=
wx
.
BoxSizer
(
wx
.
VERTICAL
)
...
@@ -815,11 +831,14 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -815,11 +831,14 @@ class CheckBoxMessageDialog(wx.Dialog):
self
.
__contentSizer
.
Add
((
1
,
20
),
flag
=
wx
.
EXPAND
)
self
.
__contentSizer
.
Add
((
1
,
20
),
flag
=
wx
.
EXPAND
)
self
.
__btnSizer
.
Add
((
1
,
1
),
flag
=
wx
.
EXPAND
,
proportion
=
1
)
self
.
__btnSizer
.
Add
((
1
,
1
),
flag
=
wx
.
EXPAND
,
proportion
=
1
)
self
.
__btnSizer
.
Add
(
self
.
__okButton
)
buttons
=
[
self
.
__yesButton
,
self
.
__noButton
,
self
.
__cancelButton
]
if
self
.
__cancelButton
is
not
None
:
buttons
=
[
b
for
b
in
buttons
if
b
is
not
None
]
self
.
__btnSizer
.
Add
((
5
,
1
),
flag
=
wx
.
EXPAND
)
self
.
__btnSizer
.
Add
(
self
.
__cancelButton
)
for
i
,
b
in
enumerate
(
buttons
):
self
.
__btnSizer
.
Add
(
b
)
if
i
!=
len
(
buttons
)
-
1
:
self
.
__btnSizer
.
Add
((
5
,
1
),
flag
=
wx
.
EXPAND
)
self
.
__contentSizer
.
Add
(
self
.
__btnSizer
,
flag
=
wx
.
EXPAND
)
self
.
__contentSizer
.
Add
(
self
.
__btnSizer
,
flag
=
wx
.
EXPAND
)
...
@@ -833,6 +852,15 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -833,6 +852,15 @@ class CheckBoxMessageDialog(wx.Dialog):
self
.
__message
.
Wrap
(
self
.
GetSize
().
GetWidth
())
self
.
__message
.
Wrap
(
self
.
GetSize
().
GetWidth
())
yes
=
self
.
__yesButton
no
=
self
.
__noButton
cancel
=
self
.
__cancelButton
# TODO This does not work.
if
focus
==
'
yes
'
:
yes
.
SetFocus
()
elif
focus
==
'
no
'
and
no
is
not
None
:
no
.
SetFocus
()
elif
focus
==
'
cancel
'
and
cancel
is
not
None
:
cancel
.
SetFocus
()
self
.
SetSizer
(
self
.
__mainSizer
)
self
.
SetSizer
(
self
.
__mainSizer
)
self
.
Layout
()
self
.
Layout
()
self
.
Fit
()
self
.
Fit
()
...
@@ -846,11 +874,18 @@ class CheckBoxMessageDialog(wx.Dialog):
...
@@ -846,11 +874,18 @@ class CheckBoxMessageDialog(wx.Dialog):
return
self
.
__checkboxes
[
index
].
GetValue
()
return
self
.
__checkboxes
[
index
].
GetValue
()
def
__on
OK
Button
(
self
,
ev
):
def
__on
Yes
Button
(
self
,
ev
):
"""
Called when the button on this ``CheckBoxMessageDialog`` is
"""
Called when the button on this ``CheckBoxMessageDialog`` is
clicked. Closes the dialog.
clicked. Closes the dialog.
"""
"""
self
.
EndModal
(
wx
.
ID_OK
)
self
.
EndModal
(
wx
.
ID_YES
)
def
__onNoButton
(
self
,
ev
):
"""
Called when the button on this ``CheckBoxMessageDialog`` is
clicked. Closes the dialog.
"""
self
.
EndModal
(
wx
.
ID_NO
)
def
__onCancelButton
(
self
,
ev
):
def
__onCancelButton
(
self
,
ev
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment