diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-20 20:15:52 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-21 23:04:19 +0900 |
commit | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch) | |
tree | 5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/chart-setdataform-cpp.html | |
parent | 14c414378d96f7463b989384f4a0e5dd76632b6d (diff) | |
download | tqt-1e9fa8e0.tar.gz tqt-1e9fa8e0.zip |
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/chart-setdataform-cpp.html')
-rw-r--r-- | doc/html/chart-setdataform-cpp.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/chart-setdataform-cpp.html b/doc/html/chart-setdataform-cpp.html index 737eb5574..186ae6329 100644 --- a/doc/html/chart-setdataform-cpp.html +++ b/doc/html/chart-setdataform-cpp.html @@ -38,7 +38,7 @@ body { background: #ffffff; color: black; } #include <<a href="tqcolordialog-h.html">tqcolordialog.h</a>> #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qpixmap-h.html">ntqpixmap.h</a>> +#include <<a href="tqpixmap-h.html">tqpixmap.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="qtable-h.html">ntqtable.h</a>> @@ -116,7 +116,7 @@ const int MAX_PATTERNS = 14; tableButtonBox-><a href="qboxlayout.html#addLayout">addLayout</a>( buttonBox ); - <a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#clicked">clicked</a>(int,int,int,const <a href="ntqpoint.html">TQPoint</a>&) ), + <a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#clicked">clicked</a>(int,int,int,const <a href="tqpoint.html">TQPoint</a>&) ), this, TQ_SLOT( setColor(int,int) ) ); <a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#currentChanged">currentChanged</a>(int,int) ), this, TQ_SLOT( currentChanged(int,int) ) ); @@ -142,8 +142,8 @@ const int MAX_PATTERNS = 14; patterns[12] = TQPixmap( pattern13 ); patterns[13] = TQPixmap( pattern14 ); - <a href="ntqrect.html">TQRect</a> rect = table-><a href="ntqtable.html#cellRect">cellRect</a>( 0, 1 ); - <a href="ntqpixmap.html">TQPixmap</a> pix( rect.<a href="ntqrect.html#width">width</a>(), rect.<a href="ntqrect.html#height">height</a>() ); + <a href="tqrect.html">TQRect</a> rect = table-><a href="ntqtable.html#cellRect">cellRect</a>( 0, 1 ); + <a href="tqpixmap.html">TQPixmap</a> pix( rect.<a href="tqrect.html#width">width</a>(), rect.<a href="tqrect.html#height">height</a>() ); for ( int i = 0; i < ChartForm::MAX_ELEMENTS; ++i ) { Element element = (*m_elements)[i]; @@ -155,7 +155,7 @@ const int MAX_PATTERNS = 14; m_decimalPlaces ) ); <a href="tqcolor.html">TQColor</a> color = element.valueColor(); - pix.<a href="ntqpixmap.html#fill">fill</a>( color ); + pix.<a href="tqpixmap.html#fill">fill</a>( color ); table-><a href="ntqtable.html#setPixmap">setPixmap</a>( i, 1, pix ); table-><a href="ntqtable.html#setText">setText</a>( i, 1, color.<a href="tqcolor.html#name">name</a>() ); @@ -168,7 +168,7 @@ const int MAX_PATTERNS = 14; table-><a href="ntqtable.html#setText">setText</a>( i, 3, element.label() ); color = element.labelColor(); - pix.<a href="ntqpixmap.html#fill">fill</a>( color ); + pix.<a href="tqpixmap.html#fill">fill</a>( color ); table-><a href="ntqtable.html#setPixmap">setPixmap</a>( i, 4, pix ); table-><a href="ntqtable.html#setText">setText</a>( i, 4, color.<a href="tqcolor.html#name">name</a>() ); } @@ -213,8 +213,8 @@ void SetDataForm::setColor( int row, int col ) TQColor( table-><a href="ntqtable.html#text">text</a>( row, col ) ), this, "color dialog" ); if ( color.<a href="tqcolor.html#isValid">isValid</a>() ) { - <a href="ntqpixmap.html">TQPixmap</a> pix = table-><a href="ntqtable.html#pixmap">pixmap</a>( row, col ); - pix.<a href="ntqpixmap.html#fill">fill</a>( color ); + <a href="tqpixmap.html">TQPixmap</a> pix = table-><a href="ntqtable.html#pixmap">pixmap</a>( row, col ); + pix.<a href="tqpixmap.html#fill">fill</a>( color ); table-><a href="ntqtable.html#setPixmap">setPixmap</a>( row, col, pix ); table-><a href="ntqtable.html#setText">setText</a>( row, col, color.<a href="tqcolor.html#name">name</a>() ); } |