| 53 | } |
| 54 | |
| 55 | void |
| 56 | HistogramDialog::connectAll(void) |
| 57 | { |
| 58 | connect( |
| 59 | this->ui->buttonBox, |
| 60 | SIGNAL(clicked(QAbstractButton *)), |
| 61 | this, |
| 62 | SLOT(onClose(void))); |
| 63 | |
| 64 | connect( |
| 65 | this->ui->histogram, |
| 66 | SIGNAL(newLimits(float, float)), |
| 67 | this, |
| 68 | SLOT(onNewLimits(float, float))); |
| 69 | |
| 70 | connect( |
| 71 | this->ui->histogram, |
| 72 | SIGNAL(resetLimits(void)), |
| 73 | this, |
| 74 | SLOT(onResetLimits(void))); |
| 75 | |
| 76 | connect( |
| 77 | this->ui->histogram, |
| 78 | SIGNAL(blanked()), |
| 79 | this, |
| 80 | SIGNAL(blanked())); |
| 81 | } |
| 82 | |
| 83 | void |
| 84 | HistogramDialog::reset(void) |