⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 interface.h

📁 This a framework to test new ideas in transmission technology. Actual development is a LDPC-coder in
💻 H
字号:
/*******************************************************************************//*  Project:        SOFTWARE RADIO - LCM Laboratoire de Communications Mobiles *//*  -------------------------------------------------------------------------- *//*  Filename:       interface.h                                                *//*  Description:    Subclass of QMainWindow. It implements the main interface  *//*                  of the Software Radio GUI.                                 *//*  -------------------------------------------------------------------------- *//*  Date:           April 7 2003                                               *//*  Version:        v1.0                                                       *//*  Authors:        Braure Jerome, Ferreiro Jose                               *//*                  Communication Systems (9th semester) - EPFL                *//*  Extended by:    Porchet Vincent                                            *//*                  Computer Science (6th semester) - EPFL                     *//*******************************************************************************//*******************************************************************************//*  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.                                                         *//*******************************************************************************/#ifndef INTERFACE_H#define INTERFACE_H#include <qmainwindow.h>#include "module.h"#include "fifocmd.h"class RadioView;class Interface : public QMainWindow {  Q_OBJECTpublic:  Interface();public slots:  void slotXY_selected();  void slotYt_selected();  void slotModuleSelected(Module* module);  void slotAddingCurve(bool adding);  void changedRadioView( FifoCmd *c );  void switchDebug();  void switchProfiling();signals:  void moduleSelected (Module*);  void showDebug( bool );  void showProfiling( bool );private:  FifoCmd *active_radio;  int desktopWidth;  int desktopHeight;  int windowX;  int windowY;  bool isAddCurve;  QMenuBar   *menuBar;  QPopupMenu *fileMenu;  QPopupMenu *helpMenu;  int showDebugID;  int showProfilingID;  RadioView *firstView;private slots:  void slotAbout();};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -