命名规范

This commit is contained in:
2026-07-29 12:30:40 +08:00
parent f5f1bf9cc7
commit 18edce4838
59 changed files with 1690 additions and 1795 deletions
+11 -11
View File
@@ -1,20 +1,20 @@
#ifndef TopMenuBar_H
#define TopMenuBar_H
#ifndef Top_Menu_Bar_H
#define Top_Menu_Bar_H
#include "../Global.h"
#include "YSGraphic_Core/base/export.h"
#include "Widget/base/export.h"
class TopButton;
class ShowTime;
class Top_Button;
class Show_Time;
class Wifi;
class QPushButton;
class TopMenuBar : public QWidget, public YSG::Singleton_Widget<TopMenuBar> {
class Top_Menu_Bar : public QWidget, public renderive::Singleton_Widget<Top_Menu_Bar> {
public:
explicit TopMenuBar(QWidget *parent = nullptr);
QPushButton *mAM, *mATU, *mVSQL, *mNB, *mNR, *mDNF, *mPRE, *mATT, *mSPL, *mFIL1, *mAGC_A;
Wifi* mWifi;
YSG::Roll_Object<QPushButton> *mTextButtonList;
explicit Top_Menu_Bar(QWidget *parent = nullptr);
QPushButton *am, *atu, *vsql, *nb, *nr, *dnf, *pre, *att, *spl, *fil1, *agc_a;
Wifi* wifi;
renderive::Roll_Object<QPushButton> *text_button_list;
int index = 0;
ShowTime *mShowTime;
Show_Time *show_time;
protected:
// void paintEvent(QPaintEvent *event) override;
};