diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Wasabi/api/wnd/wndclass/sepwnd.cpp | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/Wasabi/api/wnd/wndclass/sepwnd.cpp')
-rw-r--r-- | Src/Wasabi/api/wnd/wndclass/sepwnd.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/Src/Wasabi/api/wnd/wndclass/sepwnd.cpp b/Src/Wasabi/api/wnd/wndclass/sepwnd.cpp new file mode 100644 index 00000000..da45b11b --- /dev/null +++ b/Src/Wasabi/api/wnd/wndclass/sepwnd.cpp @@ -0,0 +1,63 @@ +#include <precomp.h> + +#include <tataki/bitmap/bitmap.h> +#include <api/wnd/basewnd.h> +#include "sepwnd.h" +#include <tataki/canvas/canvas.h> +#include <api/wnd/PaintCanvas.h> + +SepWnd::SepWnd() { + bitmap = NULL; + orientation = SEP_UNKNOWN; +} + +SepWnd::~SepWnd() { + if (bitmap) delete bitmap; +} + +int SepWnd::onPaint(Canvas *canvas) { + + PaintBltCanvas paintcanvas; + if (canvas == NULL) { + if (!paintcanvas.beginPaintNC(this)) return 0; + canvas = &paintcanvas; + } + + + if (!bitmap) { + switch (orientation) { + case SEP_VERTICAL: + bitmap = new SkinBitmap(L"studio.FrameVerticalDivider"); + break; + case SEP_HORIZONTAL: + bitmap = new SkinBitmap(L"studio.FrameHorizontalDivider"); + break; + case SEP_UNKNOWN: + return 1; + } + ASSERT(bitmap != NULL); + } + RECT r; + getClientRect(&r); + RenderBaseTexture(canvas, r); + if (bitmap) { + bitmap->stretchToRectAlpha(canvas, &r, 128); + } + return 1; +} + +int SepWnd::setOrientation(int which) { + orientation = which; + return 1; +} + +int SepWnd::onInit() { + SEPWND_PARENT::onInit(); + return 1; +} + +void SepWnd::freeResources() { + SEPWND_PARENT::freeResources(); + if (bitmap) delete bitmap; + bitmap = NULL; +}
\ No newline at end of file |