~ubuntu-branches/ubuntu/karmic/qscintilla2/karmic

« back to all changes in this revision

Viewing changes to Python/sip/qscilexerpascal.sip

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Marek
  • Date: 2009-06-20 12:11:11 UTC
  • mfrom: (1.1.3 upstream) (5.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090620121111-6xsr2u1usw62eprl
Tags: 2.4-3
* Upload rebuilt packages
* Fixes segfault on import

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
public:
43
43
    enum {
44
44
        Default,
 
45
        Identifier,
45
46
        Comment,
 
47
        CommentParenthesis,
46
48
        CommentLine,
47
 
        CommentDoc,
 
49
        PreProcessor,
 
50
        PreProcessorParenthesis,
48
51
        Number,
 
52
        HexNumber,
49
53
        Keyword,
50
54
        SingleQuotedString,
51
 
        PreProcessor,
 
55
        UnclosedString,
 
56
        Character,
52
57
        Operator,
53
 
        Identifier,
54
58
        Asm,
55
59
    };
56
60
 
64
68
    const char *language() const;
65
69
    const char *lexer() const;
66
70
    QColor defaultColor(int style) const;
 
71
    bool defaultEolFill(int style) const;
67
72
    QFont defaultFont(int style) const;
 
73
    QColor defaultPaper(int style) const;
68
74
    const char *keywords(int set) const;
69
75
    QString description(int style) const;
70
76
 
73
79
    bool foldCompact() const;
74
80
    bool foldPreprocessor() const;
75
81
 
 
82
    void setSmartHighlighting(bool enabled);
 
83
    bool smartHighlighting() const;
 
84
 
76
85
public slots:
77
86
    virtual void setFoldComments(bool fold);
78
87
    virtual void setFoldCompact(bool fold);