Home
last modified time | relevance | path

Searched refs:attributeIsAnInteger (Results 1 – 8 of 8) sorted by relevance

/dports/cad/qelectrotech/qet-0.7.0/sources/factory/
H A Delementpicturefactory.cpp165 if (!QET::attributeIsAnInteger(dom, QString("width"), &w) ||\ in build()
166 !QET::attributeIsAnInteger(dom, QString("height"), &h) ||\ in build()
167 !QET::attributeIsAnInteger(dom, QString("hotspot_x"), &hot_x) ||\ in build()
168 !QET::attributeIsAnInteger(dom, QString("hotspot_y"), &hot_y)) in build()
/dports/cad/qelectrotech/qet-0.7.0/sources/qetgraphicsitem/
H A Delement.cpp379 !QET::attributeIsAnInteger(xml_def_elmt, QString("width"), &w) ||\ in buildFromXml()
380 !QET::attributeIsAnInteger(xml_def_elmt, QString("height"), &h) ||\ in buildFromXml()
381 !QET::attributeIsAnInteger(xml_def_elmt, QString("hotspot_x"), &hot_x) ||\ in buildFromXml()
382 !QET::attributeIsAnInteger(xml_def_elmt, QString("hotspot_y"), &hot_y) in buildFromXml()
507 !QET::attributeIsAnInteger(dom_element, "size", &size) in parseInput()
/dports/cad/qelectrotech/qet-0.7.0/sources/titleblock/
H A Dtemplateview.cpp210 if (!QET::attributeIsAnInteger(e, "row", &row_num) || row_num < 0) { in pastedCells()
213 if (!QET::attributeIsAnInteger(e, "col", &col_num) || col_num < 0) { in pastedCells()
220 if (QET::attributeIsAnInteger(e, "rowspan", &row_span) && row_span > 0) { in pastedCells()
224 if (QET::attributeIsAnInteger(e, "colspan", &col_span) && col_span > 0) { in pastedCells()
/dports/cad/qelectrotech/qet-0.7.0/sources/
H A Dqet.h161 bool attributeIsAnInteger(const QDomElement &, const QString& , int * = nullptr);
H A Dtitleblockcell.cpp195 if (QET::attributeIsAnInteger(cell_element, "fontsize", &fontsize)) { in loadContentFromXml()
H A Dtitleblocktemplate.cpp534 …if (!QET::attributeIsAnInteger(xml_element, "row", &row_num) || row_num < 0 || row_num >= row_coun… in checkCell()
537 …if (!QET::attributeIsAnInteger(xml_element, "col", &col_num) || col_num < 0 || col_num >= col_coun… in checkCell()
554 if (QET::attributeIsAnInteger(xml_element, "rowspan", &row_span) && row_span > 0) { in checkCell()
558 if (QET::attributeIsAnInteger(xml_element, "colspan", &col_span) && col_span > 0) { in checkCell()
H A Dqet.cpp200 bool QET::attributeIsAnInteger(const QDomElement &e, const QString& nom_attribut, int *entier) { in attributeIsAnInteger() function in QET
H A Dqetproject.cpp1356 …if (!QET::attributeIsAnInteger(diagram_xml_element, "order", &diagram_order)) diagram_order = 5000… in readDiagramsXml()