diff options
Diffstat (limited to 'doc/html/tqfiledialog.html')
-rw-r--r-- | doc/html/tqfiledialog.html | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/doc/html/tqfiledialog.html b/doc/html/tqfiledialog.html index aa6af785b..54ae4badb 100644 --- a/doc/html/tqfiledialog.html +++ b/doc/html/tqfiledialog.html @@ -37,8 +37,8 @@ body { background: #ffffff; color: black; } <p><a href="tqfiledialog-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> -<li class=fn><a href="#TQFileDialog"><b>TQFileDialog</b></a> ( const TQString & dirName, const TQString & filter = TQString::null, TQWidget * parent = 0, const char * name = 0, bool modal = FALSE )</li> -<li class=fn><a href="#TQFileDialog-2"><b>TQFileDialog</b></a> ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE )</li> +<li class=fn><a href="#TQFileDialog"><b>TQFileDialog</b></a> ( const TQString & dirName, const TQString & filter = TQString::null, TQWidget * parent = 0, const char * name = 0, bool modal = false )</li> +<li class=fn><a href="#TQFileDialog-2"><b>TQFileDialog</b></a> ( TQWidget * parent = 0, const char * name = 0, bool modal = false )</li> <li class=fn><a href="#~TQFileDialog"><b>~TQFileDialog</b></a> ()</li> <li class=fn>TQString <a href="#selectedFile"><b>selectedFile</b></a> () const</li> <li class=fn>TQString <a href="#selectedFilter"><b>selectedFilter</b></a> () const</li> @@ -91,10 +91,10 @@ body { background: #ffffff; color: black; } </ul> <h2>Static Public Members</h2> <ul> -<li class=fn>TQString <a href="#getOpenFileName"><b>getOpenFileName</b></a> ( const TQString & startWith = TQString::null, const TQString & filter = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, TQString * selectedFilter = 0, bool resolveSymlinks = TRUE )</li> -<li class=fn>TQString <a href="#getSaveFileName"><b>getSaveFileName</b></a> ( const TQString & startWith = TQString::null, const TQString & filter = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, TQString * selectedFilter = 0, bool resolveSymlinks = TRUE )</li> -<li class=fn>TQString <a href="#getExistingDirectory"><b>getExistingDirectory</b></a> ( const TQString & dir = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, bool dirOnly = TRUE, bool resolveSymlinks = TRUE )</li> -<li class=fn>TQStringList <a href="#getOpenFileNames"><b>getOpenFileNames</b></a> ( const TQString & filter = TQString::null, const TQString & dir = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, TQString * selectedFilter = 0, bool resolveSymlinks = TRUE )</li> +<li class=fn>TQString <a href="#getOpenFileName"><b>getOpenFileName</b></a> ( const TQString & startWith = TQString::null, const TQString & filter = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, TQString * selectedFilter = 0, bool resolveSymlinks = true )</li> +<li class=fn>TQString <a href="#getSaveFileName"><b>getSaveFileName</b></a> ( const TQString & startWith = TQString::null, const TQString & filter = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, TQString * selectedFilter = 0, bool resolveSymlinks = true )</li> +<li class=fn>TQString <a href="#getExistingDirectory"><b>getExistingDirectory</b></a> ( const TQString & dir = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, bool dirOnly = true, bool resolveSymlinks = true )</li> +<li class=fn>TQStringList <a href="#getOpenFileNames"><b>getOpenFileNames</b></a> ( const TQString & filter = TQString::null, const TQString & dir = TQString::null, TQWidget * parent = 0, const char * name = 0, const TQString & caption = TQString::null, TQString * selectedFilter = 0, bool resolveSymlinks = true )</li> <li class=fn>void <a href="#setIconProvider"><b>setIconProvider</b></a> ( TQFileIconProvider * provider )</li> <li class=fn>TQFileIconProvider * <a href="#iconProvider"><b>iconProvider</b></a> ()</li> </ul> @@ -114,7 +114,7 @@ body { background: #ffffff; color: black; } <h2>Protected Members</h2> <ul> <li class=fn>void <a href="#addWidgets"><b>addWidgets</b></a> ( TQLabel * l, TQWidget * w, TQPushButton * b )</li> -<li class=fn>void <a href="#addToolButton"><b>addToolButton</b></a> ( TQButton * b, bool separator = FALSE )</li> +<li class=fn>void <a href="#addToolButton"><b>addToolButton</b></a> ( TQButton * b, bool separator = false )</li> <li class=fn>void <a href="#addLeftWidget"><b>addLeftWidget</b></a> ( TQWidget * w )</li> <li class=fn>void <a href="#addRightWidget"><b>addRightWidget</b></a> ( TQWidget * w )</li> </ul> @@ -154,7 +154,7 @@ file". If you want to use multiple filters, separate each one with functions. By calling <a href="#setMode">setMode</a>(), you can set what can be returned by the TQFileDialog. <p> <pre> - TQFileDialog* fd = new TQFileDialog( this, "file dialog", TRUE ); + TQFileDialog* fd = new TQFileDialog( this, "file dialog", true ); fd-><a href="#setMode">setMode</a>( TQFileDialog::<a href="#Mode-enum">AnyFile</a> ); </pre> @@ -239,14 +239,14 @@ pixmap. Here's how to make a file dialog use a preview widget: Preview* p = new Preview; TQFileDialog* fd = new TQFileDialog( this ); - fd-><a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( TRUE ); + fd-><a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( true ); fd-><a href="#setContentsPreview">setContentsPreview</a>( p, p ); fd-><a href="#setPreviewMode">setPreviewMode</a>( TQFileDialog::<a href="#PreviewMode-enum">Contents</a> ); fd-><a href="tqdialog.html#show">show</a>(); </pre> <p> The first line creates an instance of our preview widget. We then -create our file dialog and call <a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( TRUE ), +create our file dialog and call <a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( true ), this tell the file dialog to preview the contents of the currently selected file. We then call <a href="#setContentsPreview">setContentsPreview</a>() -- note that we pass the same preview widget twice. Finally, before showing the file @@ -297,20 +297,20 @@ additional information, such as file size and modification date. </ul><p> See <a href="#setViewMode">setViewMode</a>(). <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQFileDialog"></a>TQFileDialog::TQFileDialog ( const <a href="tqstring.html">TQString</a> & dirName, const <a href="tqstring.html">TQString</a> & filter = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, bool modal = FALSE ) +<h3 class=fn><a name="TQFileDialog"></a>TQFileDialog::TQFileDialog ( const <a href="tqstring.html">TQString</a> & dirName, const <a href="tqstring.html">TQString</a> & filter = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, bool modal = false ) </h3> Constructs a file dialog called <em>name</em> with the parent, <em>parent</em>. -If <em>modal</em> is TRUE then the file dialog is modal; otherwise it is +If <em>modal</em> is true then the file dialog is modal; otherwise it is modeless. <p> If <em>dirName</em> is specified then it will be used as the dialog's working directory, i.e. it will be the directory that is shown when the dialog appears. If <em>filter</em> is specified it will be used as the dialog's file filter. <p> -<h3 class=fn><a name="TQFileDialog-2"></a>TQFileDialog::TQFileDialog ( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, bool modal = FALSE ) +<h3 class=fn><a name="TQFileDialog-2"></a>TQFileDialog::TQFileDialog ( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, bool modal = false ) </h3> Constructs a file dialog called <em>name</em>, with the parent, <em>parent</em>. -If <em>modal</em> is TRUE then the file dialog is modal; otherwise it is +If <em>modal</em> is true then the file dialog is modal; otherwise it is modeless. <h3 class=fn><a name="~TQFileDialog"></a>TQFileDialog::~TQFileDialog () @@ -342,11 +342,11 @@ Adds the widget <em>w</em> to the left-hand side of the file dialog. Adds the widget <em>w</em> to the right-hand side of the file dialog. <p> <p>See also <a href="#addLeftWidget">addLeftWidget</a>(), <a href="#addWidgets">addWidgets</a>(), and <a href="#addToolButton">addToolButton</a>(). -<h3 class=fn>void <a name="addToolButton"></a>TQFileDialog::addToolButton ( <a href="tqbutton.html">TQButton</a> * b, bool separator = FALSE )<tt> [protected]</tt> +<h3 class=fn>void <a name="addToolButton"></a>TQFileDialog::addToolButton ( <a href="tqbutton.html">TQButton</a> * b, bool separator = false )<tt> [protected]</tt> </h3> Adds the tool button <em>b</em> to the row of tool buttons at the top of the file dialog. The button is appended to the right of -this row. If <em>separator</em> is TRUE, a small space is inserted between the +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>(). @@ -415,7 +415,7 @@ it the current file. <p> This signal is emitted when the user selects a filter. <p> <p>See also <a href="#selectedFilter-prop">selectedFilter</a>. -<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getExistingDirectory"></a>TQFileDialog::getExistingDirectory ( const <a href="tqstring.html">TQString</a> & dir = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, bool dirOnly = TRUE, bool resolveSymlinks = TRUE )<tt> [static]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getExistingDirectory"></a>TQFileDialog::getExistingDirectory ( const <a href="tqstring.html">TQString</a> & dir = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, bool dirOnly = true, bool resolveSymlinks = true )<tt> [static]</tt> </h3> This is a convenience static function that will return an existing directory selected by the user. @@ -425,7 +425,7 @@ selected by the user. this, "get existing directory", "Choose a directory", - TRUE ); + true ); </pre> <p> This function creates a modal file dialog called <em>name</em>, with @@ -436,12 +436,12 @@ set to <em>caption</em>. Either of these may be <a href="tqstring.html#TQString- the current directory and a default caption will be used respectively. <p> Note on Windows that if <em>dir</em> is TQString::null then the dialog's working directory will be set to the user's My Documents directory. -<p> If <em>dirOnly</em> is TRUE, then only directories will be shown in +<p> If <em>dirOnly</em> is true, then only directories will be shown in the file dialog; otherwise both directories and files will be shown. <p> Under Unix/X11, the normal behavior of the file dialog is to resolve and follow symlinks. For example, if /usr/tmp is a symlink to /var/tmp, the file dialog will change to /var/tmp after entering /usr/tmp. -If <em>resolveSymlinks</em> is FALSE, the file dialog will treat +If <em>resolveSymlinks</em> is false, the file dialog will treat symlinks as regular directories. <p> Under Windows and Mac OS X, this static function will use the native file dialog and not a TQFileDialog, unless the style of the application @@ -451,7 +451,7 @@ TQTimers and if parent is not 0 then it will position the dialog just under the parent's titlebar). <p> <p>See also <a href="#getOpenFileName">getOpenFileName</a>(), <a href="#getOpenFileNames">getOpenFileNames</a>(), and <a href="#getSaveFileName">getSaveFileName</a>(). -<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getOpenFileName"></a>TQFileDialog::getOpenFileName ( const <a href="tqstring.html">TQString</a> & startWith = TQString::null, const <a href="tqstring.html">TQString</a> & filter = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, <a href="tqstring.html">TQString</a> * selectedFilter = 0, bool resolveSymlinks = TRUE )<tt> [static]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getOpenFileName"></a>TQFileDialog::getOpenFileName ( const <a href="tqstring.html">TQString</a> & startWith = TQString::null, const <a href="tqstring.html">TQString</a> & filter = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, <a href="tqstring.html">TQString</a> * selectedFilter = 0, bool resolveSymlinks = true )<tt> [static]</tt> </h3> This is a convenience static function that returns an existing file selected by the user. If the user pressed Cancel, it returns a null @@ -483,12 +483,12 @@ the parent's titlebar). <p> Under Unix/X11, the normal behavior of the file dialog is to resolve and follow symlinks. For example, if /usr/tmp is a symlink to /var/tmp, the file dialog will change to /var/tmp after entering /usr/tmp. -If <em>resolveSymlinks</em> is FALSE, the file dialog will treat +If <em>resolveSymlinks</em> is false, the file dialog will treat symlinks as regular directories. <p> <p>See also <a href="#getOpenFileNames">getOpenFileNames</a>(), <a href="#getSaveFileName">getSaveFileName</a>(), and <a href="#getExistingDirectory">getExistingDirectory</a>(). <p>Examples: <a href="tqaction-application-example.html#x1132">action/application.cpp</a>, <a href="addressbook-example.html#x567">addressbook/mainwindow.cpp</a>, <a href="simple-application-example.html#x1549">application/application.cpp</a>, <a href="distributor-example.html#x2660">distributor/distributor.ui.h</a>, <a href="ftpclient-example.html#x741">network/ftpclient/ftpmainwindow.ui.h</a>, <a href="qwerty-example.html#x365">qwerty/qwerty.cpp</a>, and <a href="showimg-example.html#x1318">showimg/showimg.cpp</a>. -<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="getOpenFileNames"></a>TQFileDialog::getOpenFileNames ( const <a href="tqstring.html">TQString</a> & filter = TQString::null, const <a href="tqstring.html">TQString</a> & dir = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, <a href="tqstring.html">TQString</a> * selectedFilter = 0, bool resolveSymlinks = TRUE )<tt> [static]</tt> +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="getOpenFileNames"></a>TQFileDialog::getOpenFileNames ( const <a href="tqstring.html">TQString</a> & filter = TQString::null, const <a href="tqstring.html">TQString</a> & dir = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, <a href="tqstring.html">TQString</a> * selectedFilter = 0, bool resolveSymlinks = true )<tt> [static]</tt> </h3> This is a convenience static function that will return one or more existing files selected by the user. @@ -519,7 +519,7 @@ the parent's titlebar). <p> Under Unix/X11, the normal behavior of the file dialog is to resolve and follow symlinks. For example, if /usr/tmp is a symlink to /var/tmp, the file dialog will change to /var/tmp after entering /usr/tmp. -If <em>resolveSymlinks</em> is FALSE, the file dialog will treat +If <em>resolveSymlinks</em> is false, the file dialog will treat symlinks as regular directories. <p> Note that if you want to iterate over the list of files, you should iterate over a copy, e.g. @@ -534,7 +534,7 @@ iterate over a copy, e.g. <p> <p>See also <a href="#getOpenFileName">getOpenFileName</a>(), <a href="#getSaveFileName">getSaveFileName</a>(), and <a href="#getExistingDirectory">getExistingDirectory</a>(). -<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getSaveFileName"></a>TQFileDialog::getSaveFileName ( const <a href="tqstring.html">TQString</a> & startWith = TQString::null, const <a href="tqstring.html">TQString</a> & filter = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, <a href="tqstring.html">TQString</a> * selectedFilter = 0, bool resolveSymlinks = TRUE )<tt> [static]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getSaveFileName"></a>TQFileDialog::getSaveFileName ( const <a href="tqstring.html">TQString</a> & startWith = TQString::null, const <a href="tqstring.html">TQString</a> & filter = TQString::null, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, const <a href="tqstring.html">TQString</a> & caption = TQString::null, <a href="tqstring.html">TQString</a> * selectedFilter = 0, bool resolveSymlinks = true )<tt> [static]</tt> </h3> This is a convenience static function that will return a file name selected by the user. The file does not have to exist. @@ -565,7 +565,7 @@ the parent's titlebar. <p> Under Unix/X11, the normal behavior of the file dialog is to resolve and follow symlinks. For example, if /usr/tmp is a symlink to /var/tmp, the file dialog will change to /var/tmp after entering /usr/tmp. -If <em>resolveSymlinks</em> is FALSE, the file dialog will treat +If <em>resolveSymlinks</em> is false, the file dialog will treat symlinks as regular directories. <p> <p>See also <a href="#getOpenFileName">getOpenFileName</a>(), <a href="#getOpenFileNames">getOpenFileNames</a>(), and <a href="#getExistingDirectory">getExistingDirectory</a>(). @@ -577,10 +577,10 @@ By default there is no icon provider, and this function returns 0. <p> <p>See also <a href="#setIconProvider">setIconProvider</a>() and <a href="tqfileiconprovider.html">TQFileIconProvider</a>. <h3 class=fn>bool <a name="isContentsPreviewEnabled"></a>TQFileDialog::isContentsPreviewEnabled () const -</h3><p>Returns TRUE if the file dialog can provide a contents preview of the currently selected file; otherwise returns FALSE. +</h3><p>Returns true if the file dialog can provide a contents preview of the currently selected file; otherwise returns false. See the <a href="tqfiledialog.html#contentsPreview-prop">"contentsPreview"</a> property for details. <h3 class=fn>bool <a name="isInfoPreviewEnabled"></a>TQFileDialog::isInfoPreviewEnabled () const -</h3><p>Returns TRUE if the file dialog can provide preview information about the currently selected file; otherwise returns FALSE. +</h3><p>Returns true if the file dialog can provide preview information about the currently selected file; otherwise returns false. See the <a href="tqfiledialog.html#infoPreview-prop">"infoPreview"</a> property for details. <h3 class=fn><a href="tqfiledialog.html#Mode-enum">Mode</a> <a name="mode"></a>TQFileDialog::mode () const </h3><p>Returns the file dialog's mode. @@ -603,7 +603,7 @@ Re-sorts the displayed directory. <h3 class=fn>void <a name="selectAll"></a>TQFileDialog::selectAll ( bool b ) </h3> -If <em>b</em> is TRUE then all the files in the current directory are selected; +If <em>b</em> is true then all the files in the current directory are selected; otherwise, they are deselected. <h3 class=fn><a href="tqstring.html">TQString</a> <a name="selectedFile"></a>TQFileDialog::selectedFile () const @@ -648,7 +648,7 @@ avoid memory leaks. Preview* p = new Preview; TQFileDialog* fd = new TQFileDialog( this ); - fd-><a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( TRUE ); + fd-><a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>( true ); fd-><a href="#setContentsPreview">setContentsPreview</a>( p, p ); fd-><a href="#setPreviewMode">setPreviewMode</a>( TQFileDialog::<a href="#PreviewMode-enum">Contents</a> ); fd-><a href="tqdialog.html#show">show</a>(); @@ -751,7 +751,7 @@ avoid memory leaks. Preview* p = new Preview; TQFileDialog* fd = new TQFileDialog( this ); - fd-><a href="#setInfoPreviewEnabled">setInfoPreviewEnabled</a>( TRUE ); + fd-><a href="#setInfoPreviewEnabled">setInfoPreviewEnabled</a>( true ); fd-><a href="#setInfoPreview">setInfoPreview</a>( p, p ); fd-><a href="#setPreviewMode">setPreviewMode</a>( TQFileDialog::<a href="#PreviewMode-enum">Info</a> ); fd-><a href="tqdialog.html#show">show</a>(); @@ -802,7 +802,7 @@ Sets the file dialog's working directory to the directory specified at <em>url</ </h3><p>Sets the file dialog's view mode to <em>m</em>. See the <a href="tqfiledialog.html#viewMode-prop">"viewMode"</a> property for details. <h3 class=fn>bool <a name="showHiddenFiles"></a>TQFileDialog::showHiddenFiles () const -</h3><p>Returns TRUE if hidden files are shown in the file dialog; otherwise returns FALSE. +</h3><p>Returns true if hidden files are shown in the file dialog; otherwise returns false. See the <a href="tqfiledialog.html#showHiddenFiles-prop">"showHiddenFiles"</a> property for details. <h3 class=fn><a href="tqurl.html">TQUrl</a> <a name="url"></a>TQFileDialog::url () const </h3> @@ -816,7 +816,7 @@ See the <a href="tqfiledialog.html#viewMode-prop">"viewMode"</a> property for de <hr><h2>Property Documentation</h2> <h3 class=fn>bool <a name="contentsPreview-prop"></a>contentsPreview</h3> <p>This property holds whether the file dialog can provide a contents preview of the currently selected file. -<p>The default is FALSE. +<p>The default is false. <p> <p>See also <a href="#setContentsPreview">setContentsPreview</a>() and <a href="#infoPreview-prop">infoPreview</a>. <p>Set this property's value with <a href="#setContentsPreviewEnabled">setContentsPreviewEnabled</a>() and get this property's value with <a href="#isContentsPreviewEnabled">isContentsPreviewEnabled</a>(). @@ -827,7 +827,7 @@ See the <a href="tqfiledialog.html#viewMode-prop">"viewMode"</a> property for de <h3 class=fn>bool <a name="infoPreview-prop"></a>infoPreview</h3> <p>This property holds whether the file dialog can provide preview information about the currently selected file. -<p>The default is FALSE. +<p>The default is false. <p>Set this property's value with <a href="#setInfoPreviewEnabled">setInfoPreviewEnabled</a>() and get this property's value with <a href="#isInfoPreviewEnabled">isInfoPreviewEnabled</a>(). <h3 class=fn><a href="tqfiledialog.html#Mode-enum">Mode</a> <a name="mode-prop"></a>mode</h3> @@ -880,7 +880,7 @@ iterate over a copy, e.g. <h3 class=fn>bool <a name="showHiddenFiles-prop"></a>showHiddenFiles</h3> <p>This property holds whether hidden files are shown in the file dialog. -<p>The default is FALSE, i.e. don't show hidden files. +<p>The default is false, i.e. don't show hidden files. <p>Set this property's value with <a href="#setShowHiddenFiles">setShowHiddenFiles</a>() and get this property's value with <a href="#showHiddenFiles">showHiddenFiles</a>(). <h3 class=fn><a href="tqfiledialog.html#ViewMode-enum">ViewMode</a> <a name="viewMode-prop"></a>viewMode</h3> |