home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
- import sys
- from qt import *
-
- class FaxAddrBookForm_base(QDialog):
-
- def __init__(self, parent = None, name = None, modal = 0, fl = 0):
- QDialog.__init__(self, parent, name, modal, fl)
- if not name:
- self.setName('FaxAddrBookForm_base')
-
- FaxAddrBookForm_baseLayout = QGridLayout(self, 1, 1, 11, 6, 'FaxAddrBookForm_baseLayout')
- self.OKButton = QPushButton(self, 'OKButton')
- FaxAddrBookForm_baseLayout.addWidget(self.OKButton, 2, 6)
- self.newButton = QPushButton(self, 'newButton')
- FaxAddrBookForm_baseLayout.addWidget(self.newButton, 2, 0)
- self.editButton = QPushButton(self, 'editButton')
- FaxAddrBookForm_baseLayout.addWidget(self.editButton, 2, 1)
- self.deleteButton = QPushButton(self, 'deleteButton')
- FaxAddrBookForm_baseLayout.addWidget(self.deleteButton, 2, 2)
- spacer29 = QSpacerItem(270, 20, QSizePolicy.Expanding, QSizePolicy.Minimum)
- FaxAddrBookForm_baseLayout.addItem(spacer29, 2, 5)
- self.line8 = QFrame(self, 'line8')
- self.line8.setFrameShape(QFrame.VLine)
- self.line8.setFrameShadow(QFrame.Sunken)
- self.line8.setFrameShape(QFrame.VLine)
- FaxAddrBookForm_baseLayout.addWidget(self.line8, 2, 3)
- self.groupButton = QPushButton(self, 'groupButton')
- FaxAddrBookForm_baseLayout.addWidget(self.groupButton, 2, 4)
- self.addressListView = QListView(self, 'addressListView')
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('Nickname'))
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('Title'))
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('First Name'))
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('Last Name'))
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('Fax Number'))
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('Member of Group(s)'))
- self.addressListView.addColumn(self._FaxAddrBookForm_base__tr('Notes/Other Information'))
- self.addressListView.setMidLineWidth(0)
- self.addressListView.setSelectionMode(QListView.Single)
- self.addressListView.setAllColumnsShowFocus(1)
- self.addressListView.setShowSortIndicator(0)
- FaxAddrBookForm_baseLayout.addMultiCellWidget(self.addressListView, 1, 1, 0, 6)
- self.textLabel11 = QLabel(self, 'textLabel11')
- FaxAddrBookForm_baseLayout.addMultiCellWidget(self.textLabel11, 0, 0, 0, 2)
- self.languageChange()
- self.resize(QSize(861, 358).expandedTo(self.minimumSizeHint()))
- self.clearWState(Qt.WState_Polished)
- self.connect(self.OKButton, SIGNAL('clicked()'), self.accept)
- self.connect(self.newButton, SIGNAL('clicked()'), self.newButton_clicked)
- self.connect(self.editButton, SIGNAL('clicked()'), self.editButton_clicked)
- self.connect(self.deleteButton, SIGNAL('clicked()'), self.deleteButton_clicked)
- self.connect(self.addressListView, SIGNAL('rightButtonClicked(QListViewItem*,const QPoint&,int)'), self.addressListView_rightButtonClicked)
- self.connect(self.addressListView, SIGNAL('currentChanged(QListViewItem*)'), self.addressListView_currentChanged)
- self.connect(self.addressListView, SIGNAL('doubleClicked(QListViewItem*)'), self.addressListView_doubleClicked)
- self.connect(self.groupButton, SIGNAL('clicked()'), self.groupButton_clicked)
- self.setTabOrder(self.addressListView, self.newButton)
- self.setTabOrder(self.newButton, self.editButton)
- self.setTabOrder(self.editButton, self.deleteButton)
- self.setTabOrder(self.deleteButton, self.groupButton)
- self.setTabOrder(self.groupButton, self.OKButton)
-
-
- def languageChange(self):
- self.setCaption(self._FaxAddrBookForm_base__tr('HP Device Manager - Fax Address Book'))
- self.OKButton.setText(self._FaxAddrBookForm_base__tr('OK'))
- self.newButton.setText(self._FaxAddrBookForm_base__tr('New...'))
- self.editButton.setText(self._FaxAddrBookForm_base__tr('Edit...'))
- self.deleteButton.setText(self._FaxAddrBookForm_base__tr('Delete...'))
- self.groupButton.setText(self._FaxAddrBookForm_base__tr('Groups...'))
- self.addressListView.header().setLabel(0, self._FaxAddrBookForm_base__tr('Nickname'))
- self.addressListView.header().setLabel(1, self._FaxAddrBookForm_base__tr('Title'))
- self.addressListView.header().setLabel(2, self._FaxAddrBookForm_base__tr('First Name'))
- self.addressListView.header().setLabel(3, self._FaxAddrBookForm_base__tr('Last Name'))
- self.addressListView.header().setLabel(4, self._FaxAddrBookForm_base__tr('Fax Number'))
- self.addressListView.header().setLabel(5, self._FaxAddrBookForm_base__tr('Member of Group(s)'))
- self.addressListView.header().setLabel(6, self._FaxAddrBookForm_base__tr('Notes/Other Information'))
- self.textLabel11.setText(self._FaxAddrBookForm_base__tr('<b>Fax Addresses:</b>'))
-
-
- def newButton_clicked(self):
- print 'FaxAddrBookForm_base.newButton_clicked(): Not implemented yet'
-
-
- def editButton_clicked(self):
- print 'FaxAddrBookForm_base.editButton_clicked(): Not implemented yet'
-
-
- def deleteButton_clicked(self):
- print 'FaxAddrBookForm_base.deleteButton_clicked(): Not implemented yet'
-
-
- def addressListView_rightButtonClicked(self, a0, a1, a2):
- print 'FaxAddrBookForm_base.addressListView_rightButtonClicked(QListViewItem*,const QPoint&,int): Not implemented yet'
-
-
- def addressListView_currentChanged(self, a0):
- print 'FaxAddrBookForm_base.addressListView_currentChanged(QListViewItem*): Not implemented yet'
-
-
- def addressListView_doubleClicked(self, a0):
- print 'FaxAddrBookForm_base.addressListView_doubleClicked(QListViewItem*): Not implemented yet'
-
-
- def groupButton_clicked(self):
- print 'FaxAddrBookForm_base.groupButton_clicked(): Not implemented yet'
-
-
- def __tr(self, s, c = None):
- return qApp.translate('FaxAddrBookForm_base', s, c)
-
-
- if __name__ == '__main__':
- a = QApplication(sys.argv)
- QObject.connect(a, SIGNAL('lastWindowClosed()'), a, SLOT('quit()'))
- w = FaxAddrBookForm_base()
- a.setMainWidget(w)
- w.show()
- a.exec_loop()
-
-