Lines Matching refs:qfixed

64 typedef int qfixed;  typedef
65 #define qt_real_to_fixed(real) qfixed(real * 64)
66 #define qt_int_to_fixed(real) qfixed(int(real) << 6)
71 qfixed x;
72 qfixed y;
77 typedef qint64 qfixed;
78 #define qt_real_to_fixed(real) qfixed(real * double(qint64(1) << 32))
82 qfixed x;
83 qfixed y;
88 typedef int qfixed;
89 #define qt_real_to_fixed(real) qfixed(real * qreal(1 << 16))
93 qfixed x;
94 qfixed y;
99 typedef qreal qfixed;
100 #define qt_real_to_fixed(real) qfixed(real)
104 qfixed x;
105 qfixed y;
120 typedef void (*qStrokerMoveToHook)(qfixed x, qfixed y, void *data);
121 typedef void (*qStrokerLineToHook)(qfixed x, qfixed y, void *data);
122 typedef void (*qStrokerCubicToHook)(qfixed c1x, qfixed c1y,
123 qfixed c2x, qfixed c2y,
124 qfixed ex, qfixed ey,
135 qfixed x;
136 qfixed y;
155 inline void moveTo(qfixed x, qfixed y);
156 inline void lineTo(qfixed x, qfixed y);
157 inline void cubicTo(qfixed x1, qfixed y1, qfixed x2, qfixed y2, qfixed ex, qfixed ey);
174 void setCurveThreshold(qfixed threshold) { m_curveThreshold = threshold; } in setCurveThreshold()
175 qfixed curveThreshold() const { return m_curveThreshold; } in curveThreshold()
178 inline void emitMoveTo(qfixed x, qfixed y);
179 inline void emitLineTo(qfixed x, qfixed y);
180 inline void emitCubicTo(qfixed c1x, qfixed c1y, qfixed c2x, qfixed c2y, qfixed ex, qfixed ey);
186 qfixed m_curveThreshold;
187 qfixed m_dashThreshold;
212 void setStrokeWidth(qfixed width) in setStrokeWidth()
217 qfixed strokeWidth() const { return m_strokeWidth; } in strokeWidth()
227 void setMiterLimit(qfixed length) { m_miterLimit = length; } in setMiterLimit()
228 qfixed miterLimit() const { return m_miterLimit; } in miterLimit()
233 void joinPoints(qfixed x, qfixed y, const QLineF &nextLine, LineJoinMode join);
234 inline void emitMoveTo(qfixed x, qfixed y);
235 inline void emitLineTo(qfixed x, qfixed y);
236 inline void emitCubicTo(qfixed c1x, qfixed c1y, qfixed c2x, qfixed c2y, qfixed ex, qfixed ey);
247 qfixed m_strokeWidth;
248 qfixed m_miterLimit;
253 qfixed m_back1X;
254 qfixed m_back1Y;
256 qfixed m_back2X;
257 qfixed m_back2Y;
270 static QVector<qfixed> patternForStyle(Qt::PenStyle style);
272 void setDashPattern(const QVector<qfixed> &dashPattern) { m_dashPattern = dashPattern; } in setDashPattern()
273 QVector<qfixed> dashPattern() const { return m_dashPattern; } in dashPattern()
288 QVector<qfixed> m_dashPattern;
300 inline void QStrokerOps::emitMoveTo(qfixed x, qfixed y) in emitMoveTo()
306 inline void QStrokerOps::emitLineTo(qfixed x, qfixed y) in emitLineTo()
312 inline void QStrokerOps::emitCubicTo(qfixed c1x, qfixed c1y, qfixed c2x, qfixed c2y, qfixed ex, qfi… in emitCubicTo()
318 inline void QStrokerOps::moveTo(qfixed x, qfixed y) in moveTo()
327 inline void QStrokerOps::lineTo(qfixed x, qfixed y) in lineTo()
333 inline void QStrokerOps::cubicTo(qfixed x1, qfixed y1, qfixed x2, qfixed y2, qfixed ex, qfixed ey) in cubicTo()
346 inline void QStroker::emitMoveTo(qfixed x, qfixed y) in emitMoveTo()
355 inline void QStroker::emitLineTo(qfixed x, qfixed y) in emitLineTo()
364 inline void QStroker::emitCubicTo(qfixed c1x, qfixed c1y, in emitCubicTo()
365 qfixed c2x, qfixed c2y, in emitCubicTo()
366 qfixed ex, qfixed ey) in emitCubicTo()