From 68260e0509b1fd5feaacc165986bf257f89fe4b2 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 25 Feb 2014 14:26:32 -0500 Subject: [PATCH] Added platform notes on sliders and spinners. --- controlcandidates.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/controlcandidates.md b/controlcandidates.md index 6d36a97..caf8e96 100644 --- a/controlcandidates.md +++ b/controlcandidates.md @@ -55,3 +55,25 @@ COCOA - NSProgressIndicator for ProgressBar - TODO: - what does NSPathControl look like? + +# Slider Capabilities +Capability | Windows | GTK+ | Cocoa +-|-|-|- +Data Type | int | float | TODO +Can Simulate ints? | yes | TODO | TODO +Mouse Step Snap | 1, fixed | something; likely 0.1 but not sure | TODO +Keyboard Step Snap | configurable | configurable | TODO +Current Value Display | tooltip during drag | label, always visible | TODO +Ticks | configurable display, configurable interval | TODO | TODO +Can Catch Mouse Events to Snap? | I think this is how to do it | TODO | TODO +Preferred Size | given in UI guidelines | natural: 0x0; minimum: TODO | TODO + +# Spinner Capabilities +Capability | Windows | GTK+ | Cocoa +-|-|-|- +Data Type | int | float | TODO +Can Simulate ints? | yes | yes | TODO +Mouse Step Snap | 1, fixed | configurable | TODO +Keyboard Step Snap | 1, fixed | configurable (uses same value as mouse) | TODO +Can Catch Events To Snap? | TODO | no need | TODO +Preferred Size | TODO | TODO | TODO