X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=forms%2Fpiradvancedform.h;fp=forms%2Fpiradvancedform.h;h=15c800d06610a5abe35b200ed41d6529dd33b2d4;hb=741e390184f91b94c413745f43820d59c7362530;hp=0000000000000000000000000000000000000000;hpb=f3809ec697222bd9ad47c725bb72dd7272fd594b;p=pierogi diff --git a/forms/piradvancedform.h b/forms/piradvancedform.h new file mode 100644 index 0000000..15c800d --- /dev/null +++ b/forms/piradvancedform.h @@ -0,0 +1,37 @@ +#ifndef PIRADVANCEDFORM_H +#define PIRADVANCEDFORM_H + +#include + +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