Merge branch 'master' of https://bdgit.educoder.net/p5akopqw4/senjing
After Width: | Height: | Size: 958 KiB |
Before Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 580 KiB |
After Width: | Height: | Size: 281 KiB |
After Width: | Height: | Size: 337 KiB |
Before Width: | Height: | Size: 1.0 MiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 512 KiB |
After Width: | Height: | Size: 357 KiB |
After Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 321 KiB After Width: | Height: | Size: 329 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 578 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 6.5 KiB |
@ -0,0 +1,3 @@
|
||||
{
|
||||
"CurrentProjectSetting": "无配置"
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"ExpandedNodes": [
|
||||
""
|
||||
],
|
||||
"SelectedNode": "\\避障",
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
import math
|
||||
import time
|
||||
|
||||
# 风速计数
|
||||
wind_count = 0
|
||||
|
||||
# 风速上次计数时间
|
||||
wind_last_time = 0
|
||||
|
||||
# 风速
|
||||
wind_speed = 0
|
||||
|
||||
# 风向角度
|
||||
wind_direction_angle = 0
|
||||
|
||||
# 风向字符串
|
||||
wind_direction_str = ""
|
||||
|
||||
# 风向刻度表
|
||||
wind_directions = ["N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE",
|
||||
"S", "SSW", "SW", "WSW", "W", "WNW", "NW", "NNW", "N"]
|
||||
|
||||
# 风速计数回调函数
|
||||
def wind_speed_callback():
|
||||
global wind_count
|
||||
wind_count += 1
|
||||
|
||||
# 风向计数回调函数
|
||||
def wind_direction_callback():
|
||||
global wind_direction_angle
|
||||
wind_direction_angle = int(input("请输入当前风向角度:"))
|
||||
|
||||
try:
|
||||
while True:
|
||||
# 计算风速
|
||||
wind_time = time.time() - wind_last_time
|
||||
if wind_time > 5:
|
||||
wind_speed = wind_count / wind_time * 2.4 # 转化为mph
|
||||
wind_count = 0
|
||||
wind_last_time = time.time()
|
||||
|
||||
# 计算风向
|
||||
wind_direction = math.floor((wind_direction_angle + 11.25) / 22.5)
|
||||
wind_direction_str = wind_directions[wind_direction % 16]
|
||||
|
||||
print("风速:{:.1f} mph\t 风向:{}".format(wind_speed, wind_direction_str))
|
||||
time.sleep(0.1)
|
||||
except KeyboardInterrupt:
|
||||
pass
|
Before Width: | Height: | Size: 700 KiB After Width: | Height: | Size: 700 KiB |
@ -1,23 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <QMainWindow>
|
||||
#include "ui_Setting.h"
|
||||
#include <QTcpServer>
|
||||
#include <QTcpSocket>
|
||||
|
||||
class Setting : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
Setting(QWidget *parent = nullptr);
|
||||
~Setting();
|
||||
QTcpServer* tcpserver;
|
||||
QTcpSocket* tcpsocket;
|
||||
|
||||
private:
|
||||
Ui::SettingClass ui;
|
||||
private slots:
|
||||
void on_finished_button();
|
||||
|
||||
};
|
Before Width: | Height: | Size: 961 KiB After Width: | Height: | Size: 961 KiB |
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
@ -1,4 +1,9 @@
|
||||
<RCC>
|
||||
<qresource prefix="UAV_UI_new">
|
||||
<qresource prefix="/">
|
||||
<file>background_1.png</file>
|
||||
<file>background_2.png</file>
|
||||
<file>background_3.png</file>
|
||||
<file>Fire.png</file>
|
||||
<file>kill_fire.jpg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -1,56 +0,0 @@
|
||||
#include "Setting.h"
|
||||
#include <QTcpServer>
|
||||
#include <QTcpSocket>
|
||||
#include <QMessageBox>
|
||||
#include <QJsonObject>
|
||||
#include <QJsonDocument>
|
||||
|
||||
Setting::Setting(QWidget *parent)
|
||||
: QMainWindow(parent)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
/*float longitude = ui.longitude->text().toFloat();
|
||||
float latitude = ui.latitude->text().toFloat();
|
||||
int hours = ui.hours->text().toInt();
|
||||
int minutes = ui.minutes->text().toInt();
|
||||
int seconds = ui.seconds->text().toInt();*/
|
||||
tcpsocket = new QTcpSocket(this);
|
||||
tcpsocket->connectToHost("192.168.8.100", 9090);
|
||||
connect(ui.finished, &QPushButton::clicked, this, &Setting::on_finished_button);
|
||||
QString styleSheet = QString("background-image:url(:/background_1.png);\
|
||||
background-repeat:no-repeat;background-position:center;").arg(QCoreApplication::applicationDirPath());
|
||||
this->setStyleSheet(styleSheet);
|
||||
this->resize(806, 453);
|
||||
ui.finished->setStyleSheet("background-color: white;");
|
||||
}
|
||||
|
||||
Setting::~Setting()
|
||||
{
|
||||
}
|
||||
void Setting::on_finished_button() {
|
||||
float longitude = ui.longitude->text().toFloat();
|
||||
float latitude = ui.latitude->text().toFloat();
|
||||
int hours = ui.hours->text().toInt();
|
||||
int minutes = ui.minutes->text().toInt();
|
||||
int seconds = ui.seconds->text().toInt();
|
||||
int x = ui.x->text().toInt();
|
||||
int y = ui.y->text().toInt();
|
||||
int z = ui.z->text().toInt();
|
||||
QJsonObject msg;
|
||||
msg.insert("type", "Set");
|
||||
msg.insert("lon", longitude);
|
||||
msg.insert("lat", latitude);
|
||||
msg.insert("hours", hours);
|
||||
msg.insert("minutes", minutes);
|
||||
msg.insert("seconds", seconds);
|
||||
msg.insert("x", x);
|
||||
msg.insert("y", y);
|
||||
msg.insert("z", z);
|
||||
QJsonDocument jsonDocument;
|
||||
jsonDocument.setObject(msg);
|
||||
QByteArray dataArray = jsonDocument.toJson();
|
||||
if (tcpsocket->write(dataArray) == -1) {
|
||||
qDebug() << "send TCP data package failed!";
|
||||
}
|
||||
qDebug() << "sent!";
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <QMainWindow>
|
||||
#include "ui_Setting.h"
|
||||
#include <QTcpServer>
|
||||
#include <QTcpSocket>
|
||||
|
||||
class Setting : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
Setting(QWidget *parent = nullptr);
|
||||
~Setting();
|
||||
QTcpServer* tcpserver;
|
||||
QTcpSocket* tcpsocket;
|
||||
|
||||
private:
|
||||
Ui::SettingClass ui;
|
||||
private slots:
|
||||
void on_finished_button();
|
||||
|
||||
};
|
@ -1,203 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>SettingClass</class>
|
||||
<widget class="QMainWindow" name="SettingClass">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>871</width>
|
||||
<height>571</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Setting</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralWidget">
|
||||
<widget class="QWidget" name="gridLayoutWidget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>200</x>
|
||||
<y>100</y>
|
||||
<width>451</width>
|
||||
<height>241</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="Start_Timer">
|
||||
<property name="text">
|
||||
<string>出发时间:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="3">
|
||||
<widget class="QLineEdit" name="seconds">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>秒</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="hours">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>时</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="longitude">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>经度</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QLineEdit" name="minutes">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>分</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QLineEdit" name="latitude">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>纬度</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="Speed_Lable">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>目的地</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>x,y,z</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="x">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>0</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QLineEdit" name="y">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>0</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="3">
|
||||
<widget class="QLineEdit" name="z">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>0</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="finished">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>360</x>
|
||||
<y>370</y>
|
||||
<width>93</width>
|
||||
<height>29</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>完成</string>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QMenuBar" name="menuBar">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>871</width>
|
||||
<height>26</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QToolBar" name="mainToolBar">
|
||||
<attribute name="toolBarArea">
|
||||
<enum>TopToolBarArea</enum>
|
||||
</attribute>
|
||||
<attribute name="toolBarBreak">
|
||||
<bool>false</bool>
|
||||
</attribute>
|
||||
</widget>
|
||||
<widget class="QStatusBar" name="statusBar"/>
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
@ -1,9 +1,4 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>background_1.png</file>
|
||||
<file>background_2.png</file>
|
||||
<file>background_3.png</file>
|
||||
<file>Fire.png</file>
|
||||
<file>kill_fire.jpg</file>
|
||||
<qresource prefix="UAV_UI_new">
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
Before Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 232 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 661 KiB |
@ -1,14 +0,0 @@
|
||||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Visual C++ generated include file.
|
||||
// Used by UAV_UI_new.rc
|
||||
|
||||
// 新对象的下一组默认值
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 101
|
||||
#define _APS_NEXT_COMMAND_VALUE 40001
|
||||
#define _APS_NEXT_CONTROL_VALUE 1001
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
@ -1,14 +0,0 @@
|
||||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Visual C++ generated include file.
|
||||
// Used by UAV_UI_new1.rc
|
||||
|
||||
// 新对象的下一组默认值
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 101
|
||||
#define _APS_NEXT_COMMAND_VALUE 40001
|
||||
#define _APS_NEXT_CONTROL_VALUE 1001
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
@ -1,20 +1,10 @@
|
||||
#include "tips.h"
|
||||
|
||||
tips::tips(QPixmap image,QWidget *parent)
|
||||
tips::tips(QWidget *parent)
|
||||
: QMainWindow(parent)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
ui.display->setPixmap(image);
|
||||
connect(ui.action, &QPushButton::clicked, this, &tips::on_action_button);
|
||||
ui.action->setStyleSheet("background-color:red;");
|
||||
QString styleSheet = QString("background-image:url(:/kill_fire.jpg);\
|
||||
background-repeat:no-repeat;background-position:center;").arg(QCoreApplication::applicationDirPath());
|
||||
this->setStyleSheet(styleSheet);
|
||||
}
|
||||
|
||||
tips::~tips()
|
||||
{
|
||||
}
|
||||
void tips::on_action_button() {
|
||||
//·Å¾¯±¨
|
||||
}
|
||||
{}
|
||||
|
@ -1,107 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<UI version="4.0" >
|
||||
<class>tipsClass</class>
|
||||
<widget class="QMainWindow" name="tipsClass">
|
||||
<property name="geometry">
|
||||
<widget class="QMainWindow" name="tipsClass" >
|
||||
<property name="objectName" >
|
||||
<string notr="true">tipsClass</string>
|
||||
</property>
|
||||
<property name="geometry" >
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1130</width>
|
||||
<height>644</height>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>600</width>
|
||||
<height>400</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>1130</width>
|
||||
<height>644</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>1130</width>
|
||||
<height>644</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<property name="windowTitle" >
|
||||
<string>tips</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralWidget">
|
||||
<widget class="QLabel" name="Pre_tag">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>19</x>
|
||||
<y>6</y>
|
||||
<width>81</width>
|
||||
<height>31</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>火势状况</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="display">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>20</x>
|
||||
<y>30</y>
|
||||
<width>640</width>
|
||||
<height>480</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>640</width>
|
||||
<height>480</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>640</width>
|
||||
<height>480</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="action">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>830</x>
|
||||
<y>40</y>
|
||||
<width>93</width>
|
||||
<height>29</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>出警</string>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QMenuBar" name="menuBar">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1130</width>
|
||||
<height>26</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QToolBar" name="mainToolBar">
|
||||
<attribute name="toolBarArea">
|
||||
<enum>TopToolBarArea</enum>
|
||||
</attribute>
|
||||
<attribute name="toolBarBreak">
|
||||
<bool>false</bool>
|
||||
</attribute>
|
||||
</widget>
|
||||
<widget class="QStatusBar" name="statusBar"/>
|
||||
</property> <widget class="QMenuBar" name="menuBar" /> <widget class="QToolBar" name="mainToolBar" /> <widget class="QWidget" name="centralWidget" /> <widget class="QStatusBar" name="statusBar" />
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<resources/>
|
||||
<layoutDefault spacing="6" margin="11" />
|
||||
<pixmapfunction></pixmapfunction>
|
||||
<connections/>
|
||||
</ui>
|
||||
</UI>
|
||||
|
@ -1,25 +1,8 @@
|
||||
uic tips.ui
|
||||
rcc UAV_UI_new.qrc
|
||||
UAV_UI_new.cpp
|
||||
tips.cpp
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x249 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\tips.cpp(1,1): warning C4828: 文件包含在偏移 0x229 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x24b 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x24c 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\tips.cpp(1,1): warning C4828: 文件包含在偏移 0x22c 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x24e 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x6a3 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\tips.cpp(1,1): warning C4828: 文件包含在偏移 0x22d 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x6a4 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\tips.cpp(1,1): warning C4828: 文件包含在偏移 0x22e 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x6a5 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x6aa 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x7b1 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x7b2 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x7b4 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x7bb 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x7bd 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x7be 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
moc_tips.cpp
|
||||
qrc_UAV_UI_new.cpp
|
||||
UAV_UI_new.cpp
|
||||
main.cpp
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x48f 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x490 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x491 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
D:\software\UAV_UI\UAV_UI_new\UAV_UI_new\UAV_UI_new.cpp(1,1): warning C4828: 文件包含在偏移 0x496 处开始的字符,该字符在当前源字符集中无效(代码页 65001)。
|
||||
moc_UAV_UI_new.cpp
|
||||
UAV_UI_new.vcxproj -> D:\software\UAV_UI\UAV_UI_new\x64\Debug\UAV_UI_new.exe
|
||||
|