def __init__(self, app, parent): doc = ClientInfoDoc(app) ViewBrowser.__init__(self, app, parent, ClientInfoDoc) self.dialogs = {} self.manager = ClientManager(self.app) self.resize(800, 600)
def __init__(self, db, parent): doc = ClientInfoDoc(db) ViewBrowser.__init__(self, db, parent, ClientInfoDoc) self.dialogs = {} self.manager = ClientManager(self.db)
def __init__(self, app, parent, ticketid): ViewBrowser.__init__(self, app, parent, TicketInfoDoc) self.dialogs = {} self.manager = TicketManager(self.app)
def __init__(self, db, parent): ViewBrowser.__init__(self, db, parent, TicketInfoDoc) self.dialogs = {} self.manager = TicketManager(self.db)
def __init__(self, app, parent): ViewBrowser.__init__(self, app, parent, TicketDocument) self.dialogs = {} self.manager = TicketManager(self.app)