SafeEyes/safeeyes/ui/about_dialog.py

66 lines
2.2 KiB
Python
Raw Normal View History

2017-10-07 15:10:31 +02:00
#!/usr/bin/env python
2016-12-26 01:29:30 +01:00
# Safe Eyes is a utility to remind you to take break frequently
# to protect your eyes from eye strain.
# Copyright (C) 2016 Gobinath
# 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/>.
2017-10-07 15:10:31 +02:00
"""
This module creates the AboutDialog which shows the version and license.
"""
import os
2020-03-18 13:33:11 +01:00
from safeeyes import utility
2017-10-07 15:10:31 +02:00
2020-03-18 13:33:11 +01:00
ABOUT_DIALOG_GLADE = os.path.join(utility.BIN_DIRECTORY, "glade/about_dialog.glade")
2017-10-07 15:10:31 +02:00
2020-03-18 13:33:11 +01:00
class AboutDialog:
2017-10-07 15:10:31 +02:00
"""
AboutDialog reads the about_dialog.glade and build the user interface using that file.
It shows the application name with version, a small description, license and the GitHub url.
"""
def __init__(self, version):
2020-03-18 13:33:11 +01:00
builder = utility.create_gtk_builder(ABOUT_DIALOG_GLADE)
2017-10-07 15:10:31 +02:00
self.window = builder.get_object('window_about')
2024-01-02 13:36:44 +01:00
self.window.connect("close-request", self.on_window_delete)
builder.get_object('btn_close').connect('clicked', self.on_close_clicked)
2021-02-08 17:24:19 +01:00
builder.get_object('lbl_decription').set_label(_("Safe Eyes protects your eyes from eye strain (asthenopia) by reminding you to take breaks while you're working long hours at the computer"))
2017-10-07 15:10:31 +02:00
builder.get_object('lbl_license').set_label(_('License') + ':')
# Set the version at the runtime
builder.get_object('lbl_app_name').set_label('Safe Eyes ' + version)
def show(self):
"""
Show the About dialog.
"""
2024-01-02 13:36:44 +01:00
self.window.present()
2017-10-07 15:10:31 +02:00
def on_window_delete(self, *args):
"""
Window close event handler.
"""
self.window.destroy()
def on_close_clicked(self, *args):
"""
Close button click event handler.
"""
self.window.destroy()