File: drScriptDialog.py

package info (click to toggle)
drpython 161-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,588 kB
  • ctags: 1,470
  • sloc: python: 15,817; sh: 358; makefile: 43
file content (195 lines) | stat: -rw-r--r-- 7,854 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#	Programmer:	Daniel Pozmanter
#	E-mail:		drpython@bluebottle.com
#	Note:		You must reply to the verification e-mail to get through.
#
#	Copyright 2003-2005 Daniel Pozmanter
#
#	Distributed under the terms of the GPL (GNU Public License)
#
#	DrPython is free software; you can redistribute it and/or modify
#	it under the terms of the GNU General Public License as published by
#	the Free Software Foundation; either version 2 of the License, or
#	(at your option) any later version.
#
#	This program is distributed in the hope that it will be useful,
#	but WITHOUT ANY WARRANTY; without even the implied warranty of
#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#	GNU General Public License for more details.
#
#	You should have received a copy of the GNU General Public License
#	along with this program; if not, write to the Free Software
#	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
	
#drScript Dialog

import os.path
import wx
import drScrolledMessageDialog
from drProperty import *
from drPrefsFile import ExtractPreferenceFromText
import drShortcutsFile
from drTreeDialog import *

class drTreeItemData(wx.TreeItemData):
	def __init__(self, Line, Shortcut):
		wx.TreeItemData.__init__(self)
		self.Line = Line
		self.Shortcut = Shortcut
	
def BuildTreeFromString(dialog, branch, thestring):
	line = " "
	roots = [branch]
	rootindex = 0
	#Shortcuts
	Shortcuts = []
	Keycodes = []
	ShortcutIndex = 0
	map(Shortcuts.append, dialog.parent.DrScriptShortcuts[dialog.parent.drscriptmenu.ExampleScriptCount:])
	lastCount = 0
	i = 0
	lastI = 0
	while (len(line) > 0):
		i = thestring.find('\n')
		if (i > -1):
			line = thestring[0:(i + 1)]
			lastI = i + 1
			thestring = thestring[lastI:]
			c = line.count('\t')
			line = line[c:].rstrip()
			while (lastCount > c):
				roots.pop()
				rootindex = rootindex - 1
				lastCount = lastCount - 1
			if line.find("title") > -1:
				line_title = ExtractPreferenceFromText(line, "title")
				currentItem = dialog.datatree.AppendItem(roots[rootindex], line_title)
				dialog.datatree.SetPyData(currentItem, drTreeItemData(line, Shortcuts[ShortcutIndex]))
				ShortcutIndex = ShortcutIndex + 1
				dialog.datatree.SetItemImage(currentItem, 2, wx.TreeItemIcon_Normal)
				dialog.datatree.SetItemImage(currentItem, 2, wx.TreeItemIcon_Selected)
			elif (line[0] == '>'):
				currentItem = dialog.datatree.AppendItem(roots[rootindex], line)
				dialog.datatree.SetPyData(currentItem, drTreeItemData(line, None))
				dialog.datatree.SetItemImage(currentItem, 0, wx.TreeItemIcon_Normal)
				dialog.datatree.SetItemImage(currentItem, 1, wx.TreeItemIcon_Expanded)
				roots.append(currentItem)
				rootindex = rootindex + 1
				lastCount = c + 1
		else:
			line = ""

def GetShortcutArrays(tree, branch):
	Shortcuts = []
	t = tree.GetItemText(branch)
	if not (t[0] == '>'):
		data = tree.GetPyData(branch)
		if data.Shortcut is not None:
			Shortcuts.append(data.Shortcut)
	else:
		ccount = tree.GetChildrenCount(branch, 0)
		if (ccount > 0):
			if (wx.MAJOR_VERSION >= 2) and (wx.MINOR_VERSION >= 5):
				b, cookie = tree.GetFirstChild(branch)
			else:
				b, cookie = tree.GetFirstChild(branch, 1)
			s = GetShortcutArrays(tree, b)
			Shortcuts.extend(s)
			x = 1
			while (x < ccount):
				b, cookie = tree.GetNextChild(branch, cookie)
				s = GetShortcutArrays(tree, b)
				Shortcuts.extend(s)
				x = x + 1
				
	return Shortcuts
	
def WriteBranch(tree, branch, filehandle, tablevel):
	t = tree.GetItemText(branch)
	if tablevel > -1:
		data = tree.GetPyData(branch)
		if data is not None:
			x = 0
			y = ""
			while (x < tablevel):
				y = y + '\t'
				x = x + 1
			title = ExtractPreferenceFromText(data.Line, "title")
			if len(title) > 0:
				if not (title == t):
					data.Line = data.Line[:data.Line.find("<title>")] + "<title>" + t  + "</title>"
			y = y + data.Line + '\n'
			filehandle.write(y)
		else:
			print "Error at:", t
	if (t[0] == '>'):
		ccount = tree.GetChildrenCount(branch, 0)
		if (ccount > 0):
			if (wx.MAJOR_VERSION >= 2) and (wx.MINOR_VERSION >= 5):
				b, cookie = tree.GetFirstChild(branch)
			else:
				b, cookie = tree.GetFirstChild(branch, 1)
			WriteBranch(tree, b, filehandle, (tablevel + 1))
			x = 1
			while (x < ccount):
				b, cookie = tree.GetNextChild(branch, cookie)
				WriteBranch(tree, b, filehandle, (tablevel + 1))
				x = x + 1

class drScriptDialog(drTreeDialog):
	def __init__(self, parent):
		drTreeDialog.__init__(self, parent, 'Edit DrScript Menu', 'DrScript Menu', parent.userpreferencesdirectory + '/drscript.dat', parent.prefs.drscriptstyle, \
		'drscriptdialog.sizeandposition.dat', parent.bitmapdirectory + '/16/drscript.png', BuildTreeFromString, WriteBranch)
				
		self.SetupSizer()
	
	def OnbtnAddFolder(self, event):
		sel = self.datatree.GetSelection()
		if (not sel.IsOk()):
			if self.datatree.GetCount() < 2:
				sel = self.datatree.GetRootItem()
			else:
				return
		if (self.datatree.GetItemText(sel)[0] == '>'):
			d = wx.TextEntryDialog(self, 'Enter Tree Folder:', 'Add Folder', '')
			if (d.ShowModal() == wx.ID_OK):
				v = d.GetValue()
				item = self.datatree.AppendItem(self.datatree.GetSelection(), ">" + v)
				self.datatree.SetPyData(item, drTreeItemData(">" + v, None))
				self.datatree.SetItemImage(item, 0, wx.TreeItemIcon_Normal)
				self.datatree.SetItemImage(item, 1, wx.TreeItemIcon_Expanded)
				self.datatree.SetModified()
			d.Destroy()
		else:
			drScrolledMessageDialog.ShowMessage(self, "You can only add a folder to another folder.", "Bad Folder Location")
		
	def OnbtnSave(self, event):
		if (not os.path.exists(self.userpreferencesdirectory)):
			drScrolledMessageDialog.ShowMessage(self, ("Dude, you've got some problems...\nYour userpreferencesdirectory (" + self.userpreferencesdirectory + ") does not exist!\nLet's not bother speculating about how or why.\nRead the help file for this truly screwed up situation.\nDrPython will now politely ignore your request to save.\nTry again when you have fixed this problem."), "Huge Error")
			return
		try:
			root = self.datatree.GetRootItem()
			f = open(self.targetfile, 'w')
			self.WriteBranch(self.datatree, root, f, -1)
			f.close()
		except IOError:
			drScrolledMessageDialog.ShowMessage(self, ("There were some problems writing to:\n"  + self.targetfile + "\nEither the file is having metaphysical issues, or you do not have permission to write.\nFor metaphysical issues, consult the documentation.\nFor permission issues, change the permissions on the directory to allow yourself write access.\nDrPython will now politely ignore your request to save.\nTry again when you have fixed the problem."), "Write Error")
			return
		self.datatree.SetModified(False)
		if self.parent.prefs.enablefeedback:
			drScrolledMessageDialog.ShowMessage(self, ("Succesfully wrote to:\n"  + self.targetfile), "Success")
			
		
		root = self.datatree.GetRootItem()
		
		#Sync Shortcuts:
		s = GetShortcutArrays(self.datatree, root)
		self.parent.DrScriptShortcuts = self.parent.DrScriptShortcuts[:self.parent.drscriptmenu.ExampleScriptCount]
		map(lambda x: self.parent.DrScriptShortcuts.append(x), s)
		
		#Sync the Shortcuts File:
		shortcutsfile = self.userpreferencesdirectory + "/drscript.shortcuts.dat"
		try:
			drShortcutsFile.WriteShortcuts(shortcutsfile, self.parent.DrScriptShortcuts, self.parent.drscriptmenu.titles, "", False)
		except IOError:
			drScrolledMessageDialog.ShowMessage(self, ("There were some problems writing to:\n"  + shortcutsfile + "\nEither the file is having metaphysical issues, or you do not have permission to write.\nFor metaphysical issues, consult the documentation.\nFor permission issues, change the permissions on the directory to allow yourself write access.\nDrPython will now politely ignore your request to save.\nTry again when you have fixed the problem."), "Write Error")
			return