summaryrefslogtreecommitdiffstats
path: root/doc/html/tqfiledialog.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/tqfiledialog.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/tqfiledialog.html')
-rw-r--r--doc/html/tqfiledialog.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/tqfiledialog.html b/doc/html/tqfiledialog.html
index 2a575c942..29e8d2f48 100644
--- a/doc/html/tqfiledialog.html
+++ b/doc/html/tqfiledialog.html
@@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQFileDialog class provides dialogs that allow users to select files or directories.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqfiledialog-h.html">tqfiledialog.h</a>&gt;</tt>
-<p>Inherits <a href="ntqdialog.html">TQDialog</a>.
+<p>Inherits <a href="tqdialog.html">TQDialog</a>.
<p><a href="tqfiledialog-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -189,7 +189,7 @@ modification date, etc. Set the mode with <a href="#setViewMode">setViewMode</a>
own file dialog is <a href="#selectedFile">selectedFile</a>().
<p> <pre>
<a href="tqstring.html">TQString</a> fileName;
- if ( fd-&gt;exec() == TQDialog::<a href="ntqdialog.html#DialogCode-enum">Accepted</a> )
+ if ( fd-&gt;exec() == TQDialog::<a href="tqdialog.html#DialogCode-enum">Accepted</a> )
fileName = fd-&gt;selectedFile();
</pre>
@@ -243,7 +243,7 @@ pixmap. Here's how to make a file dialog use a preview widget:
fd-&gt;<a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( TRUE );
fd-&gt;<a href="#setContentsPreview">setContentsPreview</a>( p, p );
fd-&gt;<a href="#setPreviewMode">setPreviewMode</a>( TQFileDialog::<a href="#PreviewMode-enum">Contents</a> );
- fd-&gt;<a href="ntqdialog.html#show">show</a>();
+ fd-&gt;<a href="tqdialog.html#show">show</a>();
</pre>
<p> The first line creates an instance of our preview widget. We then
@@ -325,7 +325,7 @@ current filter.
<p> <pre>
TQFileDialog* fd = new TQFileDialog( this );
fd-&gt;<a href="#addFilter">addFilter</a>( "Images (*.png *.jpg *.xpm)" );
- fd-&gt;<a href="ntqdialog.html#show">show</a>();
+ fd-&gt;<a href="tqdialog.html#show">show</a>();
</pre>
<p> In the above example, a file dialog is created, and the file filter "Images
@@ -351,7 +351,7 @@ this row. If <em>separator</em> is TRUE, a small space is inserted between the
last button of the row and the new button <em>b</em>.
<p> <p>See also <a href="#addWidgets">addWidgets</a>(), <a href="#addLeftWidget">addLeftWidget</a>(), and <a href="#addRightWidget">addRightWidget</a>().
-<h3 class=fn>void <a name="addWidgets"></a>TQFileDialog::addWidgets ( <a href="tqlabel.html">TQLabel</a>&nbsp;*&nbsp;l, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;w, <a href="ntqpushbutton.html">TQPushButton</a>&nbsp;*&nbsp;b )<tt> [protected]</tt>
+<h3 class=fn>void <a name="addWidgets"></a>TQFileDialog::addWidgets ( <a href="tqlabel.html">TQLabel</a>&nbsp;*&nbsp;l, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;w, <a href="tqpushbutton.html">TQPushButton</a>&nbsp;*&nbsp;b )<tt> [protected]</tt>
</h3>
Adds the specified widgets to the bottom of the file dialog. The
label <em>l</em> is placed underneath the "file name" and the "file types"
@@ -362,8 +362,8 @@ The button <em>b</em> is placed underneath the Cancel pushbutton.
<a href="#TQFileDialog">TQFileDialog</a>( parent, name )
{
<a href="tqlabel.html">TQLabel</a>* label = new <a href="tqlabel.html">TQLabel</a>( "Added widgets", this );
- <a href="ntqlineedit.html">TQLineEdit</a>* lineedit = new <a href="ntqlineedit.html">TQLineEdit</a>( this );
- <a href="ntqpushbutton.html">TQPushButton</a>* pushbutton = new <a href="ntqpushbutton.html">TQPushButton</a>( this );
+ <a href="tqlineedit.html">TQLineEdit</a>* lineedit = new <a href="tqlineedit.html">TQLineEdit</a>( this );
+ <a href="tqpushbutton.html">TQPushButton</a>* pushbutton = new <a href="tqpushbutton.html">TQPushButton</a>( this );
<a href="#addWidgets">addWidgets</a>( label, lineedit, pushbutton );
}
@@ -652,7 +652,7 @@ avoid memory leaks.
fd-&gt;<a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( TRUE );
fd-&gt;<a href="#setContentsPreview">setContentsPreview</a>( p, p );
fd-&gt;<a href="#setPreviewMode">setPreviewMode</a>( TQFileDialog::<a href="#PreviewMode-enum">Contents</a> );
- fd-&gt;<a href="ntqdialog.html#show">show</a>();
+ fd-&gt;<a href="tqdialog.html#show">show</a>();
}
</pre>
@@ -698,7 +698,7 @@ of filters must be separated by <tt>;;</tt> (<em>two</em> semi-colons).
"Any files (*)");
TQFileDialog fd = new TQFileDialog( this );
fd-&gt;<a href="#setFilters">setFilters</a>( types );
- fd-&gt;<a href="ntqdialog.html#show">show</a>();
+ fd-&gt;<a href="tqdialog.html#show">show</a>();
</pre>
<p>
@@ -755,7 +755,7 @@ avoid memory leaks.
fd-&gt;<a href="#setInfoPreviewEnabled">setInfoPreviewEnabled</a>( TRUE );
fd-&gt;<a href="#setInfoPreview">setInfoPreview</a>( p, p );
fd-&gt;<a href="#setPreviewMode">setPreviewMode</a>( TQFileDialog::<a href="#PreviewMode-enum">Info</a> );
- fd-&gt;<a href="ntqdialog.html#show">show</a>();
+ fd-&gt;<a href="tqdialog.html#show">show</a>();
}
</pre>
@@ -810,7 +810,7 @@ See the <a href="tqfiledialog.html#showHiddenFiles-prop">"showHiddenFiles"</a> p
Returns the URL of the current working directory in the file dialog.
<p> <p>See also <a href="#setUrl">setUrl</a>().
-<p>Example: <a href="ntqdialog.html#x2129">network/networkprotocol/view.cpp</a>.
+<p>Example: <a href="tqdialog.html#x2129">network/networkprotocol/view.cpp</a>.
<h3 class=fn><a href="tqfiledialog.html#ViewMode-enum">ViewMode</a> <a name="viewMode"></a>TQFileDialog::viewMode () const
</h3><p>Returns the file dialog's view mode.
See the <a href="tqfiledialog.html#viewMode-prop">"viewMode"</a> property for details.