c_ext/CFileEditor.py
changeset 1782 5b6ad7a7fd9d
parent 1768 691083b5682a
child 1881 091005ec69c4
equal deleted inserted replaced
1781:b112bfdde5cc 1782:5b6ad7a7fd9d
    52         self.StyleSetSpec(stc.STC_C_STRING, 'fore:#2a00ff,size:%(size)d' % faces)
    52         self.StyleSetSpec(stc.STC_C_STRING, 'fore:#2a00ff,size:%(size)d' % faces)
    53         self.StyleSetSpec(stc.STC_C_PREPROCESSOR, 'bold,fore:#800056,size:%(size)d' % faces)
    53         self.StyleSetSpec(stc.STC_C_PREPROCESSOR, 'bold,fore:#800056,size:%(size)d' % faces)
    54         self.StyleSetSpec(stc.STC_C_OPERATOR, 'bold,size:%(size)d' % faces)
    54         self.StyleSetSpec(stc.STC_C_OPERATOR, 'bold,size:%(size)d' % faces)
    55         self.StyleSetSpec(stc.STC_C_STRINGEOL, 'back:#FFD5FF,size:%(size)d' % faces)
    55         self.StyleSetSpec(stc.STC_C_STRINGEOL, 'back:#FFD5FF,size:%(size)d' % faces)
    56 
    56 
    57 #-------------------------------------------------------------------------------
       
    58 #                          CFileEditor Main Frame Class
       
    59 #-------------------------------------------------------------------------------
       
    60 
       
    61 
    57 
    62 class CFileEditor(CodeFileEditor):
    58 class CFileEditor(CodeFileEditor):
       
    59     """
       
    60     CFileEditor Main Frame Class
       
    61     """
    63 
    62 
    64     CONFNODEEDITOR_TABS = [
    63     CONFNODEEDITOR_TABS = [
    65         (_("C code"), "_create_CodePanel")]
    64         (_("C code"), "_create_CodePanel")]
    66     CODE_EDITOR = CppEditor
    65     CODE_EDITOR = CppEditor