(self,master=None,cnf={}, **kw)
| 1142 | <pages> page widgets added dynamically with the add method""" |
| 1143 | |
| 1144 | def __init__ (self,master=None,cnf={}, **kw): |
| 1145 | TixWidget.__init__(self,master,'tixNoteBook', ['options'], cnf, kw) |
| 1146 | self.subwidget_list['nbframe'] = TixSubWidget(self, 'nbframe', |
| 1147 | destroy_physically=0) |
| 1148 | |
| 1149 | def add(self, name, cnf={}, **kw): |
| 1150 | self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
nothing calls this directly
no test coverage detected