~ubuntu-branches/ubuntu/breezy/libwpd/breezy

« back to all changes in this revision

Viewing changes to src/lib/WP5HLStylesListener.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:
34
34
class WP5HLStylesListener : public WP5HLListener
35
35
{
36
36
public:
37
 
        WP5HLStylesListener(vector<WPXPageSpan *> *pageList, vector<WPXTable *> *tableList);
 
37
        WP5HLStylesListener(vector<WPXPageSpan *> *pageList, WPXTableList  *tableList);
38
38
 
39
39
        virtual void startDocument() {}
40
40
        virtual void insertCharacter(const guint16 character) {}
41
 
        virtual void insertTab(const guint8 tabType) {}
 
41
        virtual void insertTab(const guint8 tabType, const float tabPosition) {}
 
42
        virtual void handleLineBreak() {}
42
43
        virtual void insertEOL() {}
43
44
        virtual void insertBreak(const guint8 breakType);
44
45
        virtual void attributeChange(const bool isOn, const guint8 attribute) {}
65
66
private:
66
67
        WPXPageSpan *m_currentPage;
67
68
 
68
 
        vector<WPXTable *> *m_tableList;
 
69
        WPXTableList  *m_tableList;
69
70
        WPXTable *m_currentTable;
70
71
        float m_tempMarginLeft, m_tempMarginRight;
71
72
        bool m_currentPageHasContent;