Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Automatically scale
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Aug 14, 2021
1 parent 0eede1f commit 2a6d8d7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 43 files
+1 −1 .github/workflows/cmake.yml
+234 −0 .github/workflows/example-plugins.yml
+70 −0 .github/workflows/makefile.yml
+0 −44 .travis.yml
+0 −18 .travis/before_install.sh
+0 −29 .travis/install.sh
+0 −23 .travis/script-linux.sh
+0 −17 .travis/script-macos.sh
+0 −20 .travis/script-win32.sh
+0 −20 .travis/script-win64.sh
+47 −4 Makefile.base.mk
+9 −3 Makefile.plugins.mk
+7 −2 cmake/DPF-plugin.cmake
+4 −1 dgl/Makefile
+8 −0 dgl/TopLevelWidget.hpp
+4 −0 dgl/Widget.hpp
+5 −0 dgl/src/ApplicationPrivateData.cpp
+25 −12 dgl/src/Cairo.cpp
+15 −4 dgl/src/ImageBaseWidgets.cpp
+7 −4 dgl/src/OpenGL.cpp
+34 −2 dgl/src/TopLevelWidget.cpp
+18 −11 dgl/src/Window.cpp
+6 −5 dgl/src/WindowPrivateData.cpp
+60 −4 dgl/src/pugl.cpp
+15 −2 dgl/src/pugl.hpp
+1 −1 distrho/DistrhoUtils.hpp
+4 −0 distrho/extra/LibraryUtils.hpp
+4 −4 distrho/extra/String.hpp
+6 −5 distrho/src/DistrhoDefines.h
+1 −1 distrho/src/DistrhoPluginLV2.cpp
+1 −1 distrho/src/DistrhoPluginLV2export.cpp
+50 −5 distrho/src/DistrhoPluginVST2.cpp
+15 −3 distrho/src/DistrhoUIInternal.hpp
+5 −5 distrho/src/DistrhoUIPrivateData.hpp
+8 −3 distrho/src/jackbridge/JackBridge.cpp
+40 −5 distrho/src/jackbridge/RtAudioBridge.hpp
+0 −1 examples/CairoUI/CMakeLists.txt
+45 −17 examples/CairoUI/CairoExampleUI.cpp
+0 −86 examples/CairoUI/DemoWidgetClickable.cpp
+63 −5 examples/CairoUI/DemoWidgetClickable.hpp
+0 −1 examples/CairoUI/Makefile
+4 −4 examples/FileHandling/NanoButton.cpp
+13 −2 examples/Info/InfoExampleUI.cpp
3 changes: 3 additions & 0 deletions plugins/3BandEQ/DistrhoUI3BandEQ.cpp
Expand Up @@ -109,6 +109,9 @@ DistrhoUI3BandEQ::DistrhoUI3BandEQ()

// set default values
programLoaded(0);

// automatically-scale
setGeometryConstraints(Art::backgroundWidth, Art::backgroundHeight, true, true);
}

// -----------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp
Expand Up @@ -109,6 +109,9 @@ DistrhoUI3BandSplitter::DistrhoUI3BandSplitter()

// set default values
programLoaded(0);

// automatically-scale
setGeometryConstraints(Art::backgroundWidth, Art::backgroundHeight, true, true);
}

// -----------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions plugins/PingPongPan/DistrhoUIPingPongPan.cpp
Expand Up @@ -62,6 +62,9 @@ DistrhoUIPingPongPan::DistrhoUIPingPongPan()

// set default values
programLoaded(0);

// automatically-scale
setGeometryConstraints(Art::backgroundWidth, Art::backgroundHeight, true, true);
}

// -----------------------------------------------------------------------
Expand Down

0 comments on commit 2a6d8d7

Please sign in to comment.