| 111 | |
| 112 | |
| 113 | void |
| 114 | Application::connectUI(void) |
| 115 | { |
| 116 | connect( |
| 117 | this->mediator, |
| 118 | SIGNAL(captureStart()), |
| 119 | this, |
| 120 | SLOT(onCaptureStart())); |
| 121 | |
| 122 | connect( |
| 123 | this->mediator, |
| 124 | SIGNAL(captureEnd()), |
| 125 | this, |
| 126 | SLOT(onCaptureStop())); |
| 127 | |
| 128 | connect( |
| 129 | this->mediator, |
| 130 | SIGNAL(profileChanged(bool)), |
| 131 | this, |
| 132 | SLOT(onProfileChanged(bool))); |
| 133 | |
| 134 | connect( |
| 135 | this->mediator, |
| 136 | SIGNAL(frequencyChanged(qint64, qint64)), |
| 137 | this, |
| 138 | SLOT(onFrequencyChanged(qint64, qint64))); |
| 139 | |
| 140 | connect( |
| 141 | this->mediator, |
| 142 | SIGNAL(seek(struct timeval)), |
| 143 | this, |
| 144 | SLOT(onSeek(struct timeval))); |
| 145 | |
| 146 | connect( |
| 147 | this->mediator, |
| 148 | SIGNAL(uiQuit(void)), |
| 149 | this, |
| 150 | SLOT(quit(void))); |
| 151 | |
| 152 | connect( |
| 153 | this->mediator, |
| 154 | SIGNAL(refreshDevices(void)), |
| 155 | this, |
| 156 | SLOT(onDeviceRefresh(void))); |
| 157 | |
| 158 | connect( |
| 159 | this->mediator, |
| 160 | SIGNAL(recentSelected(QString)), |
| 161 | this, |
| 162 | SLOT(onRecentSelected(QString))); |
| 163 | |
| 164 | connect( |
| 165 | this->mediator, |
| 166 | SIGNAL(recentCleared(void)), |
| 167 | this, |
| 168 | SLOT(onRecentCleared(void))); |
| 169 | |
| 170 | connect( |