SafeEyes/safeeyes/Notification.py

71 lines
2.1 KiB
Python
Raw Normal View History

2016-10-15 06:11:27 +02: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/>.
import gi
2016-11-08 14:17:48 +01:00
import logging
2016-10-15 06:11:27 +02:00
gi.require_version('Gtk', '3.0')
gi.require_version('AppIndicator3', '0.1')
gi.require_version('Notify', '0.7')
from gi.repository import Gtk, Gdk, GLib, GdkX11
2016-10-15 06:11:27 +02:00
from gi.repository import AppIndicator3 as appindicator
from gi.repository import Notify
2016-10-15 06:11:27 +02:00
APPINDICATOR_ID = 'safeeyes'
"""
This class is responsible for the notification to the user before the break.
"""
2016-10-15 06:11:27 +02:00
class Notification:
"""
Initialize the notification.
"""
2016-11-04 09:47:21 +01:00
def __init__(self, language):
2016-11-08 14:17:48 +01:00
logging.info("Initialize the notification")
2016-10-15 06:11:27 +02:00
Notify.init(APPINDICATOR_ID)
2016-11-04 09:47:21 +01:00
self.language = language
2016-10-15 06:11:27 +02:00
"""
Show the notification"
"""
2016-10-15 06:11:27 +02:00
def show(self, warning_time):
2016-11-08 14:17:48 +01:00
logging.info("Show pre-break notification")
2016-11-04 09:47:21 +01:00
self.notification = Notify.Notification.new("Safe Eyes", "\n" + self.language['messages']['ready_for_a_break'].format(warning_time), icon="safeeyes_enabled")
2016-10-15 06:11:27 +02:00
self.notification.show()
"""
Close the notification if it is not closed by the system already.
"""
2016-10-15 06:11:27 +02:00
def close(self):
2016-11-08 14:17:48 +01:00
logging.info("Close pre-break notification")
2016-10-26 04:03:45 +02:00
try:
self.notification.close()
except:
# Some Linux systems automatically close the notification.
2016-10-26 04:03:45 +02:00
pass
2016-10-15 06:11:27 +02:00
"""
Uninitialize the notification. Call this method when closing the application.
"""
2016-10-15 06:11:27 +02:00
def quite(self):
2016-11-08 14:17:48 +01:00
logging.info("Uninitialize Safe Eyes notification")
GLib.idle_add(lambda: Notify.uninit())