Skip to content
Snippets Groups Projects
Commit 4d650b6b authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Add ApplyButtonBox

parent a1f58a5a
No related branches found
No related tags found
No related merge requests found
# This file is part of Gajim.
#
# Gajim 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; version 3 only.
#
# Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
from __future__ import annotations
from typing import Any
from typing import Callable
from gi.repository import Gtk
class ApplyButtonBox(Gtk.Box):
def __init__(self,
button_text: str,
on_clicked: Callable[[Gtk.Button], Any]) -> None:
Gtk.Box.__init__(self,
orientation=Gtk.Orientation.HORIZONTAL,
spacing=6)
self._status_image = Gtk.Image(no_show_all=True)
self._spinner = Gtk.Spinner(no_show_all=True)
self._button = Gtk.Button(label=button_text, sensitive=False)
self._button.get_style_context().add_class('suggested-action')
self._button.connect('clicked', self._on_clicked)
self._button.connect('clicked', on_clicked)
self.add(self._status_image)
self.add(self._spinner)
self.add(self._button)
def _on_clicked(self, button: Gtk.Button) -> None:
button.set_sensitive(False)
self._spinner.show()
self._spinner.start()
def set_button_state(self, state: bool) -> None:
if state:
self._status_image.hide()
self._button.set_sensitive(state)
def set_success(self) -> None:
self._spinner.stop()
self._spinner.hide()
self._set_status_image('success')
def set_error(self, tooltip_text: str):
self._spinner.stop()
self._spinner.hide()
self._set_status_image('error', tooltip_text)
self._button.set_sensitive(True)
def _set_status_image(self, state: str, tooltip_text: str = '') -> None:
icon_name = 'feather-check-symbolic'
css_class = 'success-color'
if state == 'error':
icon_name = 'dialog-warning-symbolic'
css_class = 'warning-color'
self._status_image.set_from_icon_name(icon_name, Gtk.IconSize.MENU)
self._status_image.get_style_context().add_class(css_class)
self._status_image.set_tooltip_text(tooltip_text)
self._status_image.show()
......@@ -24,6 +24,7 @@
"gajim/gtk/about.py",
"gajim/gtk/account_page.py",
"gajim/gtk/account_side_bar.py",
"gajim/gtk/apply_button_box.py",
"gajim/gtk/app_page.py",
"gajim/gtk/app_side_bar.py",
"gajim/gtk/application.py",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment