Ejemplo n.º 1
0
AsciiSaveDlg::AsciiSaveDlg(QWidget* parent)
	: QDialog(parent)
	, Ui::AsciiSaveDialog()
{
	setupUi(this);

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

	initFromPersistentSettings();
}
Ejemplo n.º 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	()));
}
Ejemplo n.º 3
0
AsciiSaveDlg::AsciiSaveDlg(QWidget* parent)
	: QDialog(parent)
	, m_ui(new Ui_AsciiSaveDialog)
	, m_autoShow(true)
{
	m_ui->setupUi(this);

	connect(m_ui->buttonBox, &QDialogButtonBox::accepted, this, &AsciiSaveDlg::acceptAndSaveSettings);

	initFromPersistentSettings();
}
Ejemplo n.º 4
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();
}