Package screenlets :: Class Notify
[hide private]
[frames] | no frames]

Class Notify

source code

object --+
         |
        Notify

A window that displays a text and serves as Notification (very basic yet).

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__setattr__(self, name, value)
x.__setattr__('name', value) <==> x.name = value
source code
 
show(self)
Show the Notify window.
source code
 
show_delayed(self, delay)
Show the Notify window after a given delay.
source code
 
hide(self)
Hide the Notify window.
source code
 
cancel_show(self)
Cancel showing of the Notify.
source code
 
__show_timeout(self) source code
 
screen_changed(self, window, screen=None) source code
 
expose(self, widget, event) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __timeout = None
hash(x)
  text = ''
  font_name = 'FreeSans 9'
  width = 200
  height = 100
  x = 0
  y = 0
  gradient = cairo.LinearGradient(0, 100, 0, 0)
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__setattr__(self, name, value)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)