コード例 #1
0
ファイル: AsciiSaveDlg.cpp プロジェクト: kod3r/trunk
AsciiSaveDlg::AsciiSaveDlg(QWidget* parent)
	: QDialog(parent)
	, Ui::AsciiSaveDialog()
{
	setupUi(this);

	connect(buttonBox, SIGNAL(accepted()), this, SLOT(acceptAndSaveSettings()));

	initFromPersistentSettings();
}
コード例 #2
0
ファイル: BundlerImportDlg.cpp プロジェクト: dshean/trunk
BundlerImportDlg::BundlerImportDlg(QWidget* parent)
	: QDialog(parent)
{
    setupUi(this);

	initFromPersistentSettings();

    connect(buttonBox, SIGNAL(accepted()), this, SLOT(acceptAndSaveSettings()));
    connect(browseImageListFileToolButton, SIGNAL(clicked()), this, SLOT(browseImageListFilename()));
    connect(browseAltKeypointsFileToolButton, SIGNAL(clicked()), this, SLOT(browseAltKeypointsFilename	()));
}
コード例 #3
0
DxfProfilesExportDlg::DxfProfilesExportDlg(QWidget* parent)
	: QDialog(parent, Qt::Tool)
	, Ui::DxfProfilesExportDlg()
{
	setupUi(this);

	connect(vertBrowseToolButton, SIGNAL(clicked()), this, SLOT(browseVertFile()));
	connect(horizBrowseToolButton, SIGNAL(clicked()), this, SLOT(browseHorizFile()));
	connect(buttonBox, SIGNAL(accepted()), this, SLOT(acceptAndSaveSettings()));

	initFromPersistentSettings();
}