Initial release
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
// This file is part of VSTGUI. It is subject to the license terms
|
||||
// in the LICENSE file found in the top-level directory of this
|
||||
// distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
|
||||
|
||||
#include "drawdevicetests.h"
|
||||
#include "vstgui/standalone/include/helpers/appdelegate.h"
|
||||
#include "vstgui/standalone/include/helpers/uidesc/modelbinding.h"
|
||||
#include "vstgui/standalone/include/helpers/value.h"
|
||||
#include "vstgui/standalone/include/helpers/windowlistener.h"
|
||||
#include "vstgui/standalone/include/iapplication.h"
|
||||
#include "vstgui/standalone/include/iuidescwindow.h"
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
namespace VSTGUI {
|
||||
namespace Standalone {
|
||||
|
||||
using namespace Application;
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
class GFXTestApp : public DelegateAdapter, public WindowListenerAdapter
|
||||
{
|
||||
public:
|
||||
GFXTestApp () : DelegateAdapter ({"gfxtest", "1.0.0", "vstgui.tests.gfxtest"}) {}
|
||||
|
||||
void finishLaunching () override
|
||||
{
|
||||
auto modelBinding = UIDesc::ModelBindingCallbacks::make ();
|
||||
modelBinding->addValue (Value::make ("ShowDrawDeviceTests"),
|
||||
UIDesc::ValueCalls::onAction ([] (auto& value) {
|
||||
makeDrawDeviceTestsWindow ();
|
||||
value.performEdit (0.);
|
||||
}));
|
||||
|
||||
UIDesc::Config config;
|
||||
config.uiDescFileName = "Window.uidesc";
|
||||
config.viewName = "Window";
|
||||
config.modelBinding = modelBinding;
|
||||
config.windowConfig.title = "GFXTests";
|
||||
config.windowConfig.autoSaveFrameName = "GFXTestsWindow";
|
||||
config.windowConfig.style.border ().close ().size ().centered ();
|
||||
if (auto window = UIDesc::makeWindow (config))
|
||||
{
|
||||
window->show ();
|
||||
window->registerWindowListener (this);
|
||||
}
|
||||
else
|
||||
{
|
||||
IApplication::instance ().quit ();
|
||||
}
|
||||
}
|
||||
|
||||
void onClosed (const IWindow& window) override { IApplication::instance ().quit (); }
|
||||
};
|
||||
|
||||
static Init gAppDelegate (std::make_unique<GFXTestApp> ());
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
} // Standalone
|
||||
} // VSTGUI
|
||||
+396
@@ -0,0 +1,396 @@
|
||||
// This file is part of VSTGUI. It is subject to the license terms
|
||||
// in the LICENSE file found in the top-level directory of this
|
||||
// distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
|
||||
|
||||
#include "drawdevicetests.h"
|
||||
#include "vstgui/lib/cbitmap.h"
|
||||
#include "vstgui/lib/cbitmapfilter.h"
|
||||
#include "vstgui/lib/cfileselector.h"
|
||||
#include "vstgui/lib/cframe.h"
|
||||
#include "vstgui/lib/cgraphicstransform.h"
|
||||
#include "vstgui/lib/coffscreencontext.h"
|
||||
#include "vstgui/lib/platform/iplatformbitmap.h"
|
||||
#include "vstgui/lib/platform/platformfactory.h"
|
||||
#include "vstgui/standalone/include/helpers/menubuilder.h"
|
||||
#include "vstgui/standalone/include/helpers/uidesc/customization.h"
|
||||
#include "vstgui/standalone/include/helpers/uidesc/modelbinding.h"
|
||||
#include "vstgui/standalone/include/helpers/value.h"
|
||||
#include "vstgui/standalone/include/iapplication.h"
|
||||
#include "vstgui/standalone/include/iuidescwindow.h"
|
||||
#include "vstgui/uidescription/cstream.h"
|
||||
#include "vstgui/uidescription/delegationcontroller.h"
|
||||
#include "vstgui/uidescription/iuidescription.h"
|
||||
#include "vstgui/uidescription/uiattributes.h"
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
namespace VSTGUI {
|
||||
namespace Standalone {
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
class CustomDrawView : public CView
|
||||
{
|
||||
public:
|
||||
using DrawFunction = std::function<void (CustomDrawView* view, CDrawContext& context, CPoint viewSize)>;
|
||||
|
||||
CustomDrawView (DrawFunction func) : CView (CRect (0, 0, 0, 0)), func (func) {}
|
||||
|
||||
void draw (CDrawContext* context) override
|
||||
{
|
||||
if (func)
|
||||
{
|
||||
CDrawContext::Transform t (
|
||||
*context, CGraphicsTransform ().translate (getViewSize ().getTopLeft ()));
|
||||
func (this, *context, getViewSize ().getSize ());
|
||||
}
|
||||
}
|
||||
|
||||
CMouseEventResult onMouseDown (CPoint& where, const CButtonState& buttons) override
|
||||
{
|
||||
return kMouseEventHandled;
|
||||
}
|
||||
|
||||
CMouseEventResult onMouseUp (CPoint& where, const CButtonState& buttons) override
|
||||
{
|
||||
if (func && buttons.isLeftButton ())
|
||||
{
|
||||
if (buttons.getModifierState () & kShift)
|
||||
saveAsPNG ();
|
||||
else
|
||||
invalid ();
|
||||
}
|
||||
return kMouseEventHandled;
|
||||
}
|
||||
|
||||
private:
|
||||
std::string getSavePath ()
|
||||
{
|
||||
if (auto fs =
|
||||
owned (CNewFileSelector::create (getFrame (), CNewFileSelector::kSelectSaveFile)))
|
||||
{
|
||||
fs->setDefaultExtension (CFileExtension ("PNG", "png"));
|
||||
if (fs->runModal ())
|
||||
{
|
||||
return fs->getSelectedFile (0);
|
||||
}
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
void saveAsPNG ()
|
||||
{
|
||||
auto filePath = getSavePath ();
|
||||
if (filePath.empty ())
|
||||
return;
|
||||
|
||||
auto size = getViewSize ().getSize ();
|
||||
auto scaleFactor = getFrame ()->getScaleFactor ();
|
||||
if (auto offscreen = COffscreenContext::create (size, scaleFactor))
|
||||
{
|
||||
offscreen->beginDraw ();
|
||||
func (this, *offscreen, size);
|
||||
offscreen->endDraw ();
|
||||
auto bitmap = offscreen->getBitmap ();
|
||||
if (auto platformBitmap = bitmap->getPlatformBitmap ())
|
||||
{
|
||||
auto buffer =
|
||||
getPlatformFactory ().createBitmapMemoryPNGRepresentation (platformBitmap);
|
||||
if (buffer.empty ())
|
||||
return;
|
||||
CFileStream stream;
|
||||
if (!stream.open (filePath.data (), CFileStream::kBinaryMode |
|
||||
CFileStream::kWriteMode |
|
||||
CFileStream::kTruncateMode))
|
||||
return;
|
||||
stream.writeRaw (buffer.data (), static_cast<uint32_t> (buffer.size ()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
DrawFunction func;
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
void drawRects (CDrawContext& context, CPoint size)
|
||||
{
|
||||
context.setDrawMode (kAliasing);
|
||||
context.setFillColor (MakeCColor (0, 0, 0, 100));
|
||||
context.drawRect (CRect ().setSize (size), kDrawFilled);
|
||||
|
||||
//--
|
||||
context.setDrawMode (kAliasing);
|
||||
context.setFrameColor (kBlackCColor);
|
||||
context.setLineStyle (kLineSolid);
|
||||
context.setLineWidth (1);
|
||||
context.drawRect (CRect (5, 5, 10, 10), kDrawStroked);
|
||||
context.setFrameColor (MakeCColor (0, 0, 0, 150));
|
||||
context.drawLine ({10, 5}, {25, 5});
|
||||
context.drawLine ({5, 10}, {5, 25});
|
||||
//--
|
||||
context.setDrawMode (kAliasing);
|
||||
auto hairline = context.getHairlineSize ();
|
||||
CRect r2 (40, 5, 50, 15);
|
||||
context.setLineWidth (5);
|
||||
context.setFrameColor (CColor (0, 0, 255, 100));
|
||||
context.drawRect (r2);
|
||||
context.setLineWidth (3);
|
||||
context.setFrameColor (CColor (255, 0, 0, 100));
|
||||
context.drawRect (r2);
|
||||
context.setLineWidth (1);
|
||||
context.setFrameColor (CColor (0, 255, 0, 100));
|
||||
context.drawRect (r2);
|
||||
//--
|
||||
r2 = {60, 5, 70, 15};
|
||||
context.setLineWidth (hairline);
|
||||
context.setFrameColor (CColor (0, 255, 0, 200));
|
||||
context.drawRect (r2);
|
||||
r2.inset (hairline, hairline);
|
||||
context.setFrameColor (CColor (255, 0, 0, 200));
|
||||
context.drawRect (r2);
|
||||
r2.inset (hairline, hairline);
|
||||
context.setFrameColor (CColor (0, 0, 255, 200));
|
||||
context.drawRect (r2);
|
||||
//--
|
||||
CRect r {5, 50, 0, 0};
|
||||
r.setSize ({20, 20});
|
||||
context.setLineWidth (1);
|
||||
context.setDrawMode (kAliasing);
|
||||
context.setFillColor (MakeCColor (255, 0, 0, 255));
|
||||
context.drawRect (r, kDrawFilled);
|
||||
context.setFillColor (MakeCColor (0, 0, 0, 200));
|
||||
context.drawEllipse (r, kDrawFilled);
|
||||
context.setFrameColor (CColor (0, 255, 0, 100));
|
||||
context.drawRect (r, kDrawStroked);
|
||||
//--
|
||||
r = {50, 50, 80, 80};
|
||||
context.setDrawMode (kAliasing);
|
||||
context.setLineWidth (1);
|
||||
context.setFrameColor (CColor (0, 255, 255, 100));
|
||||
context.drawLine (r.getTopLeft (), r.getTopRight ());
|
||||
context.drawLine (r.getBottomLeft (), r.getBottomRight ());
|
||||
r.inset (10, -10);
|
||||
context.drawLine (r.getTopRight (), r.getBottomRight ());
|
||||
context.drawLine (r.getTopLeft (), r.getBottomLeft ());
|
||||
r.left++;
|
||||
r.top += 11;
|
||||
r.bottom -= 10;
|
||||
context.setFillColor (CColor (255, 0, 0, 100));
|
||||
context.drawRect (r, kDrawFilled);
|
||||
//--
|
||||
r = {90, 90, 120, 120};
|
||||
context.setDrawMode (kAliasing);
|
||||
context.setLineWidth (1);
|
||||
context.setFrameColor (CColor (0, 0, 255, 100));
|
||||
context.setFillColor (CColor (255, 0, 0, 100));
|
||||
context.drawEllipse (r, kDrawFilledAndStroked);
|
||||
r.offset (40, 0);
|
||||
context.setDrawMode (kAntiAliasing);
|
||||
context.drawEllipse (r, kDrawFilledAndStroked);
|
||||
//--
|
||||
r = {90, 130, 120, 160};
|
||||
context.setDrawMode (kAliasing);
|
||||
context.setLineWidth (1);
|
||||
context.setFrameColor (CColor (0, 0, 255, 100));
|
||||
context.setFillColor (CColor (255, 0, 0, 100));
|
||||
context.drawEllipse (r, kDrawFilled);
|
||||
r2 = r;
|
||||
r2.extend (1, 1);
|
||||
context.drawEllipse (r2, kDrawStroked);
|
||||
r.offset (40, 0);
|
||||
context.setDrawMode (kAntiAliasing);
|
||||
context.drawEllipse (r, kDrawFilled);
|
||||
r2 = r;
|
||||
r2.extend (1, 1);
|
||||
context.drawEllipse (r2, kDrawStroked);
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
void drawBitmapFilter (CustomDrawView* view, CDrawContext& context, CPoint size)
|
||||
{
|
||||
auto boxBlurFilter = owned (BitmapFilter::Factory::getInstance ().createFilter (BitmapFilter::Standard::kBoxBlur));
|
||||
boxBlurFilter->setProperty (BitmapFilter::Standard::Property::kRadius, 2);
|
||||
|
||||
auto offscreen = COffscreenContext::create ({20., 20.});
|
||||
offscreen->beginDraw ();
|
||||
offscreen->setFillColor (kRedCColor);
|
||||
offscreen->drawRect ({5, 5, 15, 15}, kDrawFilled);
|
||||
offscreen->endDraw ();
|
||||
auto bitmap = shared (offscreen->getBitmap ());
|
||||
boxBlurFilter->setProperty (BitmapFilter::Standard::Property::kInputBitmap, bitmap.get ());
|
||||
boxBlurFilter->run (true);
|
||||
bitmap->draw (&context, {0, 0, 20, 20});
|
||||
|
||||
offscreen = COffscreenContext::create ({20., 20.});
|
||||
offscreen->beginDraw ();
|
||||
offscreen->clearRect({0, 0, 20, 20});
|
||||
offscreen->setFillColor (kGreenCColor);
|
||||
offscreen->drawRect ({5, 5, 15, 15}, kDrawFilled);
|
||||
offscreen->endDraw ();
|
||||
bitmap = shared (offscreen->getBitmap ());
|
||||
boxBlurFilter->setProperty (BitmapFilter::Standard::Property::kInputBitmap, bitmap.get ());
|
||||
boxBlurFilter->run (true);
|
||||
bitmap->draw (&context, {20, 0, 40, 20});
|
||||
|
||||
offscreen = COffscreenContext::create ({20., 20.});
|
||||
offscreen->beginDraw ();
|
||||
offscreen->clearRect({0, 0, 20, 20});
|
||||
offscreen->setFillColor (kBlueCColor);
|
||||
offscreen->drawRect ({5, 5, 15, 15}, kDrawFilled);
|
||||
offscreen->endDraw ();
|
||||
bitmap = shared (offscreen->getBitmap ());
|
||||
boxBlurFilter->setProperty (BitmapFilter::Standard::Property::kInputBitmap, bitmap.get ());
|
||||
boxBlurFilter->run (true);
|
||||
bitmap->draw (&context, {40, 0, 60, 20});
|
||||
|
||||
offscreen = COffscreenContext::create ({20., 20.});
|
||||
offscreen->beginDraw ();
|
||||
offscreen->clearRect({0, 0, 20, 20});
|
||||
offscreen->setFillColor (kGreyCColor);
|
||||
offscreen->drawRect ({5, 5, 15, 15}, kDrawFilled);
|
||||
offscreen->endDraw ();
|
||||
bitmap = shared (offscreen->getBitmap ());
|
||||
boxBlurFilter->setProperty (BitmapFilter::Standard::Property::kInputBitmap, bitmap.get ());
|
||||
boxBlurFilter->run (true);
|
||||
bitmap->draw (&context, {60, 0, 80, 20});
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
class InvalidateRegionTestView : public CView
|
||||
{
|
||||
public:
|
||||
InvalidateRegionTestView (const CRect& size) : CView (size) {}
|
||||
|
||||
void printRect (const char* prefix, const CRect& r)
|
||||
{
|
||||
#if DEBUG
|
||||
DebugPrint ("%s, %d,%d (%dx%d)\n", prefix, static_cast<int32_t> (r.left),
|
||||
static_cast<int32_t> (r.top), static_cast<int32_t> (r.right - r.left),
|
||||
static_cast<int32_t> (r.bottom - r.top));
|
||||
#endif
|
||||
}
|
||||
|
||||
CMouseEventResult onMouseDown (CPoint& where, const CButtonState& state) override
|
||||
{
|
||||
auto r1 = getViewSize ();
|
||||
r1.setWidth (r1.getWidth () / 2.);
|
||||
auto r2 = r1;
|
||||
r2.offset (r2.getWidth (), 0);
|
||||
|
||||
r2.inset (10, 50);
|
||||
r2.setHeight (r2.getHeight () / 2.);
|
||||
auto r3 = r2;
|
||||
r2.inset (0, 10);
|
||||
r3.offset (0, r3.getHeight ());
|
||||
r3.inset (0, 10);
|
||||
|
||||
r1.inset (10, 0);
|
||||
|
||||
invalRect (r1);
|
||||
invalRect (r2);
|
||||
invalRect (r3);
|
||||
return kMouseDownEventHandledButDontNeedMovedOrUpEvents;
|
||||
}
|
||||
|
||||
void invalRect (const CRect& r)
|
||||
{
|
||||
printRect ("InvalidRect: ", r);
|
||||
invalidRect (r);
|
||||
}
|
||||
|
||||
void drawRect (CDrawContext* context, const CRect& r) override
|
||||
{
|
||||
if (r == getViewSize ())
|
||||
{
|
||||
context->setFillColor (kWhiteCColor);
|
||||
context->drawRect (r, kDrawFilled);
|
||||
}
|
||||
else
|
||||
{
|
||||
printRect ("DrawRect: ", r);
|
||||
|
||||
double h, s, v;
|
||||
color.toHSV (h, s, v);
|
||||
h += 40;
|
||||
color.fromHSV (h, s, v);
|
||||
context->setFillColor (color);
|
||||
context->drawRect (r, kDrawFilled);
|
||||
}
|
||||
setDirty (false);
|
||||
}
|
||||
bool toggle {false};
|
||||
CColor color {kRedCColor};
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
class ViewCreator : public DelegationController
|
||||
{
|
||||
public:
|
||||
ViewCreator (IController* parent) : DelegationController (parent) {}
|
||||
|
||||
CView* createView (const UIAttributes& attributes, const IUIDescription* description) override
|
||||
{
|
||||
if (auto customViewName = attributes.getAttributeValue (IUIDescription::kCustomViewName))
|
||||
{
|
||||
if (*customViewName == "RectsView")
|
||||
{
|
||||
return new CustomDrawView ([] (auto view, auto& ctx, auto size) { drawRects (ctx, size); });
|
||||
}
|
||||
if (*customViewName == "BitmapsFilterView")
|
||||
{
|
||||
return new CustomDrawView (
|
||||
[] (auto view, auto& ctx, auto size) { drawBitmapFilter (view, ctx, size); });
|
||||
}
|
||||
else if (*customViewName == "InvalidRegionView")
|
||||
{
|
||||
return new InvalidateRegionTestView (CRect (0, 0, 500, 500));
|
||||
}
|
||||
}
|
||||
return DelegationController::createView (attributes, description);
|
||||
}
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
class DrawDeviceTestsCustomization : public UIDesc::Customization, public NoMenuBuilder
|
||||
{
|
||||
public:
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
void makeDrawDeviceTestsWindow ()
|
||||
{
|
||||
static UTF8String windowTitle = "DrawDeviceTests";
|
||||
const auto& windows = IApplication::instance ().getWindows ();
|
||||
for (auto& window : windows)
|
||||
{
|
||||
if (window->getTitle () == windowTitle)
|
||||
{
|
||||
window->activate ();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
auto modelBinding = UIDesc::ModelBindingCallbacks::make ();
|
||||
modelBinding->addValue (Value::makeStringListValue (
|
||||
"ViewSelector", {"Lines/Rects", "BitmapFilter", "InvalidRects"}));
|
||||
|
||||
auto drawDeviceTestsCustomization = std::make_shared<DrawDeviceTestsCustomization> ();
|
||||
drawDeviceTestsCustomization->addCreateViewControllerFunc (
|
||||
"ViewCreator",
|
||||
[] (const auto& name, auto parent, const auto uiDesc) { return new ViewCreator (parent); });
|
||||
|
||||
UIDesc::Config config;
|
||||
config.uiDescFileName = "DrawDeviceTests.uidesc";
|
||||
config.viewName = "Window";
|
||||
config.customization = drawDeviceTestsCustomization;
|
||||
config.modelBinding = modelBinding;
|
||||
config.windowConfig.title = windowTitle;
|
||||
config.windowConfig.autoSaveFrameName = "DrawDeviceTestsWindow";
|
||||
config.windowConfig.style.border ().close ().size ().centered ();
|
||||
if (auto window = UIDesc::makeWindow (config))
|
||||
window->show ();
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
} // Standalone
|
||||
} // VSTGUI
|
||||
@@ -0,0 +1,15 @@
|
||||
// This file is part of VSTGUI. It is subject to the license terms
|
||||
// in the LICENSE file found in the top-level directory of this
|
||||
// distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
|
||||
|
||||
#pragma once
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
namespace VSTGUI {
|
||||
namespace Standalone {
|
||||
|
||||
void makeDrawDeviceTestsWindow ();
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
} // Standalone
|
||||
} // VSTGUI
|
||||
Reference in New Issue
Block a user