diff options
Diffstat (limited to 'doc/html/canvas-chart-example.html')
-rw-r--r-- | doc/html/canvas-chart-example.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/canvas-chart-example.html b/doc/html/canvas-chart-example.html index 7e54b4599..19d8b9a16 100644 --- a/doc/html/canvas-chart-example.html +++ b/doc/html/canvas-chart-example.html @@ -67,7 +67,7 @@ SOURCES += element.cpp \ <p> <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>> @@ -92,7 +92,7 @@ public: Element( double value = INVALID, TQColor valueColor = TQt::gray, int valuePattern = TQt::SolidPattern, const <a href="tqstring.html">TQString</a>& label = <a href="tqstring.html#TQString-null">TQString::null</a>, - <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; @@ -102,24 +102,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 ); @@ -136,10 +136,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]; }; @@ -236,7 +236,7 @@ private: ChartType m_chartType; AddValuesType m_addValues; int m_decimalPlaces; - <a href="ntqfont.html">TQFont</a> m_font; + <a href="tqfont.html">TQFont</a> m_font; }; #endif @@ -254,8 +254,8 @@ private: #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> #include <<a href="tqfile-h.html">tqfile.h</a>> #include <<a href="tqfiledialog-h.html">tqfiledialog.h</a>> -#include <<a href="qfont-h.html">ntqfont.h</a>> -#include <<a href="qfontdialog-h.html">ntqfontdialog.h</a>> +#include <<a href="tqfont-h.html">tqfont.h</a>> +#include <<a href="tqfontdialog-h.html">tqfontdialog.h</a>> #include <<a href="tqmenubar-h.html">tqmenubar.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> @@ -713,7 +713,7 @@ void <a name="f609"></a>ChartForm::updateChartType( <a href="tqaction.html">TQAc void <a name="f610"></a>ChartForm::optionsSetFont() { bool ok; -<a name="x2881"></a> <a href="ntqfont.html">TQFont</a> font = TQFontDialog::<a href="ntqfontdialog.html#getFont">getFont</a>( &ok, m_font, this ); +<a name="x2881"></a> <a href="tqfont.html">TQFont</a> font = TQFontDialog::<a href="tqfontdialog.html#getFont">getFont</a>( &ok, m_font, this ); if ( ok ) { m_font = font; drawElements(); |