equal
deleted
inserted
replaced
189 /*! |
189 /*! |
190 * Returns the model index corresponding to the given frequency |
190 * Returns the model index corresponding to the given frequency |
191 */ |
191 */ |
192 int indexFromFrequency( uint frequency ); |
192 int indexFromFrequency( uint frequency ); |
193 |
193 |
194 signals: |
194 Q_SIGNALS: |
195 |
195 |
196 void stationDataChanged( const RadioStation& station ); |
196 void stationDataChanged( const RadioStation& station ); |
197 void radioTextReceived( const RadioStation& station ); |
197 void radioTextReceived( const RadioStation& station ); |
198 void dynamicPsChanged( const RadioStation& station ); |
198 void dynamicPsChanged( const RadioStation& station ); |
199 void favoriteChanged( const RadioStation& station ); |
199 void favoriteChanged( const RadioStation& station ); |
200 |
200 void stationsRemoved( const QList<uint>& frequencies ); |
201 private slots: |
201 |
|
202 private Q_SLOTS: |
202 |
203 |
203 /*! |
204 /*! |
204 * Timer timeout slot to indicate that the dynamic PS check has ended |
205 * Timer timeout slot to indicate that the dynamic PS check has ended |
205 */ |
206 */ |
206 void dynamicPsCheckEnded(); |
207 void dynamicPsCheckEnded(); |
|
208 |
|
209 /*! |
|
210 * Clears the radiotext from a station after its timeout has passed |
|
211 */ |
|
212 void clearRadiotext( int id ); |
|
213 |
|
214 /*! |
|
215 * Handles the end of RT plus check |
|
216 */ |
|
217 void rtPlusCheckEnd(); |
207 |
218 |
208 private: |
219 private: |
209 |
220 |
210 // New functions |
221 // New functions |
211 |
222 |