修改类名

This commit is contained in:
zhangsheng 2024-12-18 17:14:41 +08:00
parent 7a37675d78
commit 3f772545d6
16 changed files with 87 additions and 87 deletions

View File

@ -1,14 +1,14 @@
#include "acceleration.h"
#include "ui_acceleration.h"
acceleration::acceleration(QWidget *parent) :
Acceleration::Acceleration(QWidget *parent) :
QWidget(parent),
ui(new Ui::acceleration)
ui(new Ui::Acceleration)
{
ui->setupUi(this);
}
acceleration::~acceleration()
Acceleration::~Acceleration()
{
delete ui;
}

View File

@ -4,19 +4,19 @@
#include <QWidget>
namespace Ui {
class acceleration;
class Acceleration;
}
class acceleration : public QWidget
class Acceleration : public QWidget
{
Q_OBJECT
public:
explicit acceleration(QWidget *parent = nullptr);
~acceleration();
explicit Acceleration(QWidget *parent = nullptr);
~Acceleration();
private:
Ui::acceleration *ui;
Ui::Acceleration *ui;
};
#endif // ACCELERATION_H

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>acceleration</class>
<widget class="QWidget" name="acceleration">
<class>Acceleration</class>
<widget class="QWidget" name="Acceleration">
<property name="geometry">
<rect>
<x>0</x>

View File

@ -390,7 +390,7 @@
</size>
</property>
<property name="text">
<string>通信</string>
<string>1</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -412,7 +412,7 @@
</size>
</property>
<property name="text">
<string>1</string>
<string>2</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -434,7 +434,7 @@
</size>
</property>
<property name="text">
<string>2</string>
<string>3</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -456,7 +456,7 @@
</size>
</property>
<property name="text">
<string>3</string>
<string>4</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -478,7 +478,7 @@
</size>
</property>
<property name="text">
<string>4</string>
<string>5</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -500,7 +500,7 @@
</size>
</property>
<property name="text">
<string>5</string>
<string>6</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -522,7 +522,7 @@
</size>
</property>
<property name="text">
<string>6</string>
<string>7</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -544,7 +544,7 @@
</size>
</property>
<property name="text">
<string>7</string>
<string>8</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -566,7 +566,7 @@
</size>
</property>
<property name="text">
<string>8</string>
<string>9</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -588,7 +588,7 @@
</size>
</property>
<property name="text">
<string>9</string>
<string>10</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -610,7 +610,7 @@
</size>
</property>
<property name="text">
<string>10</string>
<string>11</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -632,7 +632,7 @@
</size>
</property>
<property name="text">
<string>11</string>
<string>12</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -654,7 +654,7 @@
</size>
</property>
<property name="text">
<string>12</string>
<string>13</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -676,7 +676,7 @@
</size>
</property>
<property name="text">
<string>13</string>
<string>14</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -698,7 +698,7 @@
</size>
</property>
<property name="text">
<string>14</string>
<string>15</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -720,7 +720,7 @@
</size>
</property>
<property name="text">
<string>15</string>
<string>16</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>

View File

@ -1,14 +1,14 @@
#include "radial_vibration.h"
#include "ui_radial_vibration.h"
#include "Radial_vibration.h"
#include "ui_Radial_vibration.h"
radial_vibration::radial_vibration(QWidget *parent) :
Radial_vibration::Radial_vibration(QWidget *parent) :
QWidget(parent),
ui(new Ui::radial_vibration)
ui(new Ui::Radial_vibration)
{
ui->setupUi(this);
}
radial_vibration::~radial_vibration()
Radial_vibration::~Radial_vibration()
{
delete ui;
}

View File

@ -1,22 +1,22 @@
#ifndef RADIAL_VIBRATION_H
#define RADIAL_VIBRATION_H
#ifndef Radial_vibration_H
#define Radial_vibration_H
#include <QWidget>
namespace Ui {
class radial_vibration;
class Radial_vibration;
}
class radial_vibration : public QWidget
class Radial_vibration : public QWidget
{
Q_OBJECT
public:
explicit radial_vibration(QWidget *parent = nullptr);
~radial_vibration();
explicit Radial_vibration(QWidget *parent = nullptr);
~Radial_vibration();
private:
Ui::radial_vibration *ui;
Ui::Radial_vibration *ui;
};
#endif // RADIAL_VIBRATION_H
#endif // Radial_vibration_H

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>radial_vibration</class>
<widget class="QWidget" name="radial_vibration">
<class>Radial_vibration</class>
<widget class="QWidget" name="Radial_vibration">
<property name="geometry">
<rect>
<x>0</x>

View File

@ -1,14 +1,14 @@
#include "seismic_monitor.h"
#include "ui_seismic_monitor.h"
#include "Seismic_monitor.h"
#include "ui_Seismic_monitor.h"
seismic_monitor::seismic_monitor(QWidget *parent) :
Seismic_monitor::Seismic_monitor(QWidget *parent) :
QWidget(parent),
ui(new Ui::seismic_monitor)
ui(new Ui::Seismic_monitor)
{
ui->setupUi(this);
}
seismic_monitor::~seismic_monitor()
Seismic_monitor::~Seismic_monitor()
{
delete ui;
}

View File

@ -1,22 +1,22 @@
#ifndef SEISMIC_MONITOR_H
#define SEISMIC_MONITOR_H
#ifndef seismic_monitor_H
#define seismic_monitor_H
#include <QWidget>
namespace Ui {
class seismic_monitor;
class Seismic_monitor;
}
class seismic_monitor : public QWidget
class Seismic_monitor : public QWidget
{
Q_OBJECT
public:
explicit seismic_monitor(QWidget *parent = nullptr);
~seismic_monitor();
explicit Seismic_monitor(QWidget *parent = nullptr);
~Seismic_monitor();
private:
Ui::seismic_monitor *ui;
Ui::Seismic_monitor *ui;
};
#endif // SEISMIC_MONITOR_H
#endif // seismic_monitor_H

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>seismic_monitor</class>
<widget class="QWidget" name="seismic_monitor">
<class>Seismic_monitor</class>
<widget class="QWidget" name="Seismic_monitor">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1085</width>
<width>755</width>
<height>530</height>
</rect>
</property>

View File

@ -1,14 +1,14 @@
#include "setpoint.h"
#include "ui_setpoint.h"
#include "Setpoint.h"
#include "ui_Setpoint.h"
setpoint::setpoint(QWidget *parent) :
Setpoint::Setpoint(QWidget *parent) :
QWidget(parent),
ui(new Ui::setpoint)
ui(new Ui::Setpoint)
{
ui->setupUi(this);
}
setpoint::~setpoint()
Setpoint::~Setpoint()
{
delete ui;
}

View File

@ -1,22 +1,22 @@
#ifndef SETPOINT_H
#define SETPOINT_H
#ifndef setpoint_H
#define setpoint_H
#include <QWidget>
namespace Ui {
class setpoint;
class Setpoint;
}
class setpoint : public QWidget
class Setpoint : public QWidget
{
Q_OBJECT
public:
explicit setpoint(QWidget *parent = nullptr);
~setpoint();
explicit Setpoint(QWidget *parent = nullptr);
~Setpoint();
private:
Ui::setpoint *ui;
Ui::Setpoint *ui;
};
#endif // SETPOINT_H
#endif // setpoint_H

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>setpoint</class>
<widget class="QWidget" name="setpoint">
<class>Setpoint</class>
<widget class="QWidget" name="Setpoint">
<property name="geometry">
<rect>
<x>0</x>

View File

@ -1,14 +1,14 @@
#include "velocity.h"
#include "ui_velocity.h"
#include "Velocity.h"
#include "ui_Velocity.h"
velocity::velocity(QWidget *parent) :
Velocity::Velocity(QWidget *parent) :
QWidget(parent),
ui(new Ui::velocity)
ui(new Ui::Velocity)
{
ui->setupUi(this);
}
velocity::~velocity()
Velocity::~Velocity()
{
delete ui;
}

View File

@ -1,22 +1,22 @@
#ifndef VELOCITY_H
#define VELOCITY_H
#ifndef velocity_H
#define velocity_H
#include <QWidget>
namespace Ui {
class velocity;
class Velocity;
}
class velocity : public QWidget
class Velocity : public QWidget
{
Q_OBJECT
public:
explicit velocity(QWidget *parent = nullptr);
~velocity();
explicit Velocity(QWidget *parent = nullptr);
~Velocity();
private:
Ui::velocity *ui;
Ui::Velocity *ui;
};
#endif // VELOCITY_H
#endif // velocity_H

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>velocity</class>
<widget class="QWidget" name="velocity">
<class>Velocity</class>
<widget class="QWidget" name="Velocity">
<property name="geometry">
<rect>
<x>0</x>