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

« back to all changes in this revision

Viewing changes to src/lib/WP42HLStylesListener.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 WP42HLStylesListener : public WP42HLListener
35
35
{
36
36
public:
37
 
        WP42HLStylesListener(vector<WPXPageSpan *> *pageList, vector<WPXTable *> *tableList);
 
37
        WP42HLStylesListener(vector<WPXPageSpan *> *pageList, WPXTableList  *tableList);
38
38
 
39
39
        virtual void startDocument() {}
40
40
        virtual void insertCharacter(const guint16 character) {}
60
60
 
61
61
        
62
62
protected:
63
 
        virtual void _handleSubDocument(guint16 textPID) {}
 
63
        virtual void _handleSubDocument(guint16 textPID, WPXTableList *tableList) {}
64
64
        
65
65
        virtual void _openPageSpan() { /* FIXME: REMOVE ME WHEN IMPLEMENTED IN WPXHLListener */ };      
66
66
                
67
67
private:
68
68
        WPXPageSpan *m_currentPage;
69
69
 
70
 
        vector<WPXTable *> *m_tableList;
 
70
        WPXTableList  *m_tableList;
71
71
        WPXTable *m_currentTable;
72
72
        float m_tempMarginLeft, m_tempMarginRight;
73
73
        bool m_currentPageHasContent;