diff options
Diffstat (limited to 'doc/html/t7-main-cpp.html')
-rw-r--r-- | doc/html/t7-main-cpp.html | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/html/t7-main-cpp.html b/doc/html/t7-main-cpp.html index bd7132d32..83ce9c1eb 100644 --- a/doc/html/t7-main-cpp.html +++ b/doc/html/t7-main-cpp.html @@ -38,39 +38,39 @@ body { background: #ffffff; color: black; } ** ****************************************************************/ -#include <<a href="qapplication-h.html">qapplication.h</a>> -#include <<a href="qpushbutton-h.html">qpushbutton.h</a>> -#include <<a href="qlcdnumber-h.html">qlcdnumber.h</a>> -#include <<a href="qfont-h.html">qfont.h</a>> -#include <<a href="qvbox-h.html">qvbox.h</a>> -#include <<a href="qgrid-h.html">qgrid.h</a>> +#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="qlcdnumber-h.html">ntqlcdnumber.h</a>> +#include <<a href="qfont-h.html">ntqfont.h</a>> +#include <<a href="qvbox-h.html">ntqvbox.h</a>> +#include <<a href="qgrid-h.html">ntqgrid.h</a>> #include "lcdrange.h" -class MyWidget : public <a href="qvbox.html">TQVBox</a> +class MyWidget : public <a href="ntqvbox.html">TQVBox</a> { public: - MyWidget( <a href="qwidget.html">TQWidget</a> *parent=0, const char *name=0 ); + MyWidget( <a href="ntqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); }; -<a name="f29"></a>MyWidget::MyWidget( <a href="qwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="qvbox.html">TQVBox</a>( parent, name ) +<a name="f29"></a>MyWidget::MyWidget( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) + : <a href="ntqvbox.html">TQVBox</a>( parent, name ) { - <a href="qpushbutton.html">TQPushButton</a> *quit = new <a href="qpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); - quit-><a href="qwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); + <a href="ntqpushbutton.html">TQPushButton</a> *quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); + quit-><a href="ntqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); - <a href="qobject.html#connect">connect</a>( quit, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), qApp, SLOT(<a href="qapplication.html#quit">quit</a>()) ); + <a href="ntqobject.html#connect">connect</a>( quit, SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), qApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); - <a href="qgrid.html">TQGrid</a> *grid = new <a href="qgrid.html">TQGrid</a>( 4, this ); + <a href="ntqgrid.html">TQGrid</a> *grid = new <a href="ntqgrid.html">TQGrid</a>( 4, this ); LCDRange *previous = 0; for( int r = 0 ; r < 4 ; r++ ) { for( int c = 0 ; c < 4 ; c++ ) { LCDRange* lr = new LCDRange( grid ); if ( previous ) - <a href="qobject.html#connect">connect</a>( lr, SIGNAL(valueChanged(int)), + <a href="ntqobject.html#connect">connect</a>( lr, SIGNAL(valueChanged(int)), previous, SLOT(setValue(int)) ); previous = lr; } @@ -80,12 +80,12 @@ public: int main( int argc, char **argv ) { - <a href="qapplication.html">TQApplication</a> a( argc, argv ); + <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); MyWidget w; - a.<a href="qapplication.html#setMainWidget">setMainWidget</a>( &w ); - w.<a href="qwidget.html#show">show</a>(); - return a.<a href="qapplication.html#exec">exec</a>(); + a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &w ); + w.<a href="ntqwidget.html#show">show</a>(); + return a.<a href="ntqapplication.html#exec">exec</a>(); } </pre><!-- eof --> <p><address><hr><div align=center> |