summaryrefslogtreecommitdiffstats
path: root/doc/html/chart-setdataform-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/chart-setdataform-cpp.html')
-rw-r--r--doc/html/chart-setdataform-cpp.html28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/html/chart-setdataform-cpp.html b/doc/html/chart-setdataform-cpp.html
index 186ae6329..c181d80ee 100644
--- a/doc/html/chart-setdataform-cpp.html
+++ b/doc/html/chart-setdataform-cpp.html
@@ -36,10 +36,10 @@ body { background: #ffffff; color: black; }
#include "chartform.h"
#include &lt;<a href="tqcolordialog-h.html">tqcolordialog.h</a>&gt;
-#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
+#include &lt;<a href="tqcombobox-h.html">tqcombobox.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
#include &lt;<a href="tqpixmap-h.html">tqpixmap.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="qtable-h.html">ntqtable.h</a>&gt;
#include "images/pattern01.xpm"
@@ -63,7 +63,7 @@ const int MAX_PATTERNS = 14;
<a name="f178"></a>SetDataForm::SetDataForm( ElementVector *elements, int decimalPlaces,
<a href="tqwidget.html">TQWidget</a>* parent, const char* name,
bool modal, WFlags f )
- : <a href="ntqdialog.html">TQDialog</a>( parent, name, modal, f )
+ : <a href="tqdialog.html">TQDialog</a>( parent, name, modal, f )
{
m_elements = elements;
@@ -95,7 +95,7 @@ const int MAX_PATTERNS = 14;
buttonBox = new <a href="qhboxlayout.html">TQHBoxLayout</a>( 0, 0, 6, "button box layout" );
- colorPushButton = new <a href="ntqpushbutton.html">TQPushButton</a>( this, "color button" );
+ colorPushButton = new <a href="tqpushbutton.html">TQPushButton</a>( this, "color button" );
colorPushButton-&gt;<a href="ntqbutton.html#setText">setText</a>( "&amp;Color..." );
colorPushButton-&gt;<a href="tqwidget.html#setEnabled">setEnabled</a>( FALSE );
buttonBox-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( colorPushButton );
@@ -104,12 +104,12 @@ const int MAX_PATTERNS = 14;
TQSizePolicy::Minimum );
buttonBox-&gt;<a href="qboxlayout.html#addItem">addItem</a>( spacer );
- okPushButton = new <a href="ntqpushbutton.html">TQPushButton</a>( this, "ok button" );
+ okPushButton = new <a href="tqpushbutton.html">TQPushButton</a>( this, "ok button" );
okPushButton-&gt;<a href="ntqbutton.html#setText">setText</a>( "OK" );
- okPushButton-&gt;<a href="ntqpushbutton.html#setDefault">setDefault</a>( TRUE );
+ okPushButton-&gt;<a href="tqpushbutton.html#setDefault">setDefault</a>( TRUE );
buttonBox-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( okPushButton );
- cancelPushButton = new <a href="ntqpushbutton.html">TQPushButton</a>( this, "cancel button" );
+ cancelPushButton = new <a href="tqpushbutton.html">TQPushButton</a>( this, "cancel button" );
cancelPushButton-&gt;<a href="ntqbutton.html#setText">setText</a>( "Cancel" );
cancelPushButton-&gt;<a href="ntqbutton.html#setAccel">setAccel</a>( Key_Escape );
buttonBox-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( cancelPushButton );
@@ -123,8 +123,8 @@ const int MAX_PATTERNS = 14;
<a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#valueChanged">valueChanged</a>(int,int) ),
this, TQ_SLOT( valueChanged(int,int) ) );
<a href="tqobject.html#connect">connect</a>( colorPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( setColor() ) );
- <a href="tqobject.html#connect">connect</a>( okPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="ntqdialog.html#accept">accept</a>() ) );
- <a href="tqobject.html#connect">connect</a>( cancelPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="ntqdialog.html#reject">reject</a>() ) );
+ <a href="tqobject.html#connect">connect</a>( okPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="tqdialog.html#accept">accept</a>() ) );
+ <a href="tqobject.html#connect">connect</a>( cancelPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="tqdialog.html#reject">reject</a>() ) );
TQPixmap patterns[MAX_PATTERNS];
patterns[0] = TQPixmap( pattern01 );
@@ -159,10 +159,10 @@ const int MAX_PATTERNS = 14;
table-&gt;<a href="ntqtable.html#setPixmap">setPixmap</a>( i, 1, pix );
table-&gt;<a href="ntqtable.html#setText">setText</a>( i, 1, color.<a href="tqcolor.html#name">name</a>() );
- <a href="ntqcombobox.html">TQComboBox</a> *combobox = new <a href="ntqcombobox.html">TQComboBox</a>;
+ <a href="tqcombobox.html">TQComboBox</a> *combobox = new <a href="tqcombobox.html">TQComboBox</a>;
for ( int j = 0; j &lt; MAX_PATTERNS; ++j )
- combobox-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>( patterns[j] );
- combobox-&gt;<a href="ntqcombobox.html#setCurrentItem">setCurrentItem</a>( element.valuePattern() - 1 );
+ combobox-&gt;<a href="tqcombobox.html#insertItem">insertItem</a>( patterns[j] );
+ combobox-&gt;<a href="tqcombobox.html#setCurrentItem">setCurrentItem</a>( element.valuePattern() - 1 );
table-&gt;<a href="ntqtable.html#setCellWidget">setCellWidget</a>( i, 2, combobox );
table-&gt;<a href="ntqtable.html#setText">setText</a>( i, 3, element.label() );
@@ -221,7 +221,7 @@ void SetDataForm::setColor( int row, int col )
}
-void SetDataForm::<a href="ntqdialog.html#accept">accept</a>()
+void SetDataForm::<a href="tqdialog.html#accept">accept</a>()
{
bool ok;
for ( int i = 0; i &lt; ChartForm::MAX_ELEMENTS; ++i ) {
@@ -238,7 +238,7 @@ void SetDataForm::<a href="ntqdialog.html#accept">accept</a>()
element.setLabelColor( TQColor( table-&gt;<a href="ntqtable.html#text">text</a>( i, 4 ) ) );
}
- TQDialog::<a href="ntqdialog.html#accept">accept</a>();
+ TQDialog::<a href="tqdialog.html#accept">accept</a>();
}
</pre><!-- eof -->
<p><address><hr><div align=center>