mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-11 13:52:21 +08:00
22 lines
350 B
C++
22 lines
350 B
C++
|
|
#pragma once
|
|
|
|
#include <QLabel>
|
|
#include <QPushButton>
|
|
#include <QHBoxLayout>
|
|
#include "spkdialog.h"
|
|
|
|
class SpkAbout : public SpkDialog
|
|
{
|
|
public:
|
|
SpkAbout(QWidget* parent = nullptr);
|
|
~SpkAbout();
|
|
static void Show();
|
|
|
|
private:
|
|
QHBoxLayout *mIconLay;
|
|
QLabel *mSpkIcon;
|
|
QLabel *mSpkVersion;
|
|
QLabel *mDescriptionText;
|
|
};
|