feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 46606f529d - Show all commits

47
libs/xassets/xwindowdef.h Normal file
View File

@ -0,0 +1,47 @@
#ifndef XWINDOWDEF_H
#define XWINDOWDEF_H
#include "xasset.h"
#include "xmaterial.h"
#include "xrectdef.h"
#include <QColor>
class XWindowDef : public XAsset
{
public:
explicit XWindowDef();
~XWindowDef();
void ParseData(QDataStream *aStream) override;
void Clear() override;
private:
QString mName;
XRectDef mRect;
XRectDef mRectClient;
QString mGroup;
int mStyle;
int mBorder;
int mOwnerDraw;
int mOwnerDrawFlags;
float mBorderSize;
int mStaticFlags;
QVector<int> mDynamicFlags;
int mNextTime;
QColor mForeColor;
QColor mBackColor;
QColor mBorderColor;
QColor mOutlineColor;
XMaterial *mBackground;
};
#endif // XWINDOWDEF_H