pychess.widgets.BookCellRenderer
index
/home/thomas/Programmering/python/skak/svn/lib/pychess/widgets/BookCellRenderer.py

 
Modules
       
gobject
gtk

 
Classes
       
__builtin__.file(__builtin__.object)
Fileadapter
gtk.GenericCellRenderer(gtk.CellRenderer)
BookCellRenderer

 
class BookCellRenderer(gtk.GenericCellRenderer)
    
Method resolution order:
BookCellRenderer
gtk.GenericCellRenderer
gtk.CellRenderer
gtk.Object
gobject.GObject
__builtin__.object

Methods defined here:
__init__(self)
do_get_property(self, pspec)
do_set_property(self, pspec, value)
on_get_size(self, widget, cell_area=None)
on_render(self, window, widget, background_area, cell_area, expose_area, flags)

Data and other attributes defined here:
__gtype__ = <GType pychess+widgets+BookCellRenderer+BookCellRenderer (164200320)>

Methods inherited from gtk.CellRenderer:
activate(...)
editing_canceled(...)
get_fixed_size(...)
get_size(...)
render(...)
set_fixed_size(...)
start_editing(...)
stop_editing(...)

Data and other attributes inherited from gtk.CellRenderer:
do_activate = <built-in method do_activate of GObjectMeta object>
do_editing_canceled = <built-in method do_editing_canceled of GObjectMeta object>
do_editing_started = <built-in method do_editing_started of GObjectMeta object>
do_get_size = <built-in method do_get_size of GObjectMeta object>
do_render = <built-in method do_render of GObjectMeta object>
do_start_editing = <built-in method do_start_editing of GObjectMeta object>

Methods inherited from gtk.Object:
destroy(...)
flags(...)
remove_data(...)
remove_no_notify(...)
set_flags(...)
unset_flags(...)

Data and other attributes inherited from gtk.Object:
do_destroy = <built-in method do_destroy of GObjectMeta object>

Methods inherited from gobject.GObject:
__cmp__(...)
x.__cmp__(y) <==> cmp(x,y)
__gobject_init__(...)
__hash__(...)
x.__hash__() <==> hash(x)
__repr__(...)
x.__repr__() <==> repr(x)
chain(...)
connect(...)
connect_after(...)
connect_object(...)
connect_object_after(...)
disconnect(...)
disconnect_by_func(...)
emit(...)
emit_stop_by_name(...)
freeze_notify(...)
get_data(...)
get_property(...)
handler_block(...)
handler_block_by_func(...)
handler_disconnect(...)
handler_is_connected(...)
handler_unblock(...)
handler_unblock_by_func(...)
notify(...)
set_data(...)
set_property(...)
stop_emission(...)
thaw_notify(...)

Data and other attributes inherited from gobject.GObject:
__dict__ = <dictproxy object>
__gdoc__ = 'Object pychess+widgets+BookCellRenderer+BookCell...-peger\n\nSignals from GObject:\n notify (GParam)\n\n'
__grefcount__ = <attribute '__grefcount__' of 'gobject.GObject' objects>
__new__ = <built-in method __new__ of GObjectMeta object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
props = <gobject.GProps object>

 
class Fileadapter(__builtin__.file)
    
Method resolution order:
Fileadapter
__builtin__.file
__builtin__.object

Methods defined here:
__init__(self, loader)
#Doesn't work :(
write(self, s)

Data and other attributes defined here:
__dict__ = <dictproxy object>
dictionary for instance variables (if defined)

Methods inherited from __builtin__.file:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__iter__(...)
x.__iter__() <==> iter(x)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
close(...)
close() -> None or (perhaps) an integer.  Close the file.
 
Sets data attribute .closed to True.  A closed file cannot be used for
further I/O operations.  close() may be called more than once without
error.  Some kinds of file objects (for example, opened by popen())
may return an exit status upon closing.
fileno(...)
fileno() -> integer "file descriptor".
 
This is needed for lower-level file interfaces, such os.read().
flush(...)
flush() -> None.  Flush the internal I/O buffer.
isatty(...)
isatty() -> true or false.  True if the file is connected to a tty device.
next(...)
x.next() -> the next value, or raise StopIteration
read(...)
read([size]) -> read at most size bytes, returned as a string.
 
If the size argument is negative or omitted, read until EOF is reached.
Notice that when in non-blocking mode, less data than what was requested
may be returned, even if no size parameter was given.
readinto(...)
readinto() -> Undocumented.  Don't use this; it may go away.
readline(...)
readline([size]) -> next line from the file, as a string.
 
Retain newline.  A non-negative size argument limits the maximum
number of bytes to return (an incomplete line may be returned then).
Return an empty string at EOF.
readlines(...)
readlines([size]) -> list of strings, each a line from the file.
 
Call readline() repeatedly and return a list of the lines so read.
The optional size argument, if given, is an approximate bound on the
total number of bytes in the lines returned.
seek(...)
seek(offset[, whence]) -> None.  Move to new file position.
 
Argument offset is a byte count.  Optional argument whence defaults to
0 (offset from start of file, offset should be >= 0); other values are 1
(move relative to current position, positive or negative), and 2 (move
relative to end of file, usually negative, although many platforms allow
seeking beyond the end of a file).  If the file is opened in text mode,
only offsets returned by tell() are legal.  Use of other offsets causes
undefined behavior.
Note that not all file objects are seekable.
tell(...)
tell() -> current file position, an integer (may be a long integer).
truncate(...)
truncate([size]) -> None.  Truncate the file to at most size bytes.
 
Size defaults to the current file position, as returned by tell().
writelines(...)
writelines(sequence_of_strings) -> None.  Write the strings to the file.
 
Note that newlines are not added.  The sequence can be any iterable object
producing strings. This is equivalent to calling write() for each string.
xreadlines(...)
xreadlines() -> returns self.
 
For backward compatibility. File objects now include the performance
optimizations previously implemented in the xreadlines module.

Data and other attributes inherited from __builtin__.file:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
closed = <attribute 'closed' of 'file' objects>
True if the file is closed
encoding = <member 'encoding' of 'file' objects>
file encoding
mode = <member 'mode' of 'file' objects>
file mode ('r', 'U', 'w', 'a', possibly with 'b' or '+' added)
name = <member 'name' of 'file' objects>
file name
newlines = <attribute 'newlines' of 'file' objects>
end-of-line convention used in this file
softspace = <member 'softspace' of 'file' objects>
flag indicating that a space needs to be printed; used by print

 
Functions
       
ceil(...)
ceil(x)
 
Return the ceiling of x as a float.
This is the smallest integral value >= x.
connectToPixbuf(pixbuf, cairo)
getCairoPixbuf(width, height)
paintGraph(cairo, win, draw, loss, rect)
pathBlock(cairo, x, y, w, h)
surfaceToPixbuf(surface)
surfaceToPixbuf2(surface)

 
Data
        height = 23
width = 80