QXRD  0.11.16
qcepnewcolumnscandialog.cpp
Go to the documentation of this file.
2 #include "ui_qcepnewcolumnscandialog.h"
3 #include "qcepdataobject.h"
4 
6  QDialog(parent),
7  m_Object(obj)
8 {
9  setupUi(this);
10 
11  if (obj) {
12  setWindowTitle(tr("Create new column scan in %1").arg(obj->pathName()));
13  }
14 }
15 
17 {
18 }
19 
21 {
22  QDialog::changeEvent(e);
23  switch (e->type()) {
24  case QEvent::LanguageChange:
25  retranslateUi(this);
26  break;
27  default:
28  break;
29  }
30 }
QcepNewColumnScanDialog(QcepDataObject *obj, QWidget *parent=0)
QString pathName() const