/*************************************************************************** |FILENAME| - description ------------------- begin : |DATE| copyright : (C) |YEAR| by |AUTHOR| email : |EMAIL| ***************************************************************************/ /*************************************************************************** * * * 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; either version 2 of the License, or * * (at your option) any later version. * * The PSK part is based on WinPSK 1.0 by Moe Wheatley, AE4JY * ***************************************************************************/ #ifndef CTXFUNCTIONS_H #define CTXFUNCTIONS_H #include #include class CLedButton; class QPushButton; class CTxFunctions : public QGroupBox { Q_OBJECT public: CTxFunctions( QWidget* parent = 0, const char* name = 0 ); ~CTxFunctions(); // QPushButton* Tune; // QPushButton* CWId; CLedButton* RXTX; public slots: protected: void resizeEvent( QResizeEvent * ); protected slots: virtual void languageChange(); private: void calculateSizeofComponents(); signals: void startTx(); void startRx(); }; #endif // CTXFUNCTIONS_H