IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

FolderDialog QML Type

A native folder dialog.

This type was introduced in Qt 5.8.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

FolderDialog QML Type

  • Import Statement: import Qt.labs.platform

  • Since:: Qt 5.8

  • Inherits:: Dialog

Detailed Description

The FolderDialog type provides a QML API for native platform folder dialogs.

Image non disponible

To show a folder dialog, construct an instance of FolderDialog, set the desired properties, and call open(). The currentFolder property can be used to determine the currently selected folder in the dialog. The folder property is updated only after the final selection has been made by accepting the dialog.

 
Sélectionnez
MenuItem {
    text: "Open..."
    onTriggered: folderDialog.open()
}

FolderDialog {
    id: folderDialog
    currentFolder: viewer.folder
    folder: StandardPaths.standardLocations(StandardPaths.PicturesLocation)[0]
}

MyViewer {
    id: viewer
    folder: folderDialog.folder
}

Availability

A native platform folder dialog is currently available on the following platforms:

  • iOS

  • Linux (when running with the GTK+ platform theme)

  • macOS

  • Windows

The Qt Labs Platform module uses Qt Widgets as a fallback on platforms that do not have a native implementation available. Therefore, applications that use types from the Qt Labs Platform module should link to QtWidgets and use QApplication instead of QGuiApplication.

To link against the QtWidgets library, add the following to your qmake project file:

 
Sélectionnez
QT += widgets

Create an instance of QApplication in main():

 
Sélectionnez
#include <QApplication>
#include <QQmlApplicationEngine>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
    return app.exec();
}

Types in Qt.labs modules are not guaranteed to remain compatible in future versions.

See Also

Property Documentation

 

acceptLabel : string

This property holds the label text shown on the button that accepts the dialog.

When set to an empty string, the default label of the underlying platform is used. The default label is typically Open.

The default value is an empty string.

See Also

See also rejectLabel

currentFolder : url

This property holds the currently selected folder in the dialog.

Unlike the folder property, the currentFolder property is updated while the user is selecting folders in the dialog, even before the final selection has been made.

See Also

See also folder

folder : url

This property holds the final accepted folder.

Unlike the currentFolder property, the folder property is not updated while the user is selecting folders in the dialog, but only after the final selection has been made. That is, when the user has clicked OK to accept a folder. Alternatively, the accepted() signal can be handled to get the final selection.

See Also

See also currentFolder, accepted()

options : flags

This property holds the various options that affect the look and feel of the dialog.

By default, all options are disabled.

Options should be set before showing the dialog. Setting them while the dialog is visible is not guaranteed to have an immediate effect on the dialog (depending on the option and on the platform).

Available options:

Constant

Description

FolderDialog.ShowDirsOnly

Only show directories in the folder dialog. By default both folders and directories are shown.

FolderDialog.DontResolveSymlinks

Don't resolve symlinks in the folder dialog. By default symlinks are resolved.

FolderDialog.ReadOnly

Indicates that the dialog doesn't allow creating directories.

rejectLabel : string

This property holds the label text shown on the button that rejects the dialog.

When set to an empty string, the default label of the underlying platform is used. The default label is typically Cancel.

The default value is an empty string.

See Also

See also acceptLabel

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+