Added an enhanced wxEditor from Steve Howell and Adam Feuer. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			23 lines
		
	
	
		
			536 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			536 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from wxPython.wx import *
 | |
| 
 | |
| import os.path
 | |
| 
 | |
| class CustomStatusBar(wxStatusBar):
 | |
|     def __init__(self, parent):
 | |
|         wxStatusBar.__init__(self, parent, -1)
 | |
|         self.SetFieldsCount(3)
 | |
| 
 | |
|     def setFileName(self, fn):
 | |
|         path, fileName = os.path.split(fn)
 | |
|         self.SetStatusText(fileName, 0)
 | |
| 
 | |
|     def setRowCol(self, row, col):
 | |
|         self.SetStatusText("%d,%d" % (row,col), 1)
 | |
| 
 | |
|     def setDirty(self, dirty):
 | |
|         if dirty:
 | |
|             self.SetStatusText("...", 2)
 | |
|         else:
 | |
|             self.SetStatusText(" ", 2)
 | |
| 
 |