summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven M. Gava <elguavas@python.net>2001-07-31 07:01:47 (GMT)
committerSteven M. Gava <elguavas@python.net>2001-07-31 07:01:47 (GMT)
commit7d9ed726fb6ec15dbfb8e922d35aa8816cbd0b0c (patch)
tree9e95d9bbd1dd5249d3e97a2aee05e21a452e09e8
parent646c65c1179854d147f718715ce98e3b805b0458 (diff)
downloadcpython-7d9ed726fb6ec15dbfb8e922d35aa8816cbd0b0c.zip
cpython-7d9ed726fb6ec15dbfb8e922d35aa8816cbd0b0c.tar.gz
cpython-7d9ed726fb6ec15dbfb8e922d35aa8816cbd0b0c.tar.bz2
activate new about dialog for testing
-rw-r--r--Lib/idlelib/EditorWindow.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index 2dce337..14081ab 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -17,6 +17,7 @@ import webbrowser
import idlever
import WindowList
from IdleConf import idleconf
+import aboutDialog
# The default tab setting for a Text widget, in average-width characters.
TK_TABWIDTH_DEFAULT = 8
@@ -88,7 +89,7 @@ by Guido van Rossum.
IDLEfork is an official experimental development version of IDLE. \
Succesful new features in IDLEfork will be mereged back in to stable IDLE.
-This version of IDLEfork is based on the work in stable IDLE version %s, \
+This version of IDLEfork is based on the work in stable IDLE version 0.8, \
IDLE fork 0.7.1 released by David Scherer, and the VPython idle fork.
See README.txt and NEWS.txt for more details on this verion of IDLEfork.
@@ -96,7 +97,7 @@ See README.txt and NEWS.txt for more details on this verion of IDLEfork.
WARNING: IDLEfork is at this stage alpha quality software, expect things \
to be broken.
-""" % (idlever.IDLEFORK_VERSION, idlever.IDLE_VERSION)
+""" % (idlever.IDLE_VERSION)
class EditorWindow:
@@ -296,9 +297,10 @@ class EditorWindow:
self.rmenu = rmenu
def about_dialog(self, event=None):
- tkMessageBox.showinfo(self.about_title, self.about_text,
- master=self.text)
-
+ #tkMessageBox.showinfo(self.about_title, self.about_text,
+ # master=self.text)
+ aboutDialog.AboutDialog(self.top,'About IDLEfork')
+
helpfile = "help.txt"
def good_advice(self, event=None):