KstChangeNptsDialogI::KstChangeNptsDialogI(
  QWidget* parent, const char* name, bool modal, WFlags fl)
: KstChangeNptsDialog(parent, name, modal, fl) {
  connect(Clear, SIGNAL(clicked()), CurveList, SLOT(clearSelection()));
  connect(SelectAll, SIGNAL(clicked()), this, SLOT(selectAll()));
  connect(Apply, SIGNAL(clicked()), this, SLOT(applyNptsChange()));
  connect(OK, SIGNAL(clicked()), this, SLOT(OKNptsChange()));
  connect(CurveList, SIGNAL(selectionChanged()), this, SLOT(changedSelection()));
  connect(_kstDataRange, SIGNAL(changed()), this, SLOT(modifiedRange()));

  _modifiedRange = false;
}
Exemplo n.º 2
0
KstChangeNptsDialogI::KstChangeNptsDialogI(QWidget* parent, Qt::WindowFlags fl)
: QDialog(parent, fl) {

  setupUi(this);

  connect(Cancel,     SIGNAL(clicked()),
          this, SLOT(reject()));
  connect(CurveList, SIGNAL(selectionChanged()),
          this, SLOT(updateTimeCombo()));
  connect(Clear,     SIGNAL(clicked()),
          CurveList, SLOT(clearSelection()));
  connect(SelectAll, SIGNAL(clicked()),
          this,      SLOT(selectAll()));
  connect(Apply,     SIGNAL(clicked()),
          this,      SLOT(applyNptsChange()));
  connect(OK,        SIGNAL(clicked()),
          this,      SLOT(OKNptsChange()));
  connect(CurveList, SIGNAL(selected ( int )),
          this,      SLOT(updateDefaults( int )));
}
void KstChangeNptsDialogI::OKNptsChange() {
  applyNptsChange();
  reject();
}