フォームの「参照」ボタンでQLineEdit
を表示する必要があります。ユーザーがボタンをクリックすると、QFileDialog
が開かれる必要があります。
これはかなり一般的なことですが、そのための既成の解決策を見つけることができません。 Qt Designerで、QFileSelect
のようなウィジェット、またはそのようなものを期待していましたが、類似したものは見つかりませんでした。
手作業で実装する必要がありますか?または、これを行う正しい方法は何ですか?
手作業で実装する必要がありますか?または、これを行う正しい方法は何ですか?
はい、それは一般的なことであることに同意しますが、残念ながら、これを自分で実装する必要があります。良いニュースは、次のような方法でこれを簡単に実行できることです。
MyMainWindow::createUI()
{
label = new QLabel("foo");
button = new QPushButton("Browse");
connect(button, SIGNAL(clicked()), SLOT(browse()));
layout = new QHorizontalLayout();
layout->addWidget(label);
layout->addWidget(button);
setLayout(layout);
}
void MyMainWindow::browse()
{
QString directory = QFileDialog::getExistingDirectory(this,
tr("Find Files"), QDir::currentPath());
if (!directory.isEmpty()) {
if (directoryComboBox->findText(directory) == -1)
directoryComboBox->addItem(directory);
directoryComboBox->setCurrentIndex(directoryComboBox->findText(directory));
}
}