24 lines
493 B
C
24 lines
493 B
C
//
|
|
// Created by HW on 2023/07/26.
|
|
//
|
|
|
|
#ifndef OFFICEASSISTANT_BUTTONSTRUCT_H
|
|
#define OFFICEASSISTANT_BUTTONSTRUCT_H
|
|
#include <QString>
|
|
#include <QImage>
|
|
typedef struct taButtonStruct{
|
|
QImage *image;
|
|
QImage *image_cover;
|
|
QString text;
|
|
QString orig_name;
|
|
QString url;
|
|
QString background_color;
|
|
QColor text_color;
|
|
QColor text_cover_color;
|
|
QString path;
|
|
QString initial_position;
|
|
QString op;
|
|
QString func;
|
|
}ButtonStruct;
|
|
#endif //OFFICEASSISTANT_BUTTONSTRUCT_H
|