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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
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
Erik Huelsmann
gajim
Commits
a1b8dfbc
Commit
a1b8dfbc
authored
18 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
/SoundChooserDialog are now non blocker. Fixes #777
parent
2b845f6f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/config.py
+20
-8
20 additions, 8 deletions
src/config.py
src/dialogs.py
+40
-48
40 additions, 48 deletions
src/dialogs.py
with
60 additions
and
56 deletions
src/config.py
+
20
−
8
View file @
a1b8dfbc
...
...
@@ -920,20 +920,32 @@ class PreferencesWindow:
(
model
,
iter
)
=
self
.
sound_tree
.
get_selection
().
get_selected
()
if
not
iter
:
return
path_to_snd_file
=
model
[
iter
][
2
].
decode
(
'
utf-8
'
)
path_to_snd_file
=
os
.
path
.
join
(
os
.
getcwd
(),
path_to_snd_file
)
dlg_instance
=
dialogs
.
SoundChooserDialog
(
path_to_snd_file
)
path_to_snd_file
=
dlg_instance
.
path_to_snd_file
dlg_instance
.
dialog
.
destroy
()
if
path_to_snd_file
:
def
on_ok
(
widget
,
path_to_snd_file
):
self
.
dialog
.
destroy
()
model
,
iter
=
self
.
sound_tree
.
get_selection
().
get_selected
()
if
not
path_to_snd_file
:
model
[
iter
][
2
]
=
''
self
.
xml
.
get_widget
(
'
sounds_entry
'
).
set_text
(
''
)
model
[
iter
][
0
]
=
False
return
directory
=
os
.
path
.
dirname
(
path_to_snd_file
)
gajim
.
config
.
set
(
'
last_sounds_dir
'
,
directory
)
self
.
xml
.
get_widget
(
'
sounds_entry
'
).
set_text
(
path_to_snd_file
)
model
[
iter
][
2
]
=
path_to_snd_file
# set new path to sounds_model
model
[
iter
][
0
]
=
True
# set the sound to enabled
def
on_cancel
(
widget
):
self
.
dialog
.
destroy
()
model
,
iter
=
self
.
sound_tree
.
get_selection
().
get_selected
()
model
[
iter
][
2
]
=
''
model
[
iter
][
0
]
=
False
path_to_snd_file
=
model
[
iter
][
2
].
decode
(
'
utf-8
'
)
path_to_snd_file
=
os
.
path
.
join
(
os
.
getcwd
(),
path_to_snd_file
)
self
.
dialog
=
dialogs
.
SoundChooserDialog
(
path_to_snd_file
,
on_ok
,
on_cancel
)
def
on_sounds_entry_changed
(
self
,
widget
):
path_to_snd_file
=
widget
.
get_text
()
model
,
iter
=
self
.
sound_tree
.
get_selection
().
get_selected
()
...
...
This diff is collapsed.
Click to expand it.
src/dialogs.py
+
40
−
48
View file @
a1b8dfbc
...
...
@@ -1529,48 +1529,43 @@ class ProgressDialog:
return
True
# WM's X button or Escape key should not destroy the window
class
SoundChooserDialog
:
def
__init__
(
self
,
path_to_snd_file
=
''
):
class
SoundChooserDialog
(
FileChooserDialog
):
def
__init__
(
self
,
path_to_snd_file
=
''
,
on_response_ok
=
None
,
on_response_cancel
=
None
):
'''
optionally accepts path_to_snd_file so it has that as selected
'''
self
.
dialog
=
gtk
.
FileChooserDialog
(
_
(
'
Choose Sound
'
),
None
,
gtk
.
FILE_CHOOSER_ACTION_OPEN
,
(
gtk
.
STOCK_CANCEL
,
gtk
.
RESPONSE_CANCEL
,
gtk
.
STOCK_OPEN
,
gtk
.
RESPONSE_OK
))
self
.
dialog
.
set_default_response
(
gtk
.
RESPONSE_OK
)
last_sounds_dir
=
gajim
.
config
.
get
(
'
last_sounds_dir
'
)
if
last_sounds_dir
and
os
.
path
.
isdir
(
'
last_sounds_dir
'
):
self
.
dialog
.
set_current_folder
(
last_sounds_dir
)
else
:
self
.
dialog
.
set_current_folder
(
gajim
.
HOME_DIR
)
def
on_ok
(
widget
,
callback
):
'''
check if file exists and call callback
'''
path_to_snd_file
=
self
.
get_filename
()
try
:
path_to_snd_file
=
path_to_snd_file
.
decode
(
sys
.
getfilesystemencoding
())
except
:
pass
if
os
.
path
.
exists
(
path_to_snd_file
):
callback
(
widget
,
path_to_snd_file
)
FileChooserDialog
.
__init__
(
self
,
title_text
=
_
(
'
Choose Sound
'
),
action
=
gtk
.
FILE_CHOOSER_ACTION_OPEN
,
buttons
=
(
gtk
.
STOCK_CANCEL
,
gtk
.
RESPONSE_CANCEL
,
gtk
.
STOCK_OPEN
,
gtk
.
RESPONSE_OK
),
default_response
=
gtk
.
RESPONSE_OK
,
current_folder
=
gajim
.
config
.
get
(
'
last_sounds_dir
'
),
on_response_ok
=
(
on_ok
,
on_response_ok
),
on_response_cancel
=
on_response_cancel
)
filter
=
gtk
.
FileFilter
()
filter
.
set_name
(
_
(
'
All files
'
))
filter
.
add_pattern
(
'
*
'
)
self
.
dialog
.
add_filter
(
filter
)
self
.
add_filter
(
filter
)
filter
=
gtk
.
FileFilter
()
filter
.
set_name
(
_
(
'
Wav Sounds
'
))
filter
.
add_pattern
(
'
*.wav
'
)
self
.
dialog
.
add_filter
(
filter
)
self
.
dialog
.
set_filter
(
filter
)
self
.
path_to_snd_file
=
path_to_snd_file
self
.
dialog
.
set_filename
(
self
.
path_to_snd_file
)
self
.
path_to_snd_file
=
''
while
True
:
response
=
self
.
dialog
.
run
()
if
response
!=
gtk
.
RESPONSE_OK
:
break
self
.
path_to_snd_file
=
self
.
dialog
.
get_filename
()
try
:
self
.
path_to_snd_file
=
path_to_snd_file
.
decode
(
sys
.
getfilesystemencoding
())
except
:
pass
if
os
.
path
.
exists
(
self
.
path_to_snd_file
):
break
self
.
add_filter
(
filter
)
self
.
set_filter
(
filter
)
self
.
set_filename
(
path_to_snd_file
)
class
AddSpecialNotificationDialog
:
def
__init__
(
self
,
jid
):
...
...
@@ -1586,20 +1581,18 @@ class AddSpecialNotificationDialog:
self
.
notification_popup_yes_no_combobox
.
set_active
(
0
)
self
.
listen_sound_combobox
=
self
.
xml
.
get_widget
(
'
listen_sound_combobox
'
)
self
.
listen_sound_combobox
.
set_active
(
0
)
self
.
jid
=
jid
self
.
xml
.
get_widget
(
'
when_foo_becomes_label
'
).
set_text
(
_
(
'
When %s becomes:
'
)
%
self
.
jid
)
self
.
window
.
set_title
(
_
(
'
Adding Special Notification for %s
'
)
%
jid
)
self
.
window
.
show_all
()
self
.
xml
.
signal_autoconnect
(
self
)
def
on_cancel_button_clicked
(
self
,
widget
):
self
.
window
.
destroy
()
def
on_add_special_notification_window_delete_event
(
self
,
widget
,
event
):
self
.
window
.
destroy
()
...
...
@@ -1607,22 +1600,21 @@ class AddSpecialNotificationDialog:
model
=
widget
.
get_model
()
active
=
widget
.
get_active
()
if
active
==
1
:
# user selected 'choose sound'
dlg_instance
=
SoundChooserDialog
()
path_to_snd_file
=
dlg_instance
.
path_to_snd_file
dlg_instance
.
dialog
.
destroy
()
if
path_to_snd_file
:
def
on_ok
(
widget
,
path_to_snd_file
):
print
path_to_snd_file
else
:
# user selected nothing (X button or Cancel)
def
on_cancel
(
widget
):
widget
.
set_active
(
0
)
# go back to No Sound
#model[iter][0] =
self
.
dialog
=
SoundChooserDialog
(
on_response_ok
=
on_ok
,
on_response_cancel
=
on_cancel
)
def
on_ok_button_clicked
(
self
,
widget
):
conditions
=
(
'
online
'
,
'
chat
'
,
'
online_and_chat
'
,
'
away
'
,
'
xa
'
,
'
away_and_xa
'
,
'
dnd
'
,
'
xa_and_dnd
'
,
'
offline
'
)
active
=
self
.
condition_combobox
.
get_active
()
print
conditions
[
active
]
active_iter
=
self
.
listen_sound_combobox
.
get_active_iter
()
listen_sound_model
=
self
.
listen_sound_combobox
.
get_model
()
print
listen_sound_model
[
active_iter
][
0
]
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