Home
last modified time | relevance | path

Searched refs:m_lineColor (Results 1 – 25 of 106) sorted by relevance

12345

/dports/graphics/engauge-digitizer/engauge-digitizer-12.2.2/src/Document/
H A DDocumentModelSegments.cpp26 m_lineColor (DEFAULT_LINE_COLOR) in DocumentModelSegments()
35 m_lineColor (document.modelSegments().lineColor()) in DocumentModelSegments()
44 m_lineColor (other.lineColor()) in DocumentModelSegments()
54 m_lineColor = other.lineColor(); in operator =()
66 return m_lineColor; in lineColor()
116 str << indentation << "lineColor=" << colorPaletteToString (m_lineColor) << "\n"; in printStream()
130 writer.writeAttribute(DOCUMENT_SERIALIZE_SEGMENTS_LINE_COLOR, QString::number (m_lineColor)); in saveXml()
131 ….writeAttribute(DOCUMENT_SERIALIZE_SEGMENTS_LINE_COLOR_STRING, colorPaletteToString (m_lineColor)); in saveXml()
142 m_lineColor = lineColor; in setLineColor()
H A DDocumentModelAxesChecker.cpp26 m_lineColor (DEFAULT_LINE_COLOR) in DocumentModelAxesChecker()
33 m_lineColor (document.modelAxesChecker().lineColor()) in DocumentModelAxesChecker()
40 m_lineColor (other.lineColor()) in DocumentModelAxesChecker()
48 m_lineColor = other.lineColor(); in operator =()
65 return m_lineColor; in lineColor()
109 str << indentation << "color=" << colorPaletteToString (m_lineColor) << "\n"; in printStream()
119 writer.writeAttribute(DOCUMENT_SERIALIZE_AXES_CHECKER_LINE_COLOR, QString::number (m_lineColor)); in saveXml()
135 m_lineColor = lineColor; in setLineColor()
H A DDocumentModelAxesChecker.h63 ColorPalette m_lineColor; variable
/dports/cad/veroroute/VeroRoute/Src/
H A DShape.h38 , m_lineColor(0x000000) in m_type()
49 , m_lineColor(0x000000) in m_type()
63 m_lineColor = o.m_lineColor;
75 && m_lineColor == o.m_lineColor
86 if ( m_lineColor != o.m_lineColor ) return m_lineColor < o.m_lineColor;
107 void SetLineColor(const MyRGB& r) { m_lineColor = r; } in SetLineColor()
142 const MyRGB& GetLineColor() const { return m_lineColor; } in GetLineColor()
188 m_lineColor.Load(inStream); // Added in VRT_VERSION_29 in Load()
196 m_lineColor.SetRGB(0,0,0); in Load()
212 m_lineColor.Save(outStream); // Added in VRT_VERSION_29 in Save()
[all …]
/dports/astro/marble/marble-21.12.3/src/lib/marble/declarative/
H A DGeoPolyline.cpp29 m_lineColor(Qt::black), in GeoPolyline()
136 return m_lineColor; in lineColor()
146 if (m_lineColor == lineColor) in setLineColor()
149 m_lineColor = lineColor; in setLineColor()
150 emit lineColorChanged(m_lineColor); in setLineColor()
221 material->setColor(m_lineColor); in updatePaintNode()
/dports/astro/celestia-gtk/celestia-1.6.1/src/celengine/
H A Dskygrid.h59 return m_lineColor; in lineColor()
64 m_lineColor = lineColor; in setLineColor()
109 Color m_lineColor; variable
/dports/astro/celestia/celestia-1.6.1/src/celengine/
H A Dskygrid.h59 return m_lineColor; in lineColor()
64 m_lineColor = lineColor; in setLineColor()
109 Color m_lineColor; variable
/dports/textproc/kreport/kreport-3.2.0/src/items/check/
H A DKReportItemCheck.cpp61 m_lineColor->setValue(ls.color()); in KReportItemCheckBox()
88 m_lineColor = new KProperty("line-color", QColor(Qt::black), tr("Line Color")); in createProperties()
96 propertySet()->addProperty(m_lineColor); in createProperties()
104 ls.setColor(m_lineColor->value().value<QColor>()); in lineStyle()
H A DKReportScriptCheck.cpp68 return m_check->m_lineColor->value().value<QColor>(); in lineColor()
72 m_check->m_lineColor->setValue(c); in setLineColor()
/dports/textproc/kreport/kreport-3.2.0/src/common/
H A DKReportItemLine.cpp65 m_lineColor->setValue(ls.color()); in KReportItemLine()
85 m_lineColor = new KProperty("line-color", QColor(Qt::black), tr("Line Color")); in createProperties()
96 propertySet()->addProperty(m_lineColor); in createProperties()
104 ls.setColor(m_lineColor->value().value<QColor>()); in lineStyle()
/dports/graphics/kf5-kquickcharts/kquickcharts-5.89.0/src/scenegraph/
H A DLineChartNode.cpp60 if (m_lineColor == color) { in setLineColor()
64 m_lineColor = color; in setLineColor()
110 segment->setLineColor(m_lineColor); in updatePoints()
H A DLineSegmentNode.cpp183 m_lineColor = color; in setLineColor()
209 …updateLineGeometry(m_geometry, QRectF{}, QRectF{}, QVector<QVector2D>{}, m_lineColor, m_fillColor,… in update()
251 …updateLineGeometry(m_geometry, m_rect, {0.0, 0.0, m_xAspect, 1.0}, points, m_lineColor, m_fillColo… in update()
H A DLineChartNode.h43 QColor m_lineColor; variable
/dports/textproc/kreport/kreport-3.2.0/src/items/label/
H A DKReportItemLabel.cpp66 m_lineColor->setValue(ls.color()); in KReportItemLabel()
116 m_lineColor = new KProperty("line-color", QColor(Qt::black), tr("Line Color")); in createProperties()
127 propertySet()->addProperty(m_lineColor); in createProperties()
168 ls.setColor(m_lineColor->value().value<QColor>()); in lineStyle()
H A DKReportScriptLabel.cpp140 return m_label->m_lineColor->value().value<QColor>(); in lineColor()
144 m_label->m_lineColor->setValue(c); in setLineColor()
/dports/textproc/kreport/kreport-3.2.0/src/renderer/scripting/
H A DKReportScriptLine.cpp37 return m_line->m_lineColor->value().value<QColor>(); in lineColor()
42 m_line->m_lineColor->setValue(color); in setLineColor()
/dports/textproc/libwps/libwps-0.4.12/src/lib/
H A DWPSGraphicStyle.cpp213 list.insert("svg:stroke-color", m_lineColor.str().c_str()); in addTo()
431 if (m_lineColor < a.m_lineColor) return -1; in cmp()
432 if (m_lineColor > a.m_lineColor) return 1; in cmp()
551 if (!st.m_lineColor.isBlack()) in operator <<()
552 o << "color=" << st.m_lineColor << ","; in operator <<()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/Cartoon/src/
H A Dcartoonelement.cpp39 QRgb m_lineColor {qRgb(0, 0, 0)}; member in CartoonElementPrivate
99 return this->d->m_lineColor; in lineColor()
369 this->d->m_lineColor); in iVideoStream()
425 if (this->d->m_lineColor == lineColor) in setLineColor()
428 this->d->m_lineColor = lineColor; in setLineColor()
/dports/textproc/kreport/kreport-3.2.0/src/items/field/
H A DKReportItemField.cpp74 m_lineColor->setValue(ls.color()); in KReportItemField()
117 m_lineColor = new KProperty("line-color", QColor(Qt::black), tr("Line Color")); in createProperties()
139 propertySet()->addProperty(m_lineColor); in createProperties()
191 ls.setColor(m_lineColor->value().value<QColor>()); in lineStyle()
H A DKReportScriptField.cpp141 return m_field->m_lineColor->value().value<QColor>(); in lineColor()
145 m_field->m_lineColor->setValue(c); in setLineColor()
/dports/textproc/kreport/kreport-3.2.0/src/items/text/
H A DKReportItemText.cpp72 m_lineColor->setValue(ls.color()); in KReportItemText()
134 m_lineColor = new KProperty("line-color", QColor(Qt::black), tr("Line Color")); in createProperties()
149 propertySet()->addProperty(m_lineColor); in createProperties()
180 ls.setColor(m_lineColor->value().value<QColor>()); in lineStyle()
H A DKReportScriptText.cpp144 return m_text->m_lineColor->value().value<QColor>(); in lineColor()
148 m_text->m_lineColor->setValue(QColor(c)); in setLineColor()
/dports/textproc/libmwaw03/libmwaw-0.3.20/src/lib/
H A DMWAWGraphicStyle.cxx334 list.insert("svg:stroke-color", m_lineColor.str().c_str()); in addTo()
488 if (m_lineColor < a.m_lineColor) return -1; in cmp()
489 if (m_lineColor > a.m_lineColor) return 1; in cmp()
592 if (!st.m_lineColor.isBlack()) in operator <<()
593 o << "color=" << st.m_lineColor << ","; in operator <<()
/dports/editors/calligraplan/calligraplan-3.3.0/src/libs/ui/reports/items/text/
H A DPlanReportItemText.cpp81 m_lineColor->setValue(ls.color()); in PlanReportItemText()
148 m_lineColor = new KProperty("line-color", QColor(Qt::black), tr("Line Color")); in createProperties()
165 m_set->addProperty(m_lineColor); in createProperties()
201 ls.setColor(m_lineColor->value().value<QColor>()); in lineStyle()
H A DPlanReportScriptText.cpp142 return m_text->m_lineColor->value().value<QColor>(); in lineColor()
146 m_text->m_lineColor->setValue(QColor(c)); in setLineColor()

12345