gaupol/agents/update.py¶
Source code for module gaupol.agents.update from file gaupol/agents/update.py.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | # -*- coding: utf-8 -*-
# Copyright (C) 2005 Osmo Salomaa
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Updating the application GUI."""
import aeidon
import gaupol
_ = aeidon.i18n._
from gi.repository import Gdk
class UpdateAgent(aeidon.Delegate):
"""Updating the application GUI."""
def _disable_widgets(self):
"""Make widgets insensitive and blank."""
self.window.set_title("Gaupol")
self.show_message(None)
@aeidon.deco.export
def flash_message(self, message, duration=6):
"""Show `message` in statuslabel for `duration` seconds."""
self.statuslabel.flash_text(message, duration=duration)
# To minimize the disturbance, try to hide the statuslabel
# immediately after any kind of user input.
self.statuslabel.register_hide_event(self.window, "button-press-event")
self.statuslabel.register_hide_event(self.window, "key-press-event")
self.statuslabel.register_hide_event(self.window, "scroll-event")
with aeidon.util.silent(AttributeError):
view = self.get_current_page().view
self.statuslabel.register_hide_event(view, "button-press-event")
@aeidon.deco.export
def _on_activate_next_project_activate(self, *args):
"""Activate the project in the next tab."""
self.notebook.next_page()
@aeidon.deco.export
def _on_activate_previous_project_activate(self, *args):
"""Activate the project in the previous tab."""
self.notebook.prev_page()
@aeidon.deco.export
def _on_conf_application_window_notify_toolbar_style(self, *args):
"""Change the style of the main toolbar."""
toolbar = self.uim.get_widget("/ui/main_toolbar")
style = gaupol.conf.application_window.toolbar_style
toolbar.set_style(style.value)
@aeidon.deco.export
def _on_move_tab_left_activate(self, *args):
"""Move the current tab to the left."""
page = self.get_current_page()
scroller = page.view.get_parent()
index = self.pages.index(page)
self.notebook.reorder_child(scroller, index-1)
@aeidon.deco.export
def _on_move_tab_right_activate(self, *args):
"""Move the current tab to the right."""
page = self.get_current_page()
scroller = page.view.get_parent()
index = self.pages.index(page)
self.notebook.reorder_child(scroller, index+1)
@aeidon.deco.export
def _on_notebook_page_reordered(self, notebook, scroller, index):
"""Update the list of pages to match the new order."""
view = scroller.get_child()
page = [x for x in self.pages if x.view is view][0]
self.pages.remove(page)
self.pages.insert(index, page)
self.update_gui()
self.emit("pages-reordered", page, index)
@aeidon.deco.export
def _on_notebook_switch_page(self, notebook, pointer, index):
"""Update GUI for the page switched to."""
if not self.pages: return
self.update_gui()
page = self.pages[index]
page.view.grab_focus()
self.emit("page-switched", page)
@aeidon.deco.export
def _on_view_button_press_event(self, view, event):
"""Display a right-click pop-up menu to edit data."""
if event.button != 3: return
x = int(event.x)
y = int(event.y)
value = view.get_path_at_pos(x, y)
if value is None: return
path, column, x, y = value
row = gaupol.util.tree_path_to_row(path)
if not row in view.get_selected_rows():
view.set_cursor(path, column)
view.update_headers()
menu = self.uim.get_widget("/ui/view_popup")
menu.popup(parent_menu_shell=None,
parent_menu_item=None,
func=None,
data=None,
button=event.button,
activate_time=event.time)
return True
@aeidon.deco.export
def _on_view_move_cursor(self, *args):
"""Update GUI after moving cursor in the view."""
self.update_gui()
@aeidon.deco.export
def _on_view_selection_changed(self, *args):
"""Update GUI after changing selection in the view."""
self.update_gui()
@aeidon.deco.export
def _on_window_window_state_event(self, window, event):
"""Save window maximization."""
state = event.new_window_state
maximized = bool(state & Gdk.WindowState.MAXIMIZED)
gaupol.conf.application_window.maximized = maximized
@aeidon.deco.export
def push_message(self, message):
"""A compatibility alias for :meth:`show_message`."""
self.show_message(message)
@aeidon.deco.export
def show_message(self, message):
"""
Show `message` in the statuslabel until explicitly cleared.
Use ``None`` as `message` to hide the status label.
"""
self.statuslabel.set_text(message)
def _update_actions(self, page):
"""Update sensitivities of all actions for page."""
rows = (page.view.get_selected_rows()
if page is not None and page.view is not None else ())
for name in ("main-safe", "main-unsafe"):
action_group = self.get_action_group(name)
for action in action_group.list_actions():
action.update_sensitivity(self, page, rows)
@aeidon.deco.export
def update_gui(self):
"""Update widget sensitivities and states for the current page."""
page = self.get_current_page()
self._update_actions(page)
self._update_widgets(page)
self._update_revert(page)
self.extension_manager.update_extensions(page)
def _update_revert(self, page):
"""Update tooltips for undo and redo actions."""
if page is None: return
if page.project.can_undo():
action = self.get_action("undo_action")
action.set_tooltip(_('Undo "{}"').format(
page.project.undoables[0].description))
if page.project.can_redo():
action = self.get_action("redo_action")
action.set_tooltip(_('Redo "{}"').format(
page.project.redoables[0].description))
def _update_widgets(self, page):
"""Update states of all widgets for `page`."""
if page is None: return self._disable_widgets()
self.window.set_title(page.tab_label.get_text())
tabs = len(self.pages) > 1 and not self.player_box.get_visible()
self.notebook.set_show_tabs(tabs)
self.notebook_separator.set_visible(not tabs)
self.get_mode_action(page.edit_mode).set_active(True)
self.get_framerate_action(page.project.framerate).set_active(True)
for field in gaupol.fields:
col = getattr(page.view.columns, field.name)
visible = page.view.get_column(col).get_visible()
self.get_column_action(field).set_active(visible)
|