computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit eb76d7996991a503a5cc313163bf57d27a71ae08
parent 78a8d5978abcac16c46b80b1a376d16b58d8bef3
Author: Adam M <[email protected]>
Date:   Sat, 13 Oct 2018 13:24:13 -0500

fixed text size selection click problem in LaundrySoup

Diffstat:
Msrc/ComputerscareLaundrySoup.cpp | 14++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/ComputerscareLaundrySoup.cpp b/src/ComputerscareLaundrySoup.cpp @@ -18,10 +18,19 @@ public: module = _module; } virtual void onTextChange() override; + int getTextPosition(Vec mousePos) override { + bndSetFont(font->handle); + int textPos = bndIconLabelTextPosition(gVg, textOffset.x, textOffset.y, + box.size.x - 2*textOffset.x, box.size.y - 2*textOffset.y, + -1, 22, text.c_str(), mousePos.x, mousePos.y); + bndSetFont(gGuiFont->handle); + return textPos; + } void draw(NVGcontext *vg) override { nvgScissor(vg, 0, 0, box.size.x, box.size.y); // Background + nvgFontSize(vg, 22); nvgBeginPath(vg); nvgRoundedRect(vg, 0, 0, box.size.x, box.size.y, 5.0); nvgFillColor(vg, nvgRGB(0x00, 0x00, 0x00)); @@ -35,6 +44,7 @@ public: highlightColor.a = 0.5; int begin = min(cursor, selection); int end = (this == gFocusedWidget) ? max(cursor, selection) : -1; + //bndTextField(vg,textOffset.x,textOffset.y+2, box.size.x, box.size.y, -1, 0, 0, const char *text, int cbegin, int cend); bndIconLabelCaret(vg, textOffset.x, textOffset.y+2, box.size.x - 2*textOffset.x, box.size.y - 2*textOffset.y, -1, color, 22, text.c_str(), highlightColor, begin, end); @@ -194,7 +204,7 @@ void onCreate () override absoluteStep[0] would run from 0 to 7 332-4 (332 offset by 4) - + */ void incrementInternalStep(int i) { @@ -323,7 +333,7 @@ struct ComputerscareLaundrySoupWidget : ModuleWidget { addChild(textField); module->textFields[i] = textField; - //active step display + //active step display NumberDisplayWidget3 *display = new NumberDisplayWidget3(); display->box.pos = mm2px(Vec(25,verticalStart - 9.2 +verticalSpacing*i)); display->box.size = Vec(50, 20);