def frame_project(root): """Frame for the current project.""" # Configure grid frame = ttk.Frame(root, **kw_f) frame.rowconfigure(0, weight=1) frame.columnconfigure(0, weight=0) frame.columnconfigure(1, weight=1) # Place widgets widget.Label(frame, text="Project:").grid(row=0, column=0, **kw_gp) widget.Entry(frame, textvariable=self.stringvar_project).grid(row=0, column=1, **kw_gsp) return frame
def create_reference_widget(self, parent): frame = ttk.Frame(parent) frame.columnconfigure(0, weight=1) frame.rowconfigure(0, weight=1) frame.rowconfigure(1, weight=1) widget.Label(frame, text="External Reference:").grid(row=0, column=0, sticky=tk.W) widget.Entry(frame, textvariable=self.stringvar_ref).grid(row=1, column=0, sticky=tk.NSEW) return frame
def create_links_widget(self, parent): frame = ttk.Frame(parent) frame.columnconfigure(0, weight=1) frame.columnconfigure(1, weight=1) frame.columnconfigure(2, weight=0) frame.columnconfigure(3, weight=0) frame.rowconfigure(0, weight=1) frame.rowconfigure(1, weight=1) frame.rowconfigure(2, weight=1) width_uid = 10 widget.Label(frame, text="Links:").grid(row=0, column=0, columnspan=1, sticky=tk.NW) widget.Entry(frame, textvariable=self.stringvar_link).grid( row=1, column=0, columnspan=2, sticky=tk.EW + tk.N) widget.Button(frame, text="+", command=self.link).grid(row=1, column=2, columnspan=1, sticky=tk.EW + tk.N) widget.Button(frame, text="-", command=self.unlink).grid(row=1, column=3, columnspan=1, sticky=tk.EW + tk.N) self.listbox_links = widget.Listbox(frame, width=width_uid) self.listbox_links.grid( row=2, column=0, rowspan=2, columnspan=4, padx=(3, 0), pady=(3, 0), sticky=tk.NSEW, ) return frame
def frame_item(root): """Frame for the currently selected item.""" # Configure grid frame = ttk.Frame(root, **kw_f) frame.rowconfigure(0, weight=0) frame.rowconfigure(1, weight=4) frame.rowconfigure(2, weight=0) frame.rowconfigure(3, weight=1) frame.rowconfigure(4, weight=1) frame.rowconfigure(5, weight=1) frame.rowconfigure(6, weight=1) frame.rowconfigure(7, weight=0) frame.rowconfigure(8, weight=0) frame.rowconfigure(9, weight=0) frame.rowconfigure(10, weight=0) frame.rowconfigure(11, weight=4) frame.columnconfigure(0, weight=0, pad=kw_f['padding'] * 2) frame.columnconfigure(1, weight=1) frame.columnconfigure(2, weight=1) @_log def text_focusin(_): """Handle entering a text field.""" self.ignore = True @_log def text_item_focusout(event): """Handle updated text text.""" self.ignore = False thewidget = event.widget value = thewidget.get('1.0', tk.END) self.stringvar_text.set(value) @_log def text_extendedvalue_focusout(event): """Handle updated extended attributes.""" self.ignore = False thewidget = event.widget value = thewidget.get('1.0', tk.END) self.stringvar_extendedvalue.set(value) # Place widgets widget.Label(frame, text="Selected Item:").grid(row=0, column=0, columnspan=3, sticky=tk.W, **kw_gp) self.text_item = widget.Text(frame, width=width_text, height=height_text, wrap=tk.WORD) self.text_item.bind('<FocusIn>', text_focusin) self.text_item.bind('<FocusOut>', text_item_focusout) self.text_item.grid(row=1, column=0, columnspan=3, **kw_gsp) widget.Label(frame, text="Properties:").grid(row=2, column=0, sticky=tk.W, **kw_gp) widget.Label(frame, text="Links:").grid(row=2, column=1, columnspan=2, sticky=tk.W, **kw_gp) widget.Checkbutton(frame, text="Active", variable=self.intvar_active).grid(row=3, column=0, sticky=tk.W, **kw_gp) self.listbox_links = widget.Listbox(frame, width=width_uid, height=6) self.listbox_links.grid(row=3, column=1, rowspan=4, **kw_gsp) widget.Entry(frame, width=width_uid, textvariable=self.stringvar_link).grid(row=3, column=2, sticky=tk.EW + tk.N, **kw_gp) widget.Checkbutton(frame, text="Derived", variable=self.intvar_derived).grid(row=4, column=0, sticky=tk.W, **kw_gp) widget.Button(frame, text="<< Link Item", command=self.link).grid(row=4, column=2, **kw_gp) widget.Checkbutton(frame, text="Normative", variable=self.intvar_normative).grid(row=5, column=0, sticky=tk.W, **kw_gp) widget.Checkbutton(frame, text="Heading", variable=self.intvar_heading).grid(row=6, column=0, sticky=tk.W, **kw_gp) widget.Button(frame, text=">> Unlink Item", command=self.unlink).grid(row=6, column=2, **kw_gp) widget.Label(frame, text="External Reference:").grid(row=7, column=0, columnspan=3, sticky=tk.W, **kw_gp) widget.Entry(frame, width=width_text, textvariable=self.stringvar_ref).grid(row=8, column=0, columnspan=3, **kw_gsp) widget.Label(frame, text="Extended Attributes:").grid(row=9, column=0, columnspan=3, sticky=tk.W, **kw_gp) self.combobox_extended = widget.Combobox(frame, textvariable=self.stringvar_extendedkey) self.combobox_extended.grid(row=10, column=0, columnspan=3, **kw_gsp) self.text_extendedvalue = widget.Text(frame, width=width_text, height=height_ext, wrap=tk.WORD) self.text_extendedvalue.bind('<FocusIn>', text_focusin) self.text_extendedvalue.bind('<FocusOut>', text_extendedvalue_focusout) self.text_extendedvalue.grid(row=11, column=0, columnspan=3, **kw_gsp) return frame