diff options
author | Michele Calgaro <[email protected]> | 2024-07-15 19:08:22 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-07-18 09:31:41 +0900 |
commit | a30f5359f03c3017fa19a6770fab32d25d22cb87 (patch) | |
tree | cb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/chart-element-h.html | |
parent | 25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff) | |
download | tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip |
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/chart-element-h.html')
-rw-r--r-- | doc/html/chart-element-h.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/chart-element-h.html b/doc/html/chart-element-h.html index 70497a784..bb5bebe8e 100644 --- a/doc/html/chart-element-h.html +++ b/doc/html/chart-element-h.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } <pre>#ifndef ELEMENT_H #define ELEMENT_H -#include <<a href="qcolor-h.html">ntqcolor.h</a>> +#include <<a href="tqcolor-h.html">tqcolor.h</a>> #include <<a href="qnamespace-h.html">ntqnamespace.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="tqvaluevector-h.html">tqvaluevector.h</a>> @@ -60,7 +60,7 @@ public: Element( double value = INVALID, TQColor valueColor = TQt::gray, int valuePattern = TQt::SolidPattern, const <a href="tqstring.html">TQString</a>& label = TQString::null, - <a href="ntqcolor.html">TQColor</a> labelColor = TQt::black ) { + <a href="tqcolor.html">TQColor</a> labelColor = TQt::black ) { init( value, valueColor, valuePattern, label, labelColor ); for ( int i = 0; i < MAX_PROPOINTS * 2; ++i ) m_propoints[i] = NO_PROPORTION; @@ -70,24 +70,24 @@ public: bool isValid() const { return m_value > EPSILON; } double value() const { return m_value; } - <a href="ntqcolor.html">TQColor</a> valueColor() const { return m_valueColor; } + <a href="tqcolor.html">TQColor</a> valueColor() const { return m_valueColor; } int valuePattern() const { return m_valuePattern; } <a href="tqstring.html">TQString</a> label() const { return m_label; } - <a href="ntqcolor.html">TQColor</a> labelColor() const { return m_labelColor; } + <a href="tqcolor.html">TQColor</a> labelColor() const { return m_labelColor; } double proX( int index ) const; double proY( int index ) const; void set( double value = INVALID, TQColor valueColor = TQt::gray, int valuePattern = TQt::SolidPattern, const <a href="tqstring.html">TQString</a>& label = TQString::null, - <a href="ntqcolor.html">TQColor</a> labelColor = TQt::black ) { + <a href="tqcolor.html">TQColor</a> labelColor = TQt::black ) { init( value, valueColor, valuePattern, label, labelColor ); } void setValue( double value ) { m_value = value; } - void setValueColor( <a href="ntqcolor.html">TQColor</a> valueColor ) { m_valueColor = valueColor; } + void setValueColor( <a href="tqcolor.html">TQColor</a> valueColor ) { m_valueColor = valueColor; } void setValuePattern( int valuePattern ); void setLabel( const <a href="tqstring.html">TQString</a>& label ) { m_label = label; } - void setLabelColor( <a href="ntqcolor.html">TQColor</a> labelColor ) { m_labelColor = labelColor; } + void setLabelColor( <a href="tqcolor.html">TQColor</a> labelColor ) { m_labelColor = labelColor; } void setProX( int index, double value ); void setProY( int index, double value ); @@ -104,10 +104,10 @@ private: const <a href="tqstring.html">TQString</a>& label, TQColor labelColor ); double m_value; - <a href="ntqcolor.html">TQColor</a> m_valueColor; + <a href="tqcolor.html">TQColor</a> m_valueColor; int m_valuePattern; <a href="tqstring.html">TQString</a> m_label; - <a href="ntqcolor.html">TQColor</a> m_labelColor; + <a href="tqcolor.html">TQColor</a> m_labelColor; double m_propoints[2 * MAX_PROPOINTS]; }; |