Advanced Settings Panel
[pierogi] / forms / piradvancedform.h
diff --git a/forms/piradvancedform.h b/forms/piradvancedform.h
new file mode 100644 (file)
index 0000000..15c800d
--- /dev/null
@@ -0,0 +1,37 @@
+#ifndef PIRADVANCEDFORM_H
+#define PIRADVANCEDFORM_H
+
+#include <QWidget>
+
+class PIRKeysetManager;
+
+namespace Ui {
+class PIRAdvancedForm;
+}
+
+class PIRAdvancedForm : public QWidget
+{
+  Q_OBJECT
+  
+public:
+  PIRAdvancedForm();
+
+  ~PIRAdvancedForm();
+
+  void setupForm(
+    PIRKeysetManager *pkm,
+    unsigned int id);
+
+private slots:
+  void on_carrierFrequencySpinBox_valueChanged(int arg1);
+
+  void on_dutyCycleSpinBox_valueChanged(int arg1);
+
+private:
+  Ui::PIRAdvancedForm *ui;
+
+  PIRKeysetManager *keysetManager;
+  unsigned int keysetID;
+};
+
+#endif // PIRADVANCEDFORM_H