summaryrefslogtreecommitdiffstats
path: root/doc/html/tabdialog-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/tabdialog-example.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tabdialog-example.html')
-rw-r--r--doc/html/tabdialog-example.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html
index fa33e954..22ef5044 100644
--- a/doc/html/tabdialog-example.html
+++ b/doc/html/tabdialog-example.html
@@ -92,10 +92,10 @@ protected:
#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
-#include &lt;<a href="qlineedit-h.html">ntqlineedit.h</a>&gt;
+#include &lt;<a href="tqlineedit-h.html">tqlineedit.h</a>&gt;
#include &lt;<a href="tqdatetime-h.html">tqdatetime.h</a>&gt;
#include &lt;<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>&gt;
-#include &lt;<a href="qcheckbox-h.html">ntqcheckbox.h</a>&gt;
+#include &lt;<a href="tqcheckbox-h.html">tqcheckbox.h</a>&gt;
#include &lt;<a href="qlistbox-h.html">ntqlistbox.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
@@ -115,7 +115,7 @@ void <a name="f201"></a>TabDialog::setupTab1()
<a name="x53"></a> tab1-&gt;<a href="ntqframe.html#setMargin">setMargin</a>( 5 );
(void)new <a href="tqlabel.html">TQLabel</a>( "Filename:", tab1 );
- <a href="ntqlineedit.html">TQLineEdit</a> *fname = new <a href="ntqlineedit.html">TQLineEdit</a>( filename, tab1 );
+ <a href="tqlineedit.html">TQLineEdit</a> *fname = new <a href="tqlineedit.html">TQLineEdit</a>( filename, tab1 );
fname-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
(void)new <a href="tqlabel.html">TQLabel</a>( "Path:", tab1 );
@@ -145,17 +145,17 @@ void <a name="f202"></a>TabDialog::setupTab2()
<a href="ntqbuttongroup.html">TQButtonGroup</a> *bg = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Permissions", tab2 );
- <a href="ntqcheckbox.html">TQCheckBox</a> *readable = new <a href="ntqcheckbox.html">TQCheckBox</a>( "Readable", bg );
+ <a href="tqcheckbox.html">TQCheckBox</a> *readable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Readable", bg );
if ( fileinfo.isReadable() )
-<a name="x51"></a> readable-&gt;<a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE );
+<a name="x51"></a> readable-&gt;<a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE );
- <a href="ntqcheckbox.html">TQCheckBox</a> *writable = new <a href="ntqcheckbox.html">TQCheckBox</a>( "Writeable", bg );
+ <a href="tqcheckbox.html">TQCheckBox</a> *writable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Writeable", bg );
if ( fileinfo.isWritable() )
- writable-&gt;<a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE );
+ writable-&gt;<a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE );
- <a href="ntqcheckbox.html">TQCheckBox</a> *executable = new <a href="ntqcheckbox.html">TQCheckBox</a>( "Executable", bg );
+ <a href="tqcheckbox.html">TQCheckBox</a> *executable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Executable", bg );
if ( fileinfo.isExecutable() )
- executable-&gt;<a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE );
+ executable-&gt;<a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE );
<a href="ntqbuttongroup.html">TQButtonGroup</a> *bg2 = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 2, TQGroupBox::Horizontal, "Owner", tab2 );
@@ -185,7 +185,7 @@ void <a name="f203"></a>TabDialog::setupTab3()
}
<a name="x56"></a> prgs-&gt;<a href="ntqlistbox.html#setCurrentItem">setCurrentItem</a>( 3 );
- (void)new <a href="ntqcheckbox.html">TQCheckBox</a>( TQString( "Open files with the extension '%1' always with this application" ).arg( fileinfo.extension() ), tab3 );
+ (void)new <a href="tqcheckbox.html">TQCheckBox</a>( TQString( "Open files with the extension '%1' always with this application" ).arg( fileinfo.extension() ), tab3 );
<a href="ntqtabdialog.html#addTab">addTab</a>( tab3, "Applications" );
}
@@ -216,7 +216,7 @@ int main( int argc, char **argv )
<a name="x60"></a> tabdialog.<a href="tqwidget.html#resize">resize</a>( 450, 350 );
tabdialog.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Tabbed Dialog" );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;tabdialog );
-<a name="x61"></a> tabdialog.<a href="ntqdialog.html#show">show</a>();
+<a name="x61"></a> tabdialog.<a href="tqdialog.html#show">show</a>();
return a.<a href="ntqapplication.html#exec">exec</a>();
}