ファイルダイアログを表示する際に、初期表示されるディレクトリを指定する。
(指定しない場合、アプリケーション実行ディレクトリが表示される。)
環境:QT5.5
リンク
http://doc.qt.io/qt-5/qstandardpaths.html
http://doc.qt.io/qt-5/qfiledialog.html
インクルードファイル
1 2 | #include <QFileDialog> #include <QStandardPaths> |
コード
1 2 3 | // ファイルダイアログ表示時に、デスクトップフォルダを表示する QFileDialog::getOpenFileName(this, tr(DIG_TITLE_SELFILE), QStandardPaths::writableLocation(QStandardPaths::DesktopLocation)); |
コメント