c962d5e6e1
* various (294 files) pep8 doc fixes & pylint fixes svn: r10103
33 lines
695 B
Python
33 lines
695 B
Python
|
|
import gtk
|
|
import logging
|
|
log = logging.getLogger(".")
|
|
|
|
from _ListCursor import ListCursor
|
|
|
|
from _FastModel import FastModel
|
|
import gen.lib
|
|
|
|
|
|
class PersonListModel(FastModel):
|
|
"""Provide a fast model interface to the Person table.
|
|
"""
|
|
|
|
def __init__(self,db):
|
|
FastModel.__init__(self,db)
|
|
|
|
def _get_table(self,db):
|
|
return db.surnames
|
|
|
|
def _get_cursor(self,db):
|
|
return ListCursor(db.surnames.cursor())
|
|
|
|
def _get_object_class(self,db):
|
|
return gen.lib.Person
|
|
|
|
def _get_length(self,db):
|
|
return self._table.stat()['ndata']
|
|
|
|
def on_get_flags(self):
|
|
return gtk.TREE_MODEL_LIST_ONLY|gtk.TREE_MODEL_ITERS_PERSIST
|