X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_UIFramework.pde;h=ca744646078e8780cf50cc6a50f10b9f4b3ab4a2;hb=22cb1606e32aac75561f2ad477bb2d9aa13531cf;hp=3ca493b1658d365258104bc62381f826a35d8042;hpb=34327c962351112e07c3d93f56ffc543fac45b58;p=SugarCubes.git diff --git a/_UIFramework.pde b/_UIFramework.pde index 3ca493b..ca74464 100644 --- a/_UIFramework.pde +++ b/_UIFramework.pde @@ -21,6 +21,8 @@ final PFont defaultTitleFont = createFont("Myriad Pro", 10); public abstract class UIObject { + protected final static int DOUBLE_CLICK_THRESHOLD = 300; + protected final List children = new ArrayList(); protected boolean needsRedraw = true; @@ -314,15 +316,39 @@ public class UILabel extends UIObject { } } +public class UICheckbox extends UIButton { + + private boolean firstDraw = true; + + public UICheckbox(float x, float y, float w, float h) { + super(x, y, w, h); + setMomentary(false); + } + + public void onDraw(PGraphics pg) { + pg.stroke(borderColor); + pg.fill(active ? activeColor : inactiveColor); + pg.rect(0, 0, h, h); + if (firstDraw) { + pg.fill(labelColor); + pg.textFont(defaultItemFont); + pg.textAlign(LEFT, CENTER); + pg.text(label, h + 4, h/2); + firstDraw = false; + } + } + +} + public class UIButton extends UIObject { - private boolean active = false; - private boolean isMomentary = false; - private color borderColor = #666666; - private color inactiveColor = #222222; - private color activeColor = #669966; - private color labelColor = #999999; - private String label = ""; + protected boolean active = false; + protected boolean isMomentary = false; + protected color borderColor = #666666; + protected color inactiveColor = #222222; + protected color activeColor = #669966; + protected color labelColor = #999999; + protected String label = ""; public UIButton(float x, float y, float w, float h) { super(x, y, w, h); @@ -359,6 +385,10 @@ public class UIButton extends UIObject { } } + public boolean isActive() { + return active; + } + public UIButton setActive(boolean active) { this.active = active; onToggle(active); @@ -574,6 +604,18 @@ public class UIParameterKnob extends UIParameterControl { pg.text(knobLabel, knobSize/2, knobSize + knobLabelHeight - 2); } + private long lastMousePress = 0; + public void onMousePressed(float mx, float my) { + super.onMousePressed(mx, my); + long now = millis(); + if (now - lastMousePress < DOUBLE_CLICK_THRESHOLD) { + parameter.reset(); + lastMousePress = 0; + } else { + lastMousePress = now; + } + } + public void onMouseDragged(float mx, float my, float dx, float dy) { if (parameter != null) { float value = constrain(parameter.getValuef() - dy / 100., 0, 1); @@ -611,7 +653,7 @@ public class UIParameterSlider extends UIParameterControl { if (mx >= handleLeft && mx < handleLeft + handleWidth) { editing = true; } else { - if ((now - lastClick) < 300 && abs(mx - doubleClickX) < 3) { + if ((now - lastClick) < DOUBLE_CLICK_THRESHOLD && abs(mx - doubleClickX) < 3) { parameter.setValue(doubleClickMode); } doubleClickX = mx; @@ -675,7 +717,7 @@ public class UIScrollList extends UIObject { itemColor = #707070; } float factor = even ? .92 : 1.08; - itemColor = color(hue(itemColor), saturation(itemColor), min(100, factor*brightness(itemColor))); + itemColor = lx.scaleBrightness(itemColor, factor); pg.noStroke(); pg.fill(itemColor); @@ -690,7 +732,7 @@ public class UIScrollList extends UIObject { } if (hasScroll) { pg.noStroke(); - pg.fill(color(0, 0, 100, 15)); + pg.fill(0x26ffffff); pg.rect(w-12, 0, 12, h); pg.fill(#333333); pg.rect(w-12, scrollYStart, 12, scrollYHeight); @@ -750,9 +792,9 @@ public class UIScrollList extends UIObject { } public void setScrollOffset(int offset) { - scrollOffset = constrain(offset, 0, items.size() - numVisibleItems); - scrollYStart = (int) (scrollOffset * h / items.size()); - scrollYHeight = (int) (numVisibleItems * h / (float) items.size()); + scrollOffset = constrain(offset, 0, max(0, items.size() - numVisibleItems)); + scrollYStart = round(scrollOffset * h / items.size()); + scrollYHeight = round(numVisibleItems * h / items.size()); redraw(); }