Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Contributor 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
mesonium
gajim
Commits
2321839c
Commit
2321839c
authored
5 years ago
by
Daniel Brötzmann
Committed by
Philipp Hörist
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Dialogs: Remove obsolete ConfirmationDialogDoubleRadio
parent
c9e23a09
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gajim/gtk/dialogs.py
+0
-63
0 additions, 63 deletions
gajim/gtk/dialogs.py
with
0 additions
and
63 deletions
gajim/gtk/dialogs.py
+
0
−
63
View file @
2321839c
...
...
@@ -213,69 +213,6 @@ def __init__(self, pritext, sectext='', on_response_ok=None,
self
.
popup
()
class
ConfirmationDialogDoubleRadio
(
ConfirmationDialog
):
"""
HIG compliant confirmation dialog with 2 radios
"""
def
__init__
(
self
,
pritext
,
sectext
=
''
,
radiotext1
=
''
,
radiotext2
=
''
,
on_response_ok
=
None
,
on_response_cancel
=
None
,
is_modal
=
True
,
transient_for
=
None
):
self
.
user_response_ok
=
on_response_ok
self
.
user_response_cancel
=
on_response_cancel
if
transient_for
is
None
:
transient_for
=
app
.
app
.
get_active_window
()
HigDialog
.
__init__
(
self
,
transient_for
,
Gtk
.
MessageType
.
QUESTION
,
Gtk
.
ButtonsType
.
OK_CANCEL
,
pritext
,
sectext
,
self
.
on_response_ok
,
self
.
on_response_cancel
)
self
.
set_default_response
(
Gtk
.
ResponseType
.
OK
)
ok_button
=
self
.
get_widget_for_response
(
Gtk
.
ResponseType
.
OK
)
ok_button
.
grab_focus
()
vbox
=
self
.
get_content_area
()
self
.
radiobutton1
=
Gtk
.
RadioButton
(
label
=
radiotext1
)
vbox
.
pack_start
(
self
.
radiobutton1
,
False
,
True
,
0
)
self
.
radiobutton2
=
Gtk
.
RadioButton
(
group
=
self
.
radiobutton1
,
label
=
radiotext2
)
vbox
.
pack_start
(
self
.
radiobutton2
,
False
,
True
,
0
)
self
.
set_modal
(
is_modal
)
self
.
popup
()
def
on_response_ok
(
self
,
widget
):
if
self
.
user_response_ok
:
if
isinstance
(
self
.
user_response_ok
,
tuple
):
self
.
user_response_ok
[
0
](
self
.
is_checked
(),
*
self
.
user_response_ok
[
1
:])
else
:
self
.
user_response_ok
(
self
.
is_checked
())
self
.
call_cancel_on_destroy
=
False
self
.
destroy
()
def
on_response_cancel
(
self
,
widget
):
if
self
.
user_response_cancel
:
if
isinstance
(
self
.
user_response_cancel
,
tuple
):
self
.
user_response_cancel
[
0
](
*
self
.
user_response_cancel
[
1
:])
else
:
self
.
user_response_cancel
()
self
.
call_cancel_on_destroy
=
False
self
.
destroy
()
def
is_checked
(
self
):
'''
Get active state of the checkbutton
'''
if
self
.
radiobutton1
:
is_checked_1
=
self
.
radiobutton1
.
get_active
()
else
:
is_checked_1
=
False
if
self
.
radiobutton2
:
is_checked_2
=
self
.
radiobutton2
.
get_active
()
else
:
is_checked_2
=
False
return
[
is_checked_1
,
is_checked_2
]
class
CertificateDialog
(
Gtk
.
ApplicationWindow
):
def
__init__
(
self
,
transient_for
,
account
,
cert
):
Gtk
.
ApplicationWindow
.
__init__
(
self
)
...
...
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