Looking for a "Thumb Wheel" control [modified]
-
Does anyone know where I can find a "Thumb Wheel" control? It looks like a dial turned on its side with ridges on its edge (like a quarter) and it would be used like a slider to adjust a value. A picture of a GUI that shows what I am looking for can be found here: http://www.steptools.com/products/stviewer/images/st-viewer.gif[^] Beth -- modified at 10:31 Thursday 6th September, 2007
-
Does anyone know where I can find a "Thumb Wheel" control? It looks like a dial turned on its side with ridges on its edge (like a quarter) and it would be used like a slider to adjust a value. A picture of a GUI that shows what I am looking for can be found here: http://www.steptools.com/products/stviewer/images/st-viewer.gif[^] Beth -- modified at 10:31 Thursday 6th September, 2007
-
-
Does anyone know where I can find a "Thumb Wheel" control? It looks like a dial turned on its side with ridges on its edge (like a quarter) and it would be used like a slider to adjust a value. A picture of a GUI that shows what I am looking for can be found here: http://www.steptools.com/products/stviewer/images/st-viewer.gif[^] Beth -- modified at 10:31 Thursday 6th September, 2007
Did you see Button section on the codeproject?
-
Does anyone know where I can find a "Thumb Wheel" control? It looks like a dial turned on its side with ridges on its edge (like a quarter) and it would be used like a slider to adjust a value. A picture of a GUI that shows what I am looking for can be found here: http://www.steptools.com/products/stviewer/images/st-viewer.gif[^] Beth -- modified at 10:31 Thursday 6th September, 2007
I'm sure you could derive from the scrollbar class to create your own.
-
Does anyone know where I can find a "Thumb Wheel" control? It looks like a dial turned on its side with ridges on its edge (like a quarter) and it would be used like a slider to adjust a value. A picture of a GUI that shows what I am looking for can be found here: http://www.steptools.com/products/stviewer/images/st-viewer.gif[^] Beth -- modified at 10:31 Thursday 6th September, 2007
Create a class which derives from the CScrollBar class. The Thumb Wheel control functionality is similar to the scroll bar functionality. Instead of changing the view position with GetScrollPos() do your task. For example as in the figure shows rotate the image horizantally or vertically. And you can set range of angle (i.e 0-360) with the help of SetScrollRange(). On the OnPaint of your class draw the Thumb Wheel control as per your wish. All the best....:) Let me know your success.
Sreedhar DV