[Python-checkins] CVS: python/dist/src/Mac/Tools/IDE PyEdit.py,1.25,1.25.2.1

Jack Jansen jackjansen@users.sourceforge.net
Tue, 20 Nov 2001 15:21:44 -0800


Update of /cvsroot/python/python/dist/src/Mac/Tools/IDE
In directory usw-pr-cvs1:/tmp/cvs-serv8354/Python/Mac/Tools/IDE

Modified Files:
      Tag: r22b2-branch
	PyEdit.py 
Log Message:
Merged Just's trunk changes.

Index: PyEdit.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Tools/IDE/PyEdit.py,v
retrieving revision 1.25
retrieving revision 1.25.2.1
diff -C2 -d -r1.25 -r1.25.2.1
*** PyEdit.py	2001/11/02 22:55:15	1.25
--- PyEdit.py	2001/11/20 23:21:42	1.25.2.1
***************
*** 175,179 ****
  	
  	def setupwidgets(self, text):
! 		topbarheight = 28
  		popfieldwidth = 80
  		self.lastlineno = None
--- 175,179 ----
  	
  	def setupwidgets(self, text):
! 		topbarheight = 24
  		popfieldwidth = 80
  		self.lastlineno = None
***************
*** 198,204 ****
  		self.bevelbox = W.BevelBox((0, 0, 0, topbarheight))
  		self.hline = W.HorizontalLine((0, topbarheight, 0, 0))
! 		self.infotext = W.TextBox((175, 7, -4, 14), backgroundcolor = (0xe000, 0xe000, 0xe000))
! 		self.runbutton = W.Button((6, 5, 60, 16), runButtonLabels[0], self.run)
! 		self.runselbutton = W.Button((78, 5, 90, 16), runSelButtonLabels[0], self.runselection)
  		
  		# bind some keys
--- 198,204 ----
  		self.bevelbox = W.BevelBox((0, 0, 0, topbarheight))
  		self.hline = W.HorizontalLine((0, topbarheight, 0, 0))
! 		self.infotext = W.TextBox((175, 6, -4, 14), backgroundcolor = (0xe000, 0xe000, 0xe000))
! 		self.runbutton = W.BevelButton((6, 4, 80, 16), runButtonLabels[0], self.run)
! 		self.runselbutton = W.BevelButton((90, 4, 80, 16), runSelButtonLabels[0], self.runselection)
  		
  		# bind some keys
***************
*** 801,804 ****
--- 801,805 ----
  		pattern = pattern + notwordcharspat
  	return re.compile(pattern)
+ 
  
  class SearchEngine: