Пример #1
0
AsciiSaveDlg::AsciiSaveDlg(QWidget* parent)
	: QDialog(parent)
	, Ui::AsciiSaveDialog()
{
	setupUi(this);

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

	initFromPersistentSettings();
}
Пример #2
0
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();
}