📄 radioview.h
字号:
/*******************************************************************************//* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -