dRonin  adbada4
dRonin GCS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Groups Pages
importexportdialog.cpp
Go to the documentation of this file.
1 #include "importexportdialog.h"
2 #include "ui_importexportdialog.h"
3 
5  : QDialog(parent)
6  , ui(new Ui::ImportExportDialog)
7 {
8  ui->setupUi(this);
9  setWindowTitle(tr("Import Export Settings"));
10 
11  connect(ui->widget, &ImportExportGadgetWidget::done, this, &QWidget::close);
12 }
13 
15 {
16  delete ui;
17 }
18 
20 {
21  QDialog::changeEvent(e);
22  switch (e->type()) {
23  case QEvent::LanguageChange:
24  ui->retranslateUi(this);
25  break;
26  default:
27  break;
28  }
29 }
void changeEvent(QEvent *e)
ImportExportDialog(QWidget *parent=nullptr)
e
Definition: OPPlots.m:99