Advanced Settings Panel
[pierogi] / forms / piradvancedform.h
1 #ifndef PIRADVANCEDFORM_H
2 #define PIRADVANCEDFORM_H
3
4 #include <QWidget>
5
6 class PIRKeysetManager;
7
8 namespace Ui {
9 class PIRAdvancedForm;
10 }
11
12 class PIRAdvancedForm : public QWidget
13 {
14   Q_OBJECT
15   
16 public:
17   PIRAdvancedForm();
18
19   ~PIRAdvancedForm();
20
21   void setupForm(
22     PIRKeysetManager *pkm,
23     unsigned int id);
24
25 private slots:
26   void on_carrierFrequencySpinBox_valueChanged(int arg1);
27
28   void on_dutyCycleSpinBox_valueChanged(int arg1);
29
30 private:
31   Ui::PIRAdvancedForm *ui;
32
33   PIRKeysetManager *keysetManager;
34   unsigned int keysetID;
35 };
36
37 #endif // PIRADVANCEDFORM_H