| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017 F4EXB                                                      //
 | 
					
						
							|  |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // OpenGL interface modernization.                                               //
 | 
					
						
							|  |  |  | // See: http://doc.qt.io/qt-5/qopenglshaderprogram.html                          //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:43:33 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef SDRGUI_GUI_SAMPLINGDEVICEDIALOG_H_
 | 
					
						
							|  |  |  | #define SDRGUI_GUI_SAMPLINGDEVICEDIALOG_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QDialog>
 | 
					
						
							| 
									
										
										
										
											2023-01-04 15:22:41 +00:00
										 |  |  | #include <QProgressDialog>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | namespace Ui { | 
					
						
							|  |  |  |     class SamplingDeviceDialog; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-04 15:22:41 +00:00
										 |  |  | class SDRGUI_API SamplingDeviceDialogWorker : public QObject { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-05-24 08:32:57 +01:00
										 |  |  |     SamplingDeviceDialogWorker(int deviceType) : | 
					
						
							|  |  |  |         m_deviceType(deviceType) | 
					
						
							| 
									
										
										
										
											2023-01-04 15:22:41 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     void enumerateDevices(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | signals: | 
					
						
							|  |  |  |     void finishedWork(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     int m_deviceType; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRGUI_API SamplingDeviceDialog : public QDialog { | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     explicit SamplingDeviceDialog(int deviceType, QWidget* parent = nullptr); | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  |     ~SamplingDeviceDialog(); | 
					
						
							|  |  |  |     int getSelectedDeviceIndex() const { return m_selectedDeviceIndex; } | 
					
						
							| 
									
										
										
										
											2020-09-13 17:50:24 +02:00
										 |  |  |     void setSelectedDeviceIndex(int deviceIndex); | 
					
						
							|  |  |  |     void getDeviceId(QString& id) const; | 
					
						
							|  |  |  |     int exec(); | 
					
						
							|  |  |  |     bool hasChanged() const { return m_hasChanged; } | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     Ui::SamplingDeviceDialog* ui; | 
					
						
							| 
									
										
										
										
											2019-05-16 18:39:13 +02:00
										 |  |  |     int m_deviceType; | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  |     int m_selectedDeviceIndex; | 
					
						
							|  |  |  |     std::vector<int> m_deviceIndexes; | 
					
						
							| 
									
										
										
										
											2020-09-13 17:50:24 +02:00
										 |  |  |     bool m_hasChanged; | 
					
						
							| 
									
										
										
										
											2023-05-24 08:32:57 +01:00
										 |  |  |     QProgressDialog *m_progressDialog; | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  |     void displayDevices(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | private slots: | 
					
						
							| 
									
										
										
										
											2020-09-13 17:50:24 +02:00
										 |  |  |     void on_deviceSelect_currentIndexChanged(int index); | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  |     void on_refreshDevices_clicked(); | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  |     void accept(); | 
					
						
							| 
									
										
										
										
											2020-09-13 17:50:24 +02:00
										 |  |  |     void reject(); | 
					
						
							| 
									
										
										
										
											2023-05-24 08:32:57 +01:00
										 |  |  |     void enumeratingDevice(const QString &deviceId); | 
					
						
							| 
									
										
										
										
											2017-11-02 03:30:54 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* SDRGUI_GUI_SAMPLINGDEVICEDIALOG_H_ */
 | 
					
						
							| 
									
										
										
										
											2023-01-04 15:22:41 +00:00
										 |  |  | 
 |