增加光电吊舱推流功能;调整光电吊舱页面;增加时代飞鹏无人机展示页面;修复主页设置页面卫通和自组网按钮不起作用问题;
parent
9fe1ed795f
commit
9cb45d4393
@ -0,0 +1,21 @@
|
||||
#include "SDFPDlg.h"
|
||||
#include "ui_SDFPDlg.h"
|
||||
|
||||
SDFPDlg::SDFPDlg(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
, ui(new Ui::SDFPDlg)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
QPalette palette;
|
||||
//设置主窗口背景颜色
|
||||
palette.setColor(QPalette::Window,QColor(50, 50, 50));
|
||||
this->setPalette(palette);
|
||||
//嵌入到主窗口
|
||||
setWindowFlags(Qt::CustomizeWindowHint|Qt::FramelessWindowHint);
|
||||
hide();
|
||||
}
|
||||
|
||||
SDFPDlg::~SDFPDlg()
|
||||
{
|
||||
delete ui;
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
#ifndef SDFPDLG_H
|
||||
#define SDFPDLG_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
class SDFPDlg;
|
||||
}
|
||||
|
||||
class SDFPDlg : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SDFPDlg(QWidget *parent = nullptr);
|
||||
~SDFPDlg();
|
||||
|
||||
private:
|
||||
Ui::SDFPDlg *ui;
|
||||
};
|
||||
|
||||
#endif // SDFPDLG_H
|
@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>SDFPDlg</class>
|
||||
<widget class="QWidget" name="SDFPDlg">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>768</width>
|
||||
<height>440</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Orientation::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Policy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="widget" native="true">
|
||||
<property name="styleSheet">
|
||||
<string notr="true">image: url(:/res/981csNew.png);</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Orientation::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Policy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 81 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
Loading…
Reference in New Issue