2023-07-26 19:48:14 +08:00
|
|
|
//
|
|
|
|
// Created by HW on 2023/07/26.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef OFFICEASSISTANT_BUTTONSTRUCT_H
|
|
|
|
#define OFFICEASSISTANT_BUTTONSTRUCT_H
|
|
|
|
#include <QString>
|
2023-07-30 01:06:42 +08:00
|
|
|
#include <QImage>
|
2023-07-26 19:48:14 +08:00
|
|
|
typedef struct taButtonStruct{
|
2023-07-30 01:06:42 +08:00
|
|
|
QImage *image;
|
|
|
|
QImage *image_cover;
|
|
|
|
QString text;
|
|
|
|
QString url;
|
2023-08-01 09:04:53 +08:00
|
|
|
QString background_color;
|
|
|
|
QColor text_color;
|
|
|
|
QColor text_cover_color;
|
2023-07-26 19:48:14 +08:00
|
|
|
}ButtonStruct;
|
|
|
|
#endif //OFFICEASSISTANT_BUTTONSTRUCT_H
|