2001-07-31 03:59:02 -03:00
|
|
|
##---------------------------------------------------------------------------##
|
|
|
|
##
|
|
|
|
## idle - configuration dialog
|
|
|
|
## elguavas
|
|
|
|
##
|
|
|
|
##---------------------------------------------------------------------------##
|
|
|
|
"""
|
|
|
|
configuration dialog
|
|
|
|
"""
|
|
|
|
from Tkinter import *
|
2001-08-11 12:48:13 -03:00
|
|
|
import tkMessageBox, tkColorChooser, tkFont
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-09-24 06:43:17 -03:00
|
|
|
from configHandler import idleConf
|
2001-10-26 03:47:09 -03:00
|
|
|
from dynOptionMenuWidget import DynOptionMenu
|
2001-08-04 10:58:22 -03:00
|
|
|
|
2001-07-31 03:59:02 -03:00
|
|
|
class ConfigDialog(Toplevel):
|
|
|
|
"""
|
2001-07-31 07:46:53 -03:00
|
|
|
configuration dialog for idle
|
|
|
|
"""
|
|
|
|
def __init__(self,parent,title,configDict):
|
|
|
|
"""
|
|
|
|
configDict - dictionary of configuration items
|
|
|
|
"""
|
|
|
|
Toplevel.__init__(self, parent)
|
|
|
|
self.configure(borderwidth=5)
|
|
|
|
self.geometry("+%d+%d" % (parent.winfo_rootx()+20,
|
|
|
|
parent.winfo_rooty()+30))
|
2001-09-24 06:43:17 -03:00
|
|
|
#self.LoadConfig()
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-07-31 07:46:53 -03:00
|
|
|
self.CreateWidgets()
|
|
|
|
self.resizable(height=FALSE,width=FALSE)
|
|
|
|
self.ChangePage()
|
|
|
|
self.transient(parent)
|
|
|
|
self.grab_set()
|
|
|
|
self.protocol("WM_DELETE_WINDOW", self.Cancel)
|
|
|
|
self.parent = parent
|
|
|
|
self.framePages.focus_set()
|
|
|
|
#key bindings for this dialog
|
|
|
|
self.bind('<Escape>',self.CancelBinding) #dismiss dialog, no save
|
2001-08-11 12:48:13 -03:00
|
|
|
self.bind('<Alt-a>',self.ApplyBinding) #apply changes, save
|
2001-08-03 01:43:44 -03:00
|
|
|
self.bind('<F1>',self.HelpBinding) #context help
|
2001-07-31 07:46:53 -03:00
|
|
|
self.bind('<Alt-f>',self.ChangePageBinding)
|
2001-08-03 01:43:44 -03:00
|
|
|
self.bind('<Alt-h>',self.ChangePageBinding)
|
2001-07-31 07:46:53 -03:00
|
|
|
self.bind('<Alt-k>',self.ChangePageBinding)
|
|
|
|
self.bind('<Alt-g>',self.ChangePageBinding)
|
2001-09-24 06:43:17 -03:00
|
|
|
#self.LoadOptMenuHighlightTarget()
|
2001-10-23 07:42:12 -03:00
|
|
|
|
|
|
|
self.LoadConfigs()
|
|
|
|
|
2001-07-31 07:46:53 -03:00
|
|
|
self.wait_window()
|
|
|
|
|
|
|
|
def Cancel(self):
|
|
|
|
self.destroy()
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-08-11 12:48:13 -03:00
|
|
|
def Ok(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def Apply(self):
|
2001-07-31 07:46:53 -03:00
|
|
|
pass
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-08-03 01:43:44 -03:00
|
|
|
def Help(self):
|
2001-07-31 07:46:53 -03:00
|
|
|
pass
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-07-31 07:46:53 -03:00
|
|
|
def CancelBinding(self,event):
|
|
|
|
self.Cancel()
|
|
|
|
|
2001-08-11 12:48:13 -03:00
|
|
|
def OkBinding(self,event):
|
|
|
|
self.Ok()
|
|
|
|
|
|
|
|
def ApplyBinding(self,event):
|
|
|
|
self.Apply()
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-08-03 01:43:44 -03:00
|
|
|
def HelpBinding(self,event):
|
|
|
|
self.Help()
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-08-03 01:43:44 -03:00
|
|
|
def ChangePage(self):
|
2001-08-13 01:36:58 -03:00
|
|
|
#pop up the active 'tab' only
|
|
|
|
for button in self.pageButtons: button.master.config(relief=RIDGE)
|
|
|
|
self.pageButtons[self.pageNum.get()].master.config(relief=RAISED)
|
|
|
|
#switch page
|
2001-08-03 01:43:44 -03:00
|
|
|
self.pages[self.pageNum.get()].lift()
|
2001-08-07 00:28:25 -03:00
|
|
|
self.title('Settings - '+
|
|
|
|
self.pageButtons[self.pageNum.get()].cget('text'))
|
2001-08-03 01:43:44 -03:00
|
|
|
|
2001-07-31 07:46:53 -03:00
|
|
|
def ChangePageBinding(self,event):
|
2001-08-03 01:43:44 -03:00
|
|
|
pageKeys=('f','h','k','g')
|
2001-07-31 07:46:53 -03:00
|
|
|
pos=0
|
|
|
|
for key in pageKeys:
|
|
|
|
if event.char == key:
|
|
|
|
self.pageNum.set(pos)
|
|
|
|
self.ChangePage()
|
|
|
|
return
|
|
|
|
pos=pos+1
|
2001-07-31 03:59:02 -03:00
|
|
|
|
2001-08-03 01:43:44 -03:00
|
|
|
def SetThemeType(self):
|
|
|
|
if self.themeType.get()==0:
|
|
|
|
self.optMenuThemeBuiltin.config(state=NORMAL)
|
|
|
|
self.optMenuThemeCustom.config(state=DISABLED)
|
2001-08-04 10:58:22 -03:00
|
|
|
self.buttonDeleteCustomTheme.config(state=DISABLED)
|
2001-08-03 01:43:44 -03:00
|
|
|
elif self.themeType.get()==1:
|
|
|
|
self.optMenuThemeBuiltin.config(state=DISABLED)
|
|
|
|
self.optMenuThemeCustom.config(state=NORMAL)
|
2001-08-04 10:58:22 -03:00
|
|
|
self.buttonDeleteCustomTheme.config(state=NORMAL)
|
|
|
|
|
|
|
|
def SetKeysType(self):
|
|
|
|
if self.keysType.get()==0:
|
|
|
|
self.optMenuKeysBuiltin.config(state=NORMAL)
|
|
|
|
self.optMenuKeysCustom.config(state=DISABLED)
|
|
|
|
self.buttonDeleteCustomKeys.config(state=DISABLED)
|
|
|
|
elif self.keysType.get()==1:
|
|
|
|
self.optMenuKeysBuiltin.config(state=DISABLED)
|
|
|
|
self.optMenuKeysCustom.config(state=NORMAL)
|
|
|
|
self.buttonDeleteCustomKeys.config(state=NORMAL)
|
2001-08-03 01:43:44 -03:00
|
|
|
|
2001-08-07 22:30:38 -03:00
|
|
|
def GetColour(self):
|
|
|
|
rgbTuplet, colourString = tkColorChooser.askcolor(parent=self,
|
|
|
|
title='Pick new colour for : '+self.highlightTarget.get(),
|
|
|
|
initialcolor=self.workingTestColours['Foo-Bg'])#._root()
|
|
|
|
if colourString: #user didn't cancel
|
|
|
|
self.workingTestColours['Foo-Bg']=colourString
|
|
|
|
self.frameColourSet.config(bg=self.workingTestColours['Foo-Bg'])
|
|
|
|
self.labelTestSample.config(bg=self.workingTestColours['Foo-Bg'])
|
|
|
|
self.frameHighlightSample.config(bg=self.workingTestColours['Foo-Bg'])
|
|
|
|
self.frameColourSet.update() #redraw after dialog
|
|
|
|
self.frameHighlightSample.update() #redraw after dialog
|
|
|
|
self.labelTestSample.update()
|
|
|
|
|
2001-10-23 07:42:12 -03:00
|
|
|
def SetFontSampleBinding(self,event):
|
|
|
|
self.SetFontSample()
|
|
|
|
|
|
|
|
def SetFontSample(self):
|
|
|
|
self.editFont.config(size=self.fontSize.get(),weight=NORMAL,
|
2001-08-11 12:48:13 -03:00
|
|
|
family=self.listFontName.get(self.listFontName.curselection()[0]))
|
2001-10-29 04:05:34 -04:00
|
|
|
|
|
|
|
def SetHighlightSampleBinding(self,event):
|
|
|
|
self.SetHighlightSample()
|
|
|
|
|
|
|
|
def SetHighlightSample(self):
|
|
|
|
pass
|
2001-08-11 12:48:13 -03:00
|
|
|
|
2001-07-31 07:46:53 -03:00
|
|
|
def CreateWidgets(self):
|
2001-08-03 01:43:44 -03:00
|
|
|
self.framePages = Frame(self)
|
2001-07-31 07:46:53 -03:00
|
|
|
frameActionButtons = Frame(self)
|
2001-08-13 01:36:58 -03:00
|
|
|
framePageButtons = Frame(self.framePages)
|
2001-07-31 07:46:53 -03:00
|
|
|
#action buttons
|
2001-08-03 01:43:44 -03:00
|
|
|
self.buttonHelp = Button(frameActionButtons,text='Help',
|
|
|
|
command=self.Help,takefocus=FALSE)
|
2001-08-11 12:48:13 -03:00
|
|
|
self.buttonOk = Button(frameActionButtons,text='Ok',
|
|
|
|
command=self.Ok,takefocus=FALSE)
|
|
|
|
self.buttonApply = Button(frameActionButtons,text='Apply',
|
|
|
|
command=self.Apply,underline=0,takefocus=FALSE)
|
2001-07-31 07:46:53 -03:00
|
|
|
self.buttonCancel = Button(frameActionButtons,text='Cancel',
|
|
|
|
command=self.Cancel,takefocus=FALSE)
|
|
|
|
#page buttons
|
|
|
|
self.pageNum=IntVar()
|
|
|
|
self.pageNum.set(0)
|
2001-08-13 01:36:58 -03:00
|
|
|
pageButtonNames=('Fonts/Tabs','Highlighting','Keys','General')
|
|
|
|
self.pageButtons=[]
|
|
|
|
buttonValue=0
|
2001-09-24 06:43:17 -03:00
|
|
|
buttonSelColour=framePageButtons.cget('bg')
|
2001-08-13 01:36:58 -03:00
|
|
|
for name in pageButtonNames:
|
|
|
|
buttonFrame=Frame(framePageButtons,borderwidth=2,relief=RIDGE)
|
|
|
|
buttonFrame.pack(side=LEFT)
|
|
|
|
button = Radiobutton(buttonFrame,command=self.ChangePage,
|
|
|
|
value=buttonValue,padx=5,pady=5,takefocus=FALSE,underline=0,
|
|
|
|
indicatoron=FALSE,highlightthickness=0,variable=self.pageNum,
|
2001-09-24 06:43:17 -03:00
|
|
|
selectcolor=buttonSelColour,borderwidth=0,text=name)
|
2001-08-13 01:36:58 -03:00
|
|
|
button.pack()
|
|
|
|
button.lift()
|
|
|
|
self.pageButtons.append(button)
|
|
|
|
buttonValue=buttonValue+1
|
2001-07-31 07:46:53 -03:00
|
|
|
#pages
|
2001-08-04 10:58:22 -03:00
|
|
|
self.pages=(self.CreatePageFontTab(),
|
2001-08-03 01:43:44 -03:00
|
|
|
self.CreatePageHighlight(),
|
|
|
|
self.CreatePageKeys(),
|
|
|
|
self.CreatePageGeneral())
|
|
|
|
|
2001-07-31 07:46:53 -03:00
|
|
|
#grid in framePages so we can overlap pages
|
2001-08-13 01:36:58 -03:00
|
|
|
framePageButtons.grid(row=0,column=0,sticky=NSEW)
|
2001-07-31 07:46:53 -03:00
|
|
|
for page in self.pages: page.grid(row=1,column=0,sticky=(N,S,E,W))
|
|
|
|
|
2001-08-11 12:48:13 -03:00
|
|
|
self.buttonHelp.pack(side=RIGHT,padx=5,pady=5)
|
|
|
|
self.buttonOk.pack(side=LEFT,padx=5,pady=5)
|
|
|
|
self.buttonApply.pack(side=LEFT,padx=5,pady=5)
|
2001-07-31 07:46:53 -03:00
|
|
|
self.buttonCancel.pack(side=LEFT,padx=5,pady=5)
|
|
|
|
frameActionButtons.pack(side=BOTTOM)
|
|
|
|
self.framePages.pack(side=TOP,expand=TRUE,fill=BOTH)
|
|
|
|
|
2001-08-04 10:58:22 -03:00
|
|
|
def CreatePageFontTab(self):
|
2001-08-05 05:00:28 -03:00
|
|
|
#tkVars
|
|
|
|
self.fontSize=StringVar()
|
|
|
|
self.spaceNum=IntVar()
|
|
|
|
self.tabCols=IntVar()
|
|
|
|
self.indentType=IntVar()
|
2001-10-23 07:42:12 -03:00
|
|
|
self.editFont=tkFont.Font(self,('courier',12,'normal'))
|
2001-08-05 05:00:28 -03:00
|
|
|
##widget creation
|
|
|
|
#body frame
|
2001-08-13 01:36:58 -03:00
|
|
|
frame=Frame(self.framePages,borderwidth=2,relief=RAISED)
|
2001-08-05 05:00:28 -03:00
|
|
|
#body section frames
|
|
|
|
frameFont=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
frameIndent=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
#frameFont
|
|
|
|
labelFontTitle=Label(frameFont,text='Set Base Editor Font')
|
|
|
|
frameFontName=Frame(frameFont)
|
2001-08-11 12:48:13 -03:00
|
|
|
frameFontSize=Frame(frameFontName)
|
2001-08-05 05:00:28 -03:00
|
|
|
labelFontNameTitle=Label(frameFontName,justify=LEFT,
|
2001-08-11 12:48:13 -03:00
|
|
|
text='Font :')
|
|
|
|
self.listFontName=Listbox(frameFontName,height=5,takefocus=FALSE,
|
|
|
|
exportselection=FALSE)
|
2001-10-23 07:42:12 -03:00
|
|
|
self.listFontName.bind('<<ListboxSelect>>',self.SetFontSampleBinding)
|
2001-08-11 12:48:13 -03:00
|
|
|
scrollFont=Scrollbar(frameFontName)
|
|
|
|
scrollFont.config(command=self.listFontName.yview)
|
|
|
|
self.listFontName.config(yscrollcommand=scrollFont.set)
|
|
|
|
labelFontSizeTitle=Label(frameFontSize,text='Size :')
|
2001-10-26 03:47:09 -03:00
|
|
|
self.optMenuFontSize=DynOptionMenu(frameFontSize,self.fontSize,None,
|
|
|
|
command=self.SetFontSampleBinding)
|
2001-09-24 06:43:17 -03:00
|
|
|
frameFontSample=Frame(frameFont,relief=SOLID,borderwidth=1)
|
|
|
|
self.labelFontSample=Label(frameFontSample,
|
|
|
|
text='AaBbCcDdEe\nFfGgHhIiJjK\n1234567890\n#:+=(){}[]',
|
2001-10-23 07:42:12 -03:00
|
|
|
justify=LEFT,font=self.editFont)
|
2001-08-05 05:00:28 -03:00
|
|
|
#frameIndent
|
|
|
|
labelIndentTitle=Label(frameIndent,text='Set Indentation Defaults')
|
|
|
|
frameIndentType=Frame(frameIndent)
|
|
|
|
frameIndentSize=Frame(frameIndent)
|
|
|
|
labelIndentTypeTitle=Label(frameIndentType,
|
|
|
|
text='Choose indentation type :')
|
|
|
|
radioUseSpaces=Radiobutton(frameIndentType,variable=self.indentType,
|
2001-10-23 07:42:12 -03:00
|
|
|
value=1,text='Tab key inserts spaces')
|
2001-08-05 05:00:28 -03:00
|
|
|
radioUseTabs=Radiobutton(frameIndentType,variable=self.indentType,
|
2001-10-23 07:42:12 -03:00
|
|
|
value=0,text='Tab key inserts tabs')
|
2001-08-05 05:00:28 -03:00
|
|
|
labelIndentSizeTitle=Label(frameIndentSize,
|
|
|
|
text='Choose indentation size :')
|
|
|
|
labelSpaceNumTitle=Label(frameIndentSize,justify=LEFT,
|
|
|
|
text='when tab key inserts spaces,\nspaces per tab')
|
|
|
|
self.scaleSpaceNum=Scale(frameIndentSize,variable=self.spaceNum,
|
|
|
|
orient='horizontal',tickinterval=2,from_=2,to=8)
|
|
|
|
labeltabColsTitle=Label(frameIndentSize,justify=LEFT,
|
|
|
|
text='when tab key inserts tabs,\ncolumns per tab')
|
|
|
|
self.scaleTabCols=Scale(frameIndentSize,variable=self.tabCols,
|
|
|
|
orient='horizontal',tickinterval=2,from_=2,to=8)
|
|
|
|
|
|
|
|
#widget packing
|
|
|
|
#body
|
2001-08-11 12:48:13 -03:00
|
|
|
frameFont.pack(side=LEFT,padx=5,pady=10,expand=TRUE,fill=BOTH)
|
|
|
|
frameIndent.pack(side=LEFT,padx=5,pady=10,fill=Y)
|
2001-08-05 05:00:28 -03:00
|
|
|
#frameFont
|
|
|
|
labelFontTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
2001-08-11 12:48:13 -03:00
|
|
|
frameFontName.pack(side=TOP,padx=5,pady=5)
|
|
|
|
frameFontSize.pack(side=RIGHT,anchor=N,fill=X)
|
2001-08-05 05:00:28 -03:00
|
|
|
labelFontNameTitle.pack(side=TOP,anchor=W)
|
2001-08-11 12:48:13 -03:00
|
|
|
self.listFontName.pack(side=LEFT,fill=Y)
|
|
|
|
scrollFont.pack(side=LEFT,fill=Y)
|
2001-08-05 05:00:28 -03:00
|
|
|
labelFontSizeTitle.pack(side=TOP,anchor=W)
|
2001-10-26 03:47:09 -03:00
|
|
|
self.optMenuFontSize.pack(side=TOP,anchor=W,fill=X)
|
2001-08-05 05:00:28 -03:00
|
|
|
frameFontSample.pack(side=TOP,padx=5,pady=5,expand=TRUE,fill=BOTH)
|
2001-08-11 12:48:13 -03:00
|
|
|
self.labelFontSample.pack(expand=TRUE,fill=BOTH)
|
2001-08-05 05:00:28 -03:00
|
|
|
#frameIndent
|
|
|
|
labelIndentTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
frameIndentType.pack(side=TOP,padx=5,fill=X)
|
|
|
|
frameIndentSize.pack(side=TOP,padx=5,pady=5,fill=BOTH)
|
|
|
|
labelIndentTypeTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
radioUseSpaces.pack(side=TOP,anchor=W,padx=5)
|
|
|
|
radioUseTabs.pack(side=TOP,anchor=W,padx=5)
|
|
|
|
labelIndentSizeTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
labelSpaceNumTitle.pack(side=TOP,anchor=W,padx=5)
|
|
|
|
self.scaleSpaceNum.pack(side=TOP,padx=5,fill=X)
|
|
|
|
labeltabColsTitle.pack(side=TOP,anchor=W,padx=5)
|
|
|
|
self.scaleTabCols.pack(side=TOP,padx=5,fill=X)
|
2001-08-03 01:43:44 -03:00
|
|
|
return frame
|
|
|
|
|
|
|
|
def CreatePageHighlight(self):
|
|
|
|
#tkVars
|
2001-08-04 10:58:22 -03:00
|
|
|
self.highlightTarget=StringVar()
|
2001-08-03 01:43:44 -03:00
|
|
|
self.builtinTheme=StringVar()
|
|
|
|
self.customTheme=StringVar()
|
|
|
|
self.colour=StringVar()
|
|
|
|
self.fontName=StringVar()
|
|
|
|
self.fontBold=StringVar()
|
|
|
|
self.fontItalic=StringVar()
|
|
|
|
self.themeType=IntVar()
|
|
|
|
##widget creation
|
|
|
|
#body frame
|
2001-08-13 01:36:58 -03:00
|
|
|
frame=Frame(self.framePages,borderwidth=2,relief=RAISED)
|
2001-08-03 01:43:44 -03:00
|
|
|
#body section frames
|
|
|
|
frameCustom=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
frameTheme=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
#frameCustom
|
2001-09-24 06:43:17 -03:00
|
|
|
self.frameHighlightTarget=Frame(frameCustom)
|
|
|
|
self.frameHighlightSample=Frame(frameCustom,relief=SOLID,
|
|
|
|
borderwidth=1,cursor='hand2')
|
2001-08-03 01:43:44 -03:00
|
|
|
frameSet=Frame(frameCustom)
|
2001-09-24 06:43:17 -03:00
|
|
|
self.frameColourSet=Frame(frameSet,relief=SOLID,borderwidth=1)
|
2001-08-03 01:43:44 -03:00
|
|
|
frameFontSet=Frame(frameSet)
|
|
|
|
labelCustomTitle=Label(frameCustom,text='Set Custom Highlighting')
|
2001-09-24 06:43:17 -03:00
|
|
|
labelTargetTitle=Label(self.frameHighlightTarget,text='for : ')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.optMenuHighlightTarget=DynOptionMenu(self.frameHighlightTarget,
|
|
|
|
self.highlightTarget,None,command=None)
|
2001-08-07 22:30:38 -03:00
|
|
|
buttonSetColour=Button(self.frameColourSet,text='Set Colour',
|
|
|
|
command=self.GetColour)
|
2001-08-03 01:43:44 -03:00
|
|
|
labelFontTitle=Label(frameFontSet,text='Set Font Style')
|
|
|
|
checkFontBold=Checkbutton(frameFontSet,variable=self.fontBold,
|
|
|
|
onvalue='Bold',offvalue='',text='Bold')
|
|
|
|
checkFontItalic=Checkbutton(frameFontSet,variable=self.fontItalic,
|
|
|
|
onvalue='Italic',offvalue='',text='Italic')
|
2001-08-07 22:30:38 -03:00
|
|
|
self.labelTestSample=Label(self.frameHighlightSample,justify=LEFT,font=('courier',12,''),
|
2001-08-05 05:00:28 -03:00
|
|
|
text='#when finished, this\n#sample area will\n#be interactive\n'+
|
|
|
|
'def Ahem(foo,bar):\n '+
|
|
|
|
'"""'+'doc hazard'+'"""'+
|
2001-09-24 06:43:17 -03:00
|
|
|
'\n test=foo\n text=bar\n return')
|
2001-08-04 10:58:22 -03:00
|
|
|
buttonSaveCustomTheme=Button(frameCustom,
|
2001-08-03 01:43:44 -03:00
|
|
|
text='Save as a Custom Theme')
|
|
|
|
#frameTheme
|
|
|
|
#frameDivider=Frame(frameTheme,relief=SUNKEN,borderwidth=1,
|
|
|
|
# width=2,height=10)
|
|
|
|
labelThemeTitle=Label(frameTheme,text='Select a Highlighting Theme')
|
|
|
|
labelTypeTitle=Label(frameTheme,text='Select : ')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.radioThemeBuiltin=Radiobutton(frameTheme,variable=self.themeType,
|
2001-08-03 01:43:44 -03:00
|
|
|
value=0,command=self.SetThemeType,text='a Built-in Theme')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.radioThemeCustom=Radiobutton(frameTheme,variable=self.themeType,
|
2001-08-03 01:43:44 -03:00
|
|
|
value=1,command=self.SetThemeType,text='a Custom Theme')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.optMenuThemeBuiltin=DynOptionMenu(frameTheme,
|
|
|
|
self.builtinTheme,None,command=self.SetHighlightSampleBinding)
|
|
|
|
self.optMenuThemeCustom=DynOptionMenu(frameTheme,
|
|
|
|
self.customTheme,None,command=self.SetHighlightSampleBinding)
|
|
|
|
# self.themeType.set(0)
|
2001-08-04 10:58:22 -03:00
|
|
|
self.buttonDeleteCustomTheme=Button(frameTheme,text='Delete Custom Theme')
|
2001-10-29 04:05:34 -04:00
|
|
|
# self.SetThemeType()
|
2001-08-03 01:43:44 -03:00
|
|
|
##widget packing
|
|
|
|
#body
|
2001-08-04 10:58:22 -03:00
|
|
|
frameCustom.pack(side=LEFT,padx=5,pady=10,expand=TRUE,fill=BOTH)
|
|
|
|
frameTheme.pack(side=LEFT,padx=5,pady=10,fill=Y)
|
2001-08-03 01:43:44 -03:00
|
|
|
#frameCustom
|
|
|
|
labelCustomTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
2001-09-24 06:43:17 -03:00
|
|
|
self.frameHighlightTarget.pack(side=TOP,padx=5,pady=5,fill=X)
|
2001-08-07 22:30:38 -03:00
|
|
|
self.frameHighlightSample.pack(side=TOP,padx=5,pady=5,expand=TRUE,fill=BOTH)
|
2001-08-03 01:43:44 -03:00
|
|
|
frameSet.pack(side=TOP,fill=X)
|
2001-08-07 22:30:38 -03:00
|
|
|
self.frameColourSet.pack(side=LEFT,padx=5,pady=5,fill=BOTH)
|
2001-08-03 01:43:44 -03:00
|
|
|
frameFontSet.pack(side=RIGHT,padx=5,pady=5,anchor=W)
|
|
|
|
labelTargetTitle.pack(side=LEFT,anchor=E)
|
2001-09-24 06:43:17 -03:00
|
|
|
self.optMenuHighlightTarget.pack(side=RIGHT,anchor=W,expand=TRUE,fill=X)
|
2001-08-03 01:43:44 -03:00
|
|
|
buttonSetColour.pack(expand=TRUE,fill=BOTH,padx=10,pady=10)
|
|
|
|
labelFontTitle.pack(side=TOP,anchor=W)
|
|
|
|
checkFontBold.pack(side=LEFT,anchor=W,pady=2)
|
|
|
|
checkFontItalic.pack(side=RIGHT,anchor=W)
|
2001-08-07 22:30:38 -03:00
|
|
|
self.labelTestSample.pack(anchor=CENTER,expand=TRUE,fill=BOTH)
|
2001-08-04 10:58:22 -03:00
|
|
|
buttonSaveCustomTheme.pack(side=BOTTOM,fill=X,padx=5,pady=5)
|
2001-08-03 01:43:44 -03:00
|
|
|
#frameTheme
|
|
|
|
#frameDivider.pack(side=LEFT,fill=Y,padx=5,pady=5)
|
|
|
|
labelThemeTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
labelTypeTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
2001-10-29 04:05:34 -04:00
|
|
|
self.radioThemeBuiltin.pack(side=TOP,anchor=W,padx=5)
|
|
|
|
self.radioThemeCustom.pack(side=TOP,anchor=W,padx=5,pady=2)
|
2001-08-03 01:43:44 -03:00
|
|
|
self.optMenuThemeBuiltin.pack(side=TOP,fill=X,padx=5,pady=5)
|
|
|
|
self.optMenuThemeCustom.pack(side=TOP,fill=X,anchor=W,padx=5,pady=5)
|
2001-08-04 10:58:22 -03:00
|
|
|
self.buttonDeleteCustomTheme.pack(side=TOP,fill=X,padx=5,pady=5)
|
2001-08-03 01:43:44 -03:00
|
|
|
return frame
|
|
|
|
|
|
|
|
def CreatePageKeys(self):
|
2001-08-04 10:58:22 -03:00
|
|
|
#tkVars
|
|
|
|
self.bindingTarget=StringVar()
|
|
|
|
self.builtinKeys=StringVar()
|
|
|
|
self.customKeys=StringVar()
|
|
|
|
self.keyChars=StringVar()
|
|
|
|
self.keyCtrl=StringVar()
|
|
|
|
self.keyAlt=StringVar()
|
|
|
|
self.keyShift=StringVar()
|
|
|
|
self.keysType=IntVar()
|
|
|
|
##widget creation
|
|
|
|
#body frame
|
2001-08-13 01:36:58 -03:00
|
|
|
frame=Frame(self.framePages,borderwidth=2,relief=RAISED)
|
2001-08-04 10:58:22 -03:00
|
|
|
#body section frames
|
|
|
|
frameCustom=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
frameKeySets=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
#frameCustom
|
|
|
|
frameTarget=Frame(frameCustom)
|
|
|
|
frameSet=Frame(frameCustom)
|
|
|
|
labelCustomTitle=Label(frameCustom,text='Set Custom Key Bindings')
|
|
|
|
labelTargetTitle=Label(frameTarget,text='Action')
|
|
|
|
scrollTarget=Scrollbar(frameTarget)
|
|
|
|
listTarget=Listbox(frameTarget)
|
2001-08-11 12:48:13 -03:00
|
|
|
scrollTarget.config(command=listTarget.yview)
|
|
|
|
listTarget.config(yscrollcommand=scrollTarget.set)
|
2001-08-04 10:58:22 -03:00
|
|
|
labelKeyBindTitle=Label(frameSet,text='Binding')
|
|
|
|
labelModifierTitle=Label(frameSet,text='Modifier:')
|
|
|
|
checkCtrl=Checkbutton(frameSet,text='Ctrl')
|
|
|
|
checkAlt=Checkbutton(frameSet,text='Alt')
|
|
|
|
checkShift=Checkbutton(frameSet,text='Shift')
|
|
|
|
labelKeyEntryTitle=Label(frameSet,text='Key:')
|
|
|
|
entryKey=Entry(frameSet,width=4)
|
|
|
|
buttonSaveCustomKeys=Button(frameCustom,text='Save as a Custom Key Set')
|
|
|
|
#frameKeySets
|
2001-08-05 05:00:28 -03:00
|
|
|
labelKeysTitle=Label(frameKeySets,text='Select a Key Set')
|
2001-08-04 10:58:22 -03:00
|
|
|
labelTypeTitle=Label(frameKeySets,text='Select : ')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.radioKeysBuiltin=Radiobutton(frameKeySets,variable=self.keysType,
|
2001-08-04 10:58:22 -03:00
|
|
|
value=0,command=self.SetKeysType,text='a Built-in Key Set')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.radioKeysCustom=Radiobutton(frameKeySets,variable=self.keysType,
|
2001-08-04 10:58:22 -03:00
|
|
|
value=1,command=self.SetKeysType,text='a Custom Key Set')
|
2001-10-29 04:05:34 -04:00
|
|
|
self.optMenuKeysBuiltin=DynOptionMenu(frameKeySets,
|
|
|
|
self.builtinKeys,None,command=None)
|
|
|
|
self.optMenuKeysCustom=DynOptionMenu(frameKeySets,
|
|
|
|
self.customKeys,None,command=None)
|
2001-08-04 10:58:22 -03:00
|
|
|
self.buttonDeleteCustomKeys=Button(frameKeySets,text='Delete Custom Key Set')
|
2001-10-29 04:05:34 -04:00
|
|
|
# self.SetKeysType()
|
2001-08-04 10:58:22 -03:00
|
|
|
##widget packing
|
|
|
|
#body
|
|
|
|
frameCustom.pack(side=LEFT,padx=5,pady=5,expand=TRUE,fill=BOTH)
|
|
|
|
frameKeySets.pack(side=LEFT,padx=5,pady=5,fill=Y)
|
|
|
|
#frameCustom
|
|
|
|
labelCustomTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
buttonSaveCustomKeys.pack(side=BOTTOM,fill=X,padx=5,pady=5)
|
|
|
|
frameTarget.pack(side=LEFT,padx=5,pady=5,fill=Y)
|
|
|
|
frameSet.pack(side=LEFT,padx=5,pady=5,fill=Y)
|
|
|
|
labelTargetTitle.pack(side=TOP,anchor=W)
|
|
|
|
scrollTarget.pack(side=RIGHT,anchor=W,fill=Y)
|
|
|
|
listTarget.pack(side=TOP,anchor=W,expand=TRUE,fill=BOTH)
|
|
|
|
labelKeyBindTitle.pack(side=TOP,anchor=W)
|
|
|
|
labelModifierTitle.pack(side=TOP,anchor=W,pady=5)
|
|
|
|
checkCtrl.pack(side=TOP,anchor=W)
|
|
|
|
checkAlt.pack(side=TOP,anchor=W,pady=2)
|
|
|
|
checkShift.pack(side=TOP,anchor=W)
|
|
|
|
labelKeyEntryTitle.pack(side=TOP,anchor=W,pady=5)
|
|
|
|
entryKey.pack(side=TOP,anchor=W)
|
|
|
|
#frameKeySets
|
|
|
|
labelKeysTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
labelTypeTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
2001-10-29 04:05:34 -04:00
|
|
|
self.radioKeysBuiltin.pack(side=TOP,anchor=W,padx=5)
|
|
|
|
self.radioKeysCustom.pack(side=TOP,anchor=W,padx=5,pady=2)
|
2001-08-04 10:58:22 -03:00
|
|
|
self.optMenuKeysBuiltin.pack(side=TOP,fill=X,padx=5,pady=5)
|
|
|
|
self.optMenuKeysCustom.pack(side=TOP,fill=X,anchor=W,padx=5,pady=5)
|
|
|
|
self.buttonDeleteCustomKeys.pack(side=TOP,fill=X,padx=5,pady=5)
|
2001-08-03 01:43:44 -03:00
|
|
|
return frame
|
|
|
|
|
|
|
|
def CreatePageGeneral(self):
|
2001-08-07 00:28:25 -03:00
|
|
|
#tkVars
|
|
|
|
self.runType=IntVar()
|
|
|
|
self.winWidth=StringVar()
|
|
|
|
self.winHeight=StringVar()
|
|
|
|
self.extState=IntVar()
|
|
|
|
#widget creation
|
|
|
|
#body
|
2001-08-13 01:36:58 -03:00
|
|
|
frame=Frame(self.framePages,borderwidth=2,relief=RAISED)
|
2001-08-07 00:28:25 -03:00
|
|
|
#body section frames
|
|
|
|
frameRun=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
frameWinSize=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
frameExt=Frame(frame,borderwidth=2,relief=GROOVE)
|
|
|
|
#frameRun
|
|
|
|
labelRunTitle=Label(frameRun,text='Run Preferences')
|
|
|
|
labelRunChoiceTitle=Label(frameRun,text='Run code : ')
|
|
|
|
radioRunInternal=Radiobutton(frameRun,variable=self.runType,
|
|
|
|
value=0,command=self.SetKeysType,text="in IDLE's Process")
|
|
|
|
radioRunSeparate=Radiobutton(frameRun,variable=self.runType,
|
|
|
|
value=1,command=self.SetKeysType,text='in a Separate Process')
|
|
|
|
#frameWinSize
|
|
|
|
labelWinSizeTitle=Label(frameWinSize,text='Initial Window Size')
|
|
|
|
buttonWinSizeSet=Button(frameWinSize,text='Set to current window size')
|
|
|
|
labelWinWidthTitle=Label(frameWinSize,text='Width')
|
|
|
|
entryWinWidth=Entry(frameWinSize,textvariable=self.winWidth,
|
|
|
|
width=3)
|
|
|
|
labelWinHeightTitle=Label(frameWinSize,text='Height')
|
|
|
|
entryWinHeight=Entry(frameWinSize,textvariable=self.winHeight,
|
|
|
|
width=3)
|
|
|
|
#frameExt
|
|
|
|
frameExtList=Frame(frameExt)
|
|
|
|
frameExtSet=Frame(frameExt)
|
|
|
|
labelExtTitle=Label(frameExt,text='Configure IDLE Extensions')
|
|
|
|
labelExtListTitle=Label(frameExtList,text='Extension')
|
|
|
|
scrollExtList=Scrollbar(frameExtList)
|
|
|
|
listExt=Listbox(frameExtList,height=5)
|
2001-08-11 12:48:13 -03:00
|
|
|
scrollExtList.config(command=listExt.yview)
|
|
|
|
listExt.config(yscrollcommand=scrollExtList.set)
|
2001-08-07 00:28:25 -03:00
|
|
|
labelExtSetTitle=Label(frameExtSet,text='Settings')
|
|
|
|
radioEnableExt=Radiobutton(frameExtSet,variable=self.extState,
|
|
|
|
value=1,text="enable")
|
|
|
|
radioDisableExt=Radiobutton(frameExtSet,variable=self.extState,
|
|
|
|
value=0,text="disable")
|
|
|
|
self.extState.set(1)
|
|
|
|
buttonExtConfig=Button(frameExtSet,text='Configure')
|
|
|
|
|
|
|
|
#widget packing
|
|
|
|
#body
|
|
|
|
frameRun.pack(side=TOP,padx=5,pady=5,fill=X)
|
|
|
|
frameWinSize.pack(side=TOP,padx=5,pady=5,fill=X)
|
|
|
|
frameExt.pack(side=TOP,padx=5,pady=5,expand=TRUE,fill=BOTH)
|
|
|
|
#frameRun
|
|
|
|
labelRunTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
labelRunChoiceTitle.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
radioRunInternal.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
radioRunSeparate.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
#frameWinSize
|
|
|
|
labelWinSizeTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
buttonWinSizeSet.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
labelWinWidthTitle.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
entryWinWidth.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
labelWinHeightTitle.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
entryWinHeight.pack(side=LEFT,anchor=W,padx=5,pady=5)
|
|
|
|
#frameExt
|
|
|
|
labelExtTitle.pack(side=TOP,anchor=W,padx=5,pady=5)
|
|
|
|
frameExtSet.pack(side=RIGHT,padx=5,pady=5,fill=Y)
|
|
|
|
frameExtList.pack(side=RIGHT,padx=5,pady=5,expand=TRUE,fill=BOTH)
|
|
|
|
labelExtListTitle.pack(side=TOP,anchor=W)
|
|
|
|
scrollExtList.pack(side=RIGHT,anchor=W,fill=Y)
|
|
|
|
listExt.pack(side=LEFT,anchor=E,expand=TRUE,fill=BOTH)
|
|
|
|
labelExtSetTitle.pack(side=TOP,anchor=W)
|
|
|
|
radioEnableExt.pack(side=TOP,anchor=W)
|
|
|
|
radioDisableExt.pack(side=TOP,anchor=W)
|
|
|
|
buttonExtConfig.pack(side=TOP,anchor=W,pady=5)
|
|
|
|
|
2001-08-03 01:43:44 -03:00
|
|
|
return frame
|
|
|
|
|
2001-10-23 07:42:12 -03:00
|
|
|
def LoadFontCfg(self):
|
|
|
|
##base editor font selection list
|
2001-09-24 06:43:17 -03:00
|
|
|
fonts=list(tkFont.families(self))
|
|
|
|
fonts.sort()
|
|
|
|
for font in fonts:
|
|
|
|
self.listFontName.insert(END,font)
|
2001-10-26 03:47:09 -03:00
|
|
|
configuredFont=idleConf.GetOption('main','EditorWindow','font',
|
2001-10-23 07:42:12 -03:00
|
|
|
default='courier')
|
|
|
|
if configuredFont in fonts:
|
|
|
|
currentFontIndex=fonts.index(configuredFont)
|
|
|
|
self.listFontName.see(currentFontIndex)
|
|
|
|
self.listFontName.select_set(currentFontIndex)
|
|
|
|
##font size dropdown
|
2001-10-26 03:47:09 -03:00
|
|
|
fontSize=idleConf.GetOption('main','EditorWindow','font-size',default='12')
|
|
|
|
self.optMenuFontSize.SetMenu(('10','11','12','13','14',
|
|
|
|
'16','18','20','22'),fontSize )
|
2001-10-23 07:42:12 -03:00
|
|
|
##font sample
|
|
|
|
self.SetFontSample()
|
|
|
|
|
|
|
|
def LoadTabCfg(self):
|
|
|
|
##indent type radibuttons
|
2001-10-26 03:47:09 -03:00
|
|
|
spaceIndent=idleConf.GetOption('main','Indent','use-spaces',
|
2001-10-23 07:42:12 -03:00
|
|
|
default=1,type='bool')
|
|
|
|
self.indentType.set(spaceIndent)
|
|
|
|
##indent sizes
|
2001-10-26 03:47:09 -03:00
|
|
|
spaceNum=idleConf.GetOption('main','Indent','num-spaces',
|
2001-10-23 07:42:12 -03:00
|
|
|
default=4,type='int')
|
2001-10-26 03:47:09 -03:00
|
|
|
tabCols=idleConf.GetOption('main','Indent','tab-cols',
|
2001-10-23 07:42:12 -03:00
|
|
|
default=4,type='int')
|
|
|
|
self.spaceNum.set(spaceNum)
|
|
|
|
self.tabCols.set(tabCols)
|
2001-09-24 06:43:17 -03:00
|
|
|
|
2001-10-26 03:47:09 -03:00
|
|
|
def LoadThemeLists(self):
|
2001-10-29 04:05:34 -04:00
|
|
|
##current theme type radiobutton
|
|
|
|
self.themeType.set(idleConf.GetOption('main','Theme','user',type='int'))
|
|
|
|
##currently set theme
|
|
|
|
currentOption=idleConf.GetOption('main','Theme','name')
|
|
|
|
##load option menus
|
|
|
|
if self.themeType.get() == 0: #default theme selected
|
|
|
|
itemList=idleConf.GetSectionList('default','highlight')
|
|
|
|
self.optMenuThemeBuiltin.SetMenu(itemList,currentOption)
|
|
|
|
itemList=idleConf.GetSectionList('user','highlight')
|
|
|
|
if not itemList:
|
|
|
|
self.radioThemeCustom.config(state=DISABLED)
|
|
|
|
self.customTheme.set('- no custom themes -')
|
|
|
|
else:
|
|
|
|
self.optMenuThemeCustom.SetMenu(itemList,itemList[0])
|
|
|
|
elif self.themeType.get() == 1: #user theme selected
|
|
|
|
itemList=idleConf.GetSectionList('user','highlight')
|
|
|
|
self.optMenuThemeCustom.SetMenu(itemList,currentOption)
|
|
|
|
itemList=idleConf.GetSectionList('default','highlight')
|
|
|
|
self.optMenuThemeBuiltin.SetMenu(itemList,itemList[0])
|
|
|
|
self.SetThemeType()
|
|
|
|
|
|
|
|
def LoadKeyLists(self):
|
|
|
|
##current keys type radiobutton
|
|
|
|
self.keysType.set(idleConf.GetOption('main','Keys','user',type='int'))
|
|
|
|
##currently set keys
|
|
|
|
currentOption=idleConf.GetOption('main','Keys','name')
|
|
|
|
##load option menus
|
|
|
|
if self.keysType.get() == 0: #default theme selected
|
|
|
|
itemList=idleConf.GetSectionList('default','keys')
|
|
|
|
self.optMenuKeysBuiltin.SetMenu(itemList,currentOption)
|
|
|
|
itemList=idleConf.GetSectionList('user','keys')
|
|
|
|
if not itemList:
|
|
|
|
self.radioKeysCustom.config(state=DISABLED)
|
|
|
|
self.customKeys.set('- no custom keys -')
|
|
|
|
else:
|
|
|
|
self.optMenuKeysCustom.SetMenu(itemList,itemList[0])
|
|
|
|
elif self.keysType.get() == 1: #user theme selected
|
|
|
|
itemList=idleConf.GetSectionList('user','keys')
|
|
|
|
self.optMenuKeysCustom.SetMenu(itemList,currentOption)
|
|
|
|
itemList=idleConf.GetSectionList('default','keys')
|
|
|
|
self.optMenuKeysBuiltin.SetMenu(itemList,itemList[0])
|
|
|
|
self.SetKeysType()
|
|
|
|
|
2001-10-23 07:42:12 -03:00
|
|
|
def LoadConfigs(self):
|
|
|
|
"""
|
|
|
|
load configuration from default and user config files and populate
|
|
|
|
the widgets on the config dialog pages.
|
|
|
|
"""
|
|
|
|
### fonts / tabs page
|
|
|
|
self.LoadFontCfg()
|
|
|
|
self.LoadTabCfg()
|
|
|
|
### highlighting page
|
2001-10-26 03:47:09 -03:00
|
|
|
self.LoadThemeLists()
|
2001-10-23 07:42:12 -03:00
|
|
|
### keys page
|
2001-10-29 04:05:34 -04:00
|
|
|
self.LoadKeyLists()
|
2001-10-23 07:42:12 -03:00
|
|
|
### help page
|
|
|
|
### general page
|
|
|
|
|
2001-09-24 06:43:17 -03:00
|
|
|
def SaveConfigs(self):
|
2001-10-23 07:42:12 -03:00
|
|
|
"""
|
|
|
|
save configuration changes to user config files.
|
|
|
|
"""
|
2001-09-24 06:43:17 -03:00
|
|
|
pass
|
|
|
|
|
2001-07-31 03:59:02 -03:00
|
|
|
if __name__ == '__main__':
|
2001-07-31 07:46:53 -03:00
|
|
|
#test the dialog
|
|
|
|
root=Tk()
|
|
|
|
Button(root,text='Dialog',
|
|
|
|
command=lambda:ConfigDialog(root,'Settings',None)).pack()
|
|
|
|
root.mainloop()
|