Exemplo n.º 1
0
Arquivo: tree.py Projeto: chan18/anki
 def manage_fields(self, item: SidebarItem) -> None:
     notetype = self.mw.col.models.get(NotetypeId(item._parent_item.id))
     FieldDialog(self.mw, notetype, parent=self, open_at=item.id)
Exemplo n.º 2
0
 def manage_template(self, item: SidebarItem) -> None:
     note = Note(self.col,
                 self.col.models.get(NotetypeId(item._parent_item.id)))
     CardLayout(self.mw, note, ord=item.id, parent=self, fill_empty=True)
Exemplo n.º 3
0
 def current_notetype(self) -> NotetypeDict:
     row = self.form.modelsList.currentRow()
     return self.mm.get(NotetypeId(self.models[row].id))