~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/conv/html/HtmlListenerImpl.h

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2004-08-10 00:37:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040810003747-5i7g92h2v88z70zo
Tags: 0.7.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
        virtual void insertTab();
67
67
        virtual void insertText(const UCSString &text);
68
 
        virtual void insertLineBreak() {}
 
68
        virtual void insertLineBreak();
69
69
 
70
70
        virtual void defineOrderedListLevel(const int listID, const guint16 listLevel, const WPXNumberingType listType, 
71
71
                                            const UCSString &textBeforeNumber, const UCSString &textAfterNumber,
100
100
        virtual void closeTable();
101
101
 
102
102
protected:
103
 
        void _appendTextAttributes(const guint32 textAttributeBits);
 
103
        void _addTextAttributes(const guint32 textAttributeBits);
 
104
        void _removeTextAttributes();
104
105
        void _appendParagraphJustification(const guint32 paragraphJustification);
105
106
 
106
107
private:
107
108
        guint m_currentListLevel;
 
109
        // textAttributeBits
 
110
        bool m_isSuperscript;
 
111
        bool m_isSubscript;
 
112
        bool m_isBold;
 
113
        bool m_isItalic;
 
114
        bool m_isStrikeout;
 
115
        bool m_isUnderline;
 
116
        bool m_isDoubleUnderline;
 
117
        bool m_isOutline;
 
118
        bool m_isSmallCaps;
 
119
        bool m_isBlink;
 
120
        bool m_isShadow;
 
121
        bool m_isRedline;
 
122
 
108
123
};
109
124
 
110
125
#endif /* HTMLLISTENERIMPL_H */