资源简介
使用Qt绘制雷达表盘,并可以显示目标、余晖、同心圆、十字架等元素。

代码片段和文件信息
#include “SkyplotWidget.h“
#include
#include
#include
#include
#include
#include
SkyplotWidget::SkyplotWidget(QWidget *parent)
: QWidget(parent)
flash( false )
p_marginScale( 0.78 )
p_satScale( 0.03 )
p_fontScale( 0.02 )
p_gridColor( QColor( 150 150 150 255 ) )
p_gridTextColor( QColor( 210 210210))
p_gridWidth( 3 )
p_ellipses( 3 )
p_crosses( 3 )
p_textMargin( 10 )
p_flashIntervall( 500 )
p_withGridLabels( true )
p_antialiased( true )
m_pieRotate(0)
{
flashTimer.setInterval( p_flashIntervall );
connect( &flashTimer SIGNAL( timeout() ) this SLOT( change_flash() ) );
flashTimer.start( p_flashIntervall );
connect(&m_PieSpeedSIGNAL(timeout())thisSLOT(pie_speed()));
m_PieSpeed.start(50);
}
void SkyplotWidget::change_flash( void )
{
flash = !flash;
this->update();
}
void SkyplotWidget::pie_speed( void )
{
m_pieRotate -= 10;
this->update();
}
void SkyplotWidget::paintEvent(QPaintEvent *)
{
QSize widgetSize(this->size());
QPalette p = palette();
QPainter *painter = new QPainter(this);
float topMargin ;
float leftMargin;
float size;
float satelliteSize;
float fontSize;
float availableWidth = widgetSize.width ();
float availableHeight = widgetSize.height();
if( availableHeight > availableWidth )
{
size = widgetSize.width() * p_marginScale;
topMargin = ( widgetSize.width() - widgetSize.width() * p_marginScale + widgetSize.height() - widgetSize.width() ) / 2.0;
leftMargin = ( widgetSize.width() - widgetSize.width() * p_marginScale ) / 2.0;
}
else
{
size = widgetSize.height() * p_marginScale;
leftMargin = ( widgetSize.height() - widgetSize.height() * p_marginScale + widgetSize.width() - widgetSize.height()) / 2.0;
topMargin = ( widgetSize.height() - widgetSize.height() * p_marginScale ) / 2.0;
}
satelliteSize = size * p_satScale;
painter->setRenderHint(QPainter::Antialiasing p_antialiased);
painter->translate( leftMargin topMargin ); //重新设置坐标原点
fontSize = size * p_fontScale;
painter->setFont(QFont( “Arial“ static_cast< int >(fontSize)));
//圆圈
for(int i=0; i <= p_ellipses; i++)
{
float radius = size / 2.0 - i * ( size / ( 2.0 * p_ellipses ));
painter->setPen( QPen( p_gridColor p_gridWidth ) );
painter->drawEllipse(QPoint( size/2.0 size/2.0 ) static_cast< int >( radius ) static_cast< int >(radius));
if(p_withGridLabels)
{
painter->setPen( QPen( p_gridTextColor p_gridWidth -2.5 ) );
double tmp = ((p_ellipses - i) * (mMonitorScope / p_ellipses));
QString distance = QString::number(((p_ellipses - i) * (mMonitorScope / p_ellipses)) 10 2);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 14453 2019-02-27 14:09 SkyplotWidget.cpp
文件 8037 2019-01-19 11:06 SkyplotWidget.h
- 上一篇:Qt天气预报程序
- 下一篇:Qt5主窗体:文本编辑器
相关资源
- 酒店管理系统基于Qt Creator5)
- vtk QT做的三维地质可视化系统2of2
- Qt局域网聊天软件
- Qt Creator opengl实现四元数鼠标控制轨迹
- QT局域网聊天系统(基于QT5.修改过)
- qt-电子点菜系统
- C 餐厅叫号系统(QT平)
- QT 实现文件下载
- qt图像处理
- QT,JPEG解码源代码(已完成)
- Qt 播放音频文件
- Qt 读取16进制的data文件
- MQTT+串口(usart)透传
- 易语言QQTEA算法源码
- VC工程转Qt工程文件的工具
- MQTT推送Demo
- 完整的雷达系统仿真程序
- PUBG雷达透视网页版搭建教程(自带加
- 基于Linux、QT的视频监控系统的设计与
- Qt 百度地图 定位
- 雷达系统仿真大作业
- QT酷炫界面开发指南《QmlBook》
- 数字正交上变频器AD9857在高频雷达系
- ALOS-PALSAR雷达数据介绍
- 基于地震属性体的三维探地雷达快速
- PolSARpro Introduction PolSARpro操作说明
- Ubuntu下操作Excel,qt代码
- Qt图片浏览器 --基于Qt的Graphics View f
- qtnribbon2破解
- Qt软件开发 完整项目代码
评论
共有 条评论