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
Weblate
gajim
Commits
878b2744
Commit
878b2744
authored
19 years ago
by
nkour
Browse files
Options
Downloads
Patches
Plain Diff
add func in gtkgui helpers
parent
f5411971
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/gtkgui_helpers.py
+23
-0
23 additions, 0 deletions
src/gtkgui_helpers.py
src/systray.py
+5
-20
5 additions, 20 deletions
src/systray.py
with
28 additions
and
20 deletions
src/gtkgui_helpers.py
+
23
−
0
View file @
878b2744
...
...
@@ -314,3 +314,26 @@ def get_current_desktop(window):
# f.e. prop is ('CARDINAL', 32, [0]) we want 0 or 1.. from [0]
current_virtual_desktop_no
=
prop
[
2
][
0
]
return
current_virtual_desktop_no
def
possibly_move_window_in_current_desktop
(
window
):
'''
moves GTK window to current virtual desktop if it is not in the
current virtual desktop
window is GTK window
'''
if
os
.
name
==
'
nt
'
:
return
root_window
=
gtk
.
gdk
.
screen_get_default
().
get_root_window
()
# current user's vd
current_virtual_desktop_no
=
get_current_desktop
(
root_window
)
# vd roster window is in
window_virtual_desktop
=
get_current_desktop
(
window
.
window
)
# if one of those is None, something went wrong and we cannot know
# VD info, just hide it (default action) and not show it afterwards
if
None
not
in
(
window_virtual_desktop
,
current_virtual_desktop_no
):
if
current_virtual_desktop_no
!=
window_virtual_desktop
:
# we are in another VD that the window was
# so show it in current VD
window
.
show
()
This diff is collapsed.
Click to expand it.
src/systray.py
+
5
−
20
View file @
878b2744
...
...
@@ -265,27 +265,10 @@ class Systray:
# no pending events, so toggle visible/hidden for roster window
if
win
.
get_property
(
'
visible
'
):
# visible in ANY virtual desktop?
win
.
hide
()
# we hide it from VD that was visible in
# but we could be in another VD right now. eg vd2
# and we want not only to hide it in vd1 but also show it in vd2
if
os
.
name
!=
'
nt
'
:
root_window
=
gtk
.
gdk
.
screen_get_default
().
get_root_window
()
# current user's vd
current_virtual_desktop_no
=
gtkgui_helpers
.
get_current_desktop
(
root_window
)
# vd roster window is in
window_virtual_desktop
=
gtkgui_helpers
.
get_current_desktop
(
win
.
window
)
# if one of those is None, something went wrong and we cannot know
# VD info, just hide it (default action) and not show it afterwards
if
None
not
in
(
window_virtual_desktop
,
current_virtual_desktop_no
):
if
current_virtual_desktop_no
!=
window_virtual_desktop
:
# we are in another VD that the window was
# so show it in current VD
win
.
show
()
gtkgui_helpers
.
possibly_move_window_in_current_desktop
(
win
)
else
:
win
.
present
()
else
:
...
...
@@ -333,8 +316,10 @@ class Systray:
tv
.
scroll_to_end
()
def
on_middle_click
(
self
):
'''
middle click raises window to have complete focus (fe. get kbd events)
but if already raised, it hides it
'''
win
=
gajim
.
interface
.
roster
.
window
if
win
.
is_active
():
if
win
.
is_active
():
# is it fully raised? (eg does it receive kbd events?)
win
.
hide
()
else
:
win
.
present
()
...
...
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