diff -r 509e4801c378 -r 22878952f6e2 srcanamdw/codescanner/pyinstaller/McGUI.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/srcanamdw/codescanner/pyinstaller/McGUI.py Thu Feb 18 12:29:02 2010 +0530 @@ -0,0 +1,100 @@ +#!/usr/bin/python + +# Tkinter interface to the McMillan installer +# (c) 2003 Alan James Salmoni - yes, all this bad code is all mine!!! +# released under the MIT license + +import os, os.path +from Tkinter import * +import tkFileDialog +import FileDialog + +class McGUI: + def __init__(self): + root = Tk() + fr1 = Frame(root) + fr1["width"] = 200 + fr1["height"] = 100 + fr1.pack(side="top") + fr2 = Frame(root) + fr2["width"] = 200 + fr2["height"] = 300 + fr2["borderwidth"] = 2 + fr2["relief"] = "ridge" + fr2.pack() + fr4 = Frame(root) + fr4["width"]=200 + fr4["height"]=100 + fr4.pack(side="bottom") + getFileButton = Button(fr1) + getFileButton["text"] = "Script..." + getFileButton.bind("