// // Created by HW on 2023/07/26. // #ifndef OFFICEASSISTANT_BUTTONSTRUCT_H #define OFFICEASSISTANT_BUTTONSTRUCT_H #include #include typedef struct taButtonStruct{ QImage *image; QImage *image_cover; QImage *png; 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