~ubuntu-branches/ubuntu/jaunty/libwpd/jaunty

« back to all changes in this revision

Viewing changes to src/lib/WP3StylesListener.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-11-21 17:45:38 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20071121174538-ue68b9jzc5y8wq8e
Tags: 0.8.12-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Add debian/patches/gcc43.diff and build rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
        void startDocument() {}
42
42
        void insertCharacter(const uint16_t /* character */) { if (!isUndoOn()) m_currentPageHasContent = true; }
43
 
        void insertTab(const uint8_t /* tabType */, float /* tabPosition */) { if (!isUndoOn()) m_currentPageHasContent = true; }
 
43
        void insertTab() { if (!isUndoOn()) m_currentPageHasContent = true; }
 
44
        void insertTab(const uint8_t /* tabType */, const float /* tabPosition */) { if (!isUndoOn()) m_currentPageHasContent = true; }
44
45
        void insertEOL() { if (!isUndoOn()) m_currentPageHasContent = true; }
45
46
        void insertBreak(const uint8_t breakType);
46
47
        void attributeChange(const bool /* isOn */, const uint8_t /* attribute */) {}
75
76
        void insertNote(const WPXNoteType /* noteType */, WP3SubDocument * /* subDocument */) { if (!isUndoOn()) m_currentPageHasContent = true; }
76
77
        void headerFooterGroup(const uint8_t headerFooterType, const uint8_t occurenceBits, WP3SubDocument *subDocument);
77
78
        void suppressPage(const uint16_t suppressCode);
 
79
        void backTab() { if (!isUndoOn()) m_currentPageHasContent = true; }
 
80
        void leftIndent() {}
 
81
        void leftIndent(const float /* offset */) {}
 
82
        void leftRightIndent() {}
 
83
        void leftRightIndent(const float /* offset */) {}
78
84
 
79
85
protected:
80
86
        void _handleSubDocument(const WPXSubDocument *subDocument, const bool isHeaderFooter, WPXTableList tableList, int nextTableIndice = 0);