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
|
#-----------------------------------------------------------------------------
# Name: ConfigSupport.py
# Purpose:
#
# Author: Riaan Booysen
#
# Created: 2002/12/03
# RCS-ID: $Id: ConfigSupport.py,v 1.5 2004/08/16 13:28:12 riaan Exp $
# Copyright: (c) 2002 - 2004
# Licence: GPL
#-----------------------------------------------------------------------------
print 'importing Models.ConfigSupport'
from wxPython import wx
import Preferences, Utils
true=1;false=0
import EditorHelper
EditorHelper.imgConfigFileModel = EditorHelper.imgIdxRange()
from Models.EditorModels import SourceModel
class ConfigFileModel(SourceModel):
modelIdentifier = 'Config'
defaultName = 'config'
bitmap = 'Config_s.png'
imgIdx = EditorHelper.imgConfigFileModel
ext = '.cfg'
EditorHelper.modelReg[ConfigFileModel.modelIdentifier] = ConfigFileModel
EditorHelper.extMap['.ini'] = ConfigFileModel
from Views.StyledTextCtrls import LanguageSTCMix, stcConfigPath
class ConfigSTCMix(LanguageSTCMix):
def __init__(self, wId):
LanguageSTCMix.__init__(self, wId, (), 'prop', stcConfigPath)
self.setStyles()
wxID_CONFIGVIEW = wx.wxNewId()
from Views.SourceViews import EditorStyledTextCtrl
class ConfigView(EditorStyledTextCtrl, ConfigSTCMix):
viewName = 'Config'
def __init__(self, parent, model):
EditorStyledTextCtrl.__init__(self, parent, wxID_CONFIGVIEW, model, (), -1)
ConfigSTCMix.__init__(self, wxID_CONFIGVIEW)
self.active = true
from Explorers import ExplorerNodes
ExplorerNodes.langStyleInfoReg.append( ('Config', 'prop', ConfigSTCMix,
'stc-styles.rc.cfg') )
import Controllers
class ConfigFileController(Controllers.SourceController):
Model = ConfigFileModel
DefaultViews = [ConfigView]
Controllers.modelControllerReg[ConfigFileModel] = ConfigFileController
import PaletteStore
PaletteStore.newControllers['Config'] = ConfigFileController
PaletteStore.paletteLists['New'].append('Config')
|