Beispiel #1
0
CDialogChooseData::CDialogChooseData(CDataFactory* dataFactory, CTypeFactory* typeFactory, QWidget* parent, Qt::WindowFlags f): QDialog(parent, f)
{
  setWindowTitle(tr("graphia - choose a data"));
  Q_ASSERT(dataFactory != NULL);
  Q_ASSERT(typeFactory != NULL);
  
  m_model = new CDataFlowModel(dataFactory);
  m_typeFactory = typeFactory;
  buildDialog();
}
Beispiel #2
0
GenericDataCollectionTableFilterDialog::GenericDataCollectionTableFilterDialog(GenericDataCollectionTableDialog* tableDialog, QWidget *parent) :
  QDialog(parent), m_tableDialog(tableDialog),
  m_findValueLineEdit(nullptr), m_replaceValueLineEdit(nullptr), m_matchCaseCB(nullptr), m_matchEntireCellCB(nullptr),
  m_regularExpressionCB(nullptr), m_selectionOnlyCB(nullptr)
{
  if (m_tableDialog != nullptr)
  {
    buildDialog();
  }
}
Beispiel #3
0
RestoreBackup::RestoreBackup(QWidget *parent) :
  QDialog(parent), m_BackupTreeview(nullptr)
{
  buildDialog();
}
LogConfigDialog::LogConfigDialog(QWidget *parent) :
  QDialog(parent), m_configFilePath(nullptr), m_logFilePath(nullptr), m_routingTableView(nullptr)
{
  buildDialog();
}