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
|
#-----------------------------------------------------------------------------
# Name: HTMLSupport.py
# Purpose:
#
# Author: Riaan Booysen
#
# Created: 2002
# RCS-ID: $Id: HTMLSupport.py,v 1.5 2004/08/16 13:28:13 riaan Exp $
# Copyright: (c) 2002 - 2004
# Licence: GPL
#-----------------------------------------------------------------------------
print 'importing Models.HTMLSupport'
from wxPython import wx
import Preferences, Utils
true=1;false=0
import EditorHelper
EditorHelper.imgHTMLFileModel = EditorHelper.imgIdxRange()
from Models.EditorModels import PersistentModel
class HTMLFileModel(PersistentModel):
modelIdentifier = 'HTML'
defaultName = 'html'
bitmap = 'WebDocHTML_s.png'
imgIdx = EditorHelper.imgHTMLFileModel
ext = '.html'
EditorHelper.modelReg[HTMLFileModel.modelIdentifier] = HTMLFileModel
EditorHelper.extMap['.htm'] = HTMLFileModel
from Views.StyledTextCtrls import LanguageSTCMix, stcConfigPath
class BaseHTMLStyledTextCtrlMix(LanguageSTCMix):
def __init__(self, wId):
LanguageSTCMix.__init__(self, wId,
(0, Preferences.STCLineNumMarginWidth), 'html', stcConfigPath)
class HTMLStyledTextCtrlMix(BaseHTMLStyledTextCtrlMix):
def __init__(self, wId):
BaseHTMLStyledTextCtrlMix.__init__(self, wId)
self.setStyles()
wxID_HTMLSOURCEVIEW = wx.wxNewId()
from Views.SourceViews import EditorStyledTextCtrl
class HTMLSourceView(EditorStyledTextCtrl, HTMLStyledTextCtrlMix):
viewName = 'HTML'
def __init__(self, parent, model):
EditorStyledTextCtrl.__init__(self, parent, wxID_HTMLSOURCEVIEW,
model, (), -1)
HTMLStyledTextCtrlMix.__init__(self, wxID_HTMLSOURCEVIEW)
self.active = true
from Explorers import ExplorerNodes
ExplorerNodes.langStyleInfoReg.append( ('HTML', 'html',
BaseHTMLStyledTextCtrlMix, 'stc-styles.rc.cfg') )
import Controllers
from Views.EditorViews import HTMLFileView
class HTMLFileController(Controllers.PersistentController):
Model = HTMLFileModel
DefaultViews = [HTMLSourceView]
AdditionalViews = [HTMLFileView]
Controllers.modelControllerReg[HTMLFileModel] = HTMLFileController
import PaletteStore
PaletteStore.newControllers['HTML'] = HTMLFileController
PaletteStore.paletteLists['New'].append('HTML')
|