PATH: //proc/self/root/opt/alt/python34/lib64/python3.4/idlelib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 AutoComplete.py
↓
X
📄 AutoCompleteWindow.py
↓
X
📄 AutoExpand.py
↓
X
📄 Bindings.py
↓
X
📄 CREDITS.txt
↓
X
📄 CallTipWindow.py
↓
X
📄 CallTips.py
↓
X
📄 ChangeLog
↓
X
📄 ClassBrowser.py
↓
X
📄 CodeContext.py
↓
X
📄 ColorDelegator.py
↓
X
📄 Debugger.py
↓
X
📄 Delegator.py
↓
X
📄 EditorWindow.py
↓
X
📄 FileList.py
↓
X
📄 FormatParagraph.py
↓
X
📄 GrepDialog.py
↓
X
📄 HISTORY.txt
↓
X
📄 HyperParser.py
↓
X
📄 IOBinding.py
↓
X
📁 Icons/
X
📄 IdleHistory.py
↓
X
📄 MultiCall.py
↓
X
📄 MultiStatusBar.py
↓
X
📄 NEWS.txt
↓
X
📄 ObjectBrowser.py
↓
X
📄 OutputWindow.py
↓
X
📄 ParenMatch.py
↓
X
📄 PathBrowser.py
↓
X
📄 Percolator.py
↓
X
📄 PyParse.py
↓
X
📄 PyShell.py
↓
X
📄 README.txt
↓
X
📄 RemoteDebugger.py
↓
X
📄 RemoteObjectBrowser.py
↓
X
📄 ReplaceDialog.py
↓
X
📄 RstripExtension.py
↓
X
📄 ScriptBinding.py
↓
X
📄 ScrolledList.py
↓
X
📄 SearchDialog.py
↓
X
📄 SearchDialogBase.py
↓
X
📄 SearchEngine.py
↓
X
📄 StackViewer.py
↓
X
📄 TODO.txt
↓
X
📄 ToolTip.py
↓
X
📄 TreeWidget.py
↓
X
📄 UndoDelegator.py
↓
X
📄 WidgetRedirector.py
↓
X
📄 WindowList.py
↓
X
📄 ZoomHeight.py
↓
X
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 aboutDialog.py
↓
X
📄 config-extensions.def
↓
X
📄 config-highlight.def
↓
X
📄 config-keys.def
↓
X
📄 config-main.def
↓
X
📄 configDialog.py
↓
X
📄 configHandler.py
↓
X
📄 configHelpSourceEdit.py
↓
X
📄 configSectionNameDialog.py
↓
X
📄 dynOptionMenuWidget.py
↓
X
📄 extend.txt
↓
X
📄 help.html
↓
X
📄 help.py
↓
X
📄 help.txt
↓
X
📄 idle.py
↓
X
📄 idle.pyw
↓
X
📁 idle_test/
X
📄 idlever.py
↓
X
📄 keybindingDialog.py
↓
X
📄 macosxSupport.py
↓
X
📄 rpc.py
↓
X
📄 run.py
↓
X
📄 tabbedpages.py
↓
X
📄 textView.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: MultiStatusBar.py
from tkinter import * class MultiStatusBar(Frame): def __init__(self, master=None, **kw): if master is None: master = Tk() Frame.__init__(self, master, **kw) self.labels = {} def set_label(self, name, text='', side=LEFT, width=0): if name not in self.labels: label = Label(self, borderwidth=0, anchor=W) label.pack(side=side, pady=0, padx=4) self.labels[name] = label else: label = self.labels[name] if width != 0: label.config(width=width) label.config(text=text) def _multistatus_bar(parent): root = Tk() width, height, x, y = list(map(int, re.split('[x+]', parent.geometry()))) root.geometry("+%d+%d" %(x, y + 150)) root.title("Test multistatus bar") frame = Frame(root) text = Text(frame) text.pack() msb = MultiStatusBar(frame) msb.set_label("one", "hello") msb.set_label("two", "world") msb.pack(side=BOTTOM, fill=X) def change(): msb.set_label("one", "foo") msb.set_label("two", "bar") button = Button(root, text="Update status", command=change) button.pack(side=BOTTOM) frame.pack() frame.mainloop() root.mainloop() if __name__ == '__main__': from idlelib.idle_test.htest import run run(_multistatus_bar)
SIMPAN PERUBAHAN