diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-04-20 21:01:02 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-04-20 21:01:02 +0200 |
commit | 60fd5c525b59e429c9b0a4c3d500b66f26ef7c85 (patch) | |
tree | b24eb6a562d5a8ab8aadff60cbabf3ade6cc3307 /dgedit/canvastoolselections.h | |
parent | 35c4f0b6ca508f428c31ab991633142b1384e382 (diff) |
Rework sliders in 'generate' tab. Add 'hold' slider.
Diffstat (limited to 'dgedit/canvastoolselections.h')
-rw-r--r-- | dgedit/canvastoolselections.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dgedit/canvastoolselections.h b/dgedit/canvastoolselections.h index 59786a7..0557520 100644 --- a/dgedit/canvastoolselections.h +++ b/dgedit/canvastoolselections.h @@ -60,7 +60,8 @@ public slots: void clearSelections(); void thresholdChanged(double threshold); void noiseFloorChanged(int t); - void fadeoutChanged(int t); + void holdChanged(int h); + void fadeoutChanged(int f); void setShowPreview(bool show_preview); private: @@ -73,8 +74,9 @@ private: double threshold; double noise_floor; - double fadeout; - + double fadeout; + int hold; + QColor colSelBg; QColor colSel; QColor colActiveSelBg; |