radioview.h

来自「This a framework to test new ideas in tr」· C头文件 代码 · 共 62 行

H
62
字号
/*******************************************************************************//*  Project:        SOFTWARE RADIO - LCM Laboratoire de Communications Mobiles *//*  -------------------------------------------------------------------------- *//*  Filename:       radioview.h                                                *//*  Description:    Subclass of QWidget. It implements a page view (in a tab)  *//*                  of the Software Radio GUI.                                 *//*  -------------------------------------------------------------------------- *//*  Date:           April 7 2003                                               *//*  Version:        v1.0                                                       *//*  Authors:        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 RADIOVIEW_H#define RADIOVIEW_H#include <qwidget.h>// for QWidget inheritance#include <qtimer.h>// for the timer#include "modulegenerator.h"#include "interface.h"#include "mapper.h"#include "fifocmd.h"#include "canvasview.h"class RadioView : public QWidget {  Q_OBJECTpublic:  RadioView(FifoCmd *c, QWidget *parent);public slots:  void slotChangedTab(QWidget* w);  void slotModuleSelected(Module* module);  void update();signals:  void moduleSelected (Module*);  void activeRadioView( FifoCmd *c );private:  FifoCmd         *radio;  Mapper          *mapper;  //  Interface       *interface;  ModuleGenerator *mg;  QTimer          *timer;  CanvasView      *canvasView;  QCanvas         *canvas;  int desktopWidth;  int desktopHeight;};#endif

⌨️ 快捷键说明

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