Searched defs:WindowConfig (Results 1 – 3 of 3) sorted by relevance
73 struct WindowConfig { struct74 WindowConfig() : rect(), in WindowConfig() argument81 ~WindowConfig() {} in ~WindowConfig() argument82 enum CompositeMode {87 Rect rect;89 uint8_t opacity;91 WindowPixelFormat pixelFormat;92 CompositeMode compositeMode;93 bool isModal;
144 struct WindowConfig { struct145 int32_t width;146 int32_t height;147 int32_t pos_x;148 int32_t pos_y;149 int32_t format;150 int32_t stride;151 int32_t type;152 int32_t parentid;153 bool subwindow;[all …]
45 struct WindowConfig { struct48 int32_t designWidth = DEFAULT_DESIGN_WIDTH;49 bool autoDesignWidth = false;50 bool boxWrap = false;51 double designWidthScale = 0.0;53 double GetDesignWidthScale(const double viewWidth) in GetDesignWidthScale()