Added todo (wish) list

This commit is contained in:
arcan1s
2013-10-03 03:56:01 +04:00
parent 7aabdf9485
commit c729d6573d
5 changed files with 36 additions and 62 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from gi.repository import Notify
class PTMNotify:
def __init__(self, parent):
"""class definition"""
self.parent = parent
def exampleNotify(self):
Notify.init ("Hello world")
Hello=Notify.Notification.new ("Hello world","This is an example notification.","dialog-information")
Hello.show ()
def createNotification(self):
"""function to create notification for label"""