mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-11 13:52:21 +08:00
52 lines
1.0 KiB
C++
52 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include <QSplitter>
|
|
#include <QPushButton>
|
|
#include <QRadioButton>
|
|
#include <QCheckBox>
|
|
#include <QGroupBox>
|
|
#include <QTextEdit>
|
|
#include <QLineEdit>
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QSlider>
|
|
|
|
#include "spkloading.h"
|
|
|
|
namespace SpkUi
|
|
{
|
|
class SpkPageUiTest : public QSplitter
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SpkPageUiTest(QWidget *parent = nullptr);
|
|
QWidget *WidL, *WidR;
|
|
QVBoxLayout *VLayWidgets,
|
|
*VLayBtn,
|
|
*VLayInput;
|
|
QHBoxLayout *HLay4Slider,
|
|
*HLayInputBtns;
|
|
QTextEdit *TextStylesheet;
|
|
QPushButton *BtnApply;
|
|
QPushButton *BtnFetch;
|
|
|
|
QPushButton *Btn;
|
|
QCheckBox *Chk;
|
|
QRadioButton *Rad;
|
|
QGroupBox *Group;
|
|
QSlider *SlideH;
|
|
QSlider *SlideV;
|
|
SpkLoading *Loading;
|
|
|
|
QLineEdit *PopupText;
|
|
QPushButton *ShowPopup,
|
|
*ShowAbout;
|
|
|
|
public slots:
|
|
void SetStylesheet();
|
|
void FetchStylesheet();
|
|
void ShowPopupSlot();
|
|
};
|
|
}
|