Mercurial > foo_out_sdl
annotate foosdk/sdk/libPPUI/CDialogResizeHelperCompat.h @ 1:20d02a178406 default tip
*: check in everything else
yay
| author | Paper <paper@tflc.us> |
|---|---|
| date | Mon, 05 Jan 2026 02:15:46 -0500 |
| parents | |
| children |
| rev | line source |
|---|---|
| 1 | 1 #pragma once |
| 2 | |
| 3 class CDialogResizeHelperCompat { | |
| 4 public: | |
| 5 struct param { | |
| 6 unsigned short id; | |
| 7 unsigned short flags; | |
| 8 }; | |
| 9 | |
| 10 enum { | |
| 11 X_MOVE = 1, X_SIZE = 2, Y_MOVE = 4, Y_SIZE = 8, | |
| 12 XY_MOVE = X_MOVE | Y_MOVE, XY_SIZE = X_SIZE | Y_SIZE, | |
| 13 X_MOVE_Y_SIZE = X_MOVE | Y_SIZE, X_SIZE_Y_MOVE = X_SIZE | Y_MOVE, | |
| 14 }; | |
| 15 | |
| 16 }; |
