00001 /* -*- Mode: c++ -*- 00002 * vim: set expandtab tabstop=4 shiftwidth=4: 00003 */ 00004 00005 #ifndef _PANE_ANALOG_H_ 00006 #define _PANE_ANALOG_H_ 00007 00008 #include "settings.h" 00009 00010 class TransFreqTableSelector; 00011 00012 class PaneAnalog : public VerticalConfigurationGroup 00013 { 00014 public: 00015 PaneAnalog(); 00016 00017 void SetSourceID(uint sourceid); 00018 00019 QString GetFrequencyTable(void) const; 00020 00021 protected: 00022 TransFreqTableSelector *freq_table; 00023 }; 00024 00025 #endif // _PANE_ANALOG_H_