Home
last modified time | relevance | path

Searched refs:propList (Results 1 – 7 of 7) sorted by relevance

/AOO41X/main/writerperfect/source/filter/
H A DDocumentCollector.cxx377 void DocumentCollector::openPageSpan(const WPXPropertyList &propList) in openPageSpan() argument
379 PageSpan *pPageSpan = new PageSpan(propList); in openPageSpan()
384 void DocumentCollector::openHeader(const WPXPropertyList &propList) in openHeader() argument
388 if (propList["libwpd:occurence"]->getStr() == "even") in openHeader()
401 void DocumentCollector::openFooter(const WPXPropertyList &propList) in openFooter() argument
405 if (propList["libwpd:occurence"]->getStr() == "even") in openFooter()
418 void DocumentCollector::openSection(const WPXPropertyList &propList, const WPXPropertyListVector &c… in openSection() argument
423 if (propList["fo:margin-left"]) in openSection()
424 fSectionMarginLeft = propList["fo:margin-left"]->getFloat(); in openSection()
425 if (propList["fo:margin-right"]) in openSection()
[all …]
H A DTextRunStyle.cxx57 WPXPropertyList propList; in write() local
58 propList.insert("style:name", msName.cstr()); in write()
59 propList.insert("style:family", "paragraph"); in write()
60 propList.insert("style:parent-style-name", (*mpPropList)["style:parent-style-name"]->getStr()); in write()
62propList.insert("style:master-page-name", (*mpPropList)["style:master-page-name"]->getStr()); in write()
63 pHandler->startElement("style:style", propList); in write()
65 propList.clear(); in write()
70 propList.insert("style:list-style-name", k()->getStr()); in write()
72 propList.insert("fo:margin-left", k()->getStr()); in write()
74 propList.insert("fo:margin-right", k()->getStr()); in write()
[all …]
H A DDocumentCollector.hxx93 virtual void openPageSpan(const WPXPropertyList &propList);
96 virtual void openSection(const WPXPropertyList &propList, const WPXPropertyListVector &columns);
99 virtual void openHeader(const WPXPropertyList &propList);
101 virtual void openFooter(const WPXPropertyList &propList);
104 …virtual void openParagraph(const WPXPropertyList &propList, const WPXPropertyListVector &tabStops);
107 virtual void openSpan(const WPXPropertyList &propList);
115 virtual void defineOrderedListLevel(const WPXPropertyList &propList);
116 virtual void defineUnorderedListLevel(const WPXPropertyList &propList);
117 virtual void openOrderedListLevel(const WPXPropertyList &propList);
118 virtual void openUnorderedListLevel(const WPXPropertyList &propList);
[all …]
H A DPageSpan.cxx92 WPXPropertyList propList; in writePageMaster() local
96 propList.insert("style:name", sPageMasterName); in writePageMaster()
98 pHandler->startElement("style:page-master", propList); in writePageMaster()
134 WPXPropertyList propList; in writeMasterPages() local
135 propList.insert("style:name", sMasterPageName); in writeMasterPages()
136 propList.insert("style:page-master-name", sPageMasterName); in writeMasterPages()
141 propList.insert("style:next-style-name", sNextMasterPageName); in writeMasterPages()
143 pHandler->startElement("style:master-page", propList); in writeMasterPages()
H A DTableStyle.cxx68 TableRowStyle::TableRowStyle(const WPXPropertyList &propList, const char *psName) : in TableRowStyle() argument
70 mPropList(propList) in TableRowStyle()
H A DTextRunStyle.hxx49 …ParagraphStyle(WPXPropertyList *propList, const WPXPropertyListVector &tabStops, const WPXString &…
H A DTableStyle.hxx57 TableRowStyle(const WPXPropertyList &propList, const char *psName);