Home
last modified time | relevance | path

Searched refs:szListStyle (Results 1 – 10 of 10) sorted by relevance

/dports/editors/abiword/abiword-3.0.5/src/text/ptbl/xp/
H A Dpd_Style.cpp251 const char *szListStyle = NULL; in isList() local
252 if (getPropertyExpand("list-style", szListStyle)) { in isList()
253 return (g_ascii_strcasecmp(szListStyle, "None") != 0); in isList()
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/modules/objects/
H A DKvsObject_listWidget.cpp299 QStringList szListStyle; in KVSO_CLASS_FUNCTION() local
305 KVSO_PARAMETER("style", KVS_PT_STRINGLIST, KVS_PF_OPTIONAL, szListStyle) in KVSO_CLASS_FUNCTION()
316 for(int i = 0; i < szListStyle.length(); i++) in KVSO_CLASS_FUNCTION()
318 szStyle = szListStyle.at(i); in KVSO_CLASS_FUNCTION()
H A DKvsObject_widget.cpp1853 QStringList szListStyle; in KVSO_CLASS_FUNCTION() local
1858 KVSO_PARAMETER("style", KVS_PT_STRINGLIST, KVS_PF_OPTIONAL, szListStyle) in KVSO_CLASS_FUNCTION()
1866 for(int i = 0; i < szListStyle.length(); i++) in KVSO_CLASS_FUNCTION()
1868 szStyle = szListStyle.at(i); in KVSO_CLASS_FUNCTION()
H A DKvsObject_painter.cpp761 QStringList szListStyle; in KVSO_CLASS_FUNCTION() local
766 KVSO_PARAMETER("style", KVS_PT_STRINGLIST, KVS_PF_OPTIONAL, szListStyle) in KVSO_CLASS_FUNCTION()
772 for(int i = 0; i < szListStyle.length(); i++) in KVSO_CLASS_FUNCTION()
774 szStyle = szListStyle.at(i); in KVSO_CLASS_FUNCTION()
/dports/editors/abiword/abiword-3.0.5/plugins/latex/xp/
H A Die_exp_LaTeX.cpp612 const gchar * szIndent, * szLeft, * szListStyle = NULL; in _openParagraph() local
614 pAP->getProperty("list-style", szListStyle); in _openParagraph()
616 if(szListStyle) in _openParagraph()
618 if (0 == strcmp(szListStyle, "Numbered List") ) in _openParagraph()
620 else if (0 == strcmp(szListStyle, "Bullet List") ) in _openParagraph()
/dports/editors/abiword/abiword-3.0.5/src/wp/impexp/xp/
H A Die_exp_HTML_Listener.cpp2238 const gchar* szListStyle = NULL; in _openList() local
2239 pAP->getProperty("list-style", szListStyle); in _openList()
2240 bool isOrdered = szListStyle in _openList()
2241 && (g_ascii_strcasecmp(szListStyle, "Bullet List") != 0); in _openList()
2243 if(!szListStyle) { in _openList()
2257 const IE_Exp_HTML_StyleTree *tree = m_pStyleTree->find(szListStyle); in _openList()
H A Die_imp_RTF.h328 const char ** szListStyle);
374 const char ** szListStyle,
H A Die_exp_RTF.cpp1399 const gchar * szListStyle=NULL; in _write_parafmt() local
1424 szListStyle = PP_evalProperty("list-style",pSpanAP,pBlockAP,pSectionAP,getDoc(),true); in _write_parafmt()
1603 _rtf_chardata(static_cast<const char *>(szListStyle) ,strlen( szListStyle)); in _write_parafmt()
H A Die_imp_RTF.cpp253 const char ** szListStyle) in buildAbiListProperties() argument
352 *szListStyle = al.getXmlList(abiListType); in buildAbiListProperties()
911 const char ** szListStyle, in buildAbiListProperties() argument
915 szListDelim, szListDecimal, szAlign, szIndent, szListStyle); in buildAbiListProperties()
7335 const char * szListStyle = NULL; in ApplyParagraphAttributes() local
7338 &szListStyle, iLevel); in ApplyParagraphAttributes()
7487 propBuffer += UT_std_string_sprintf("list-style:%s;",szListStyle); in ApplyParagraphAttributes()
/dports/editors/abiword/abiword-3.0.5/src/text/fmt/xp/
H A Dfl_BlockLayout.cpp10138 const gchar* szListStyle = 0; in StartList() local
10161 pStyle->getProperty(static_cast<const gchar *>("list-style"), szListStyle); in StartList()
10182 if(!szListStyle) in StartList()
10183 szListStyle = style; in StartList()
10202 szListStyle = "Numbered List"; in StartList()
10242 lType2 = getListTypeFromStyle(szListStyle); in StartList()