Re: Custom NSSlider

2011-06-17 Thread Nick
Thanks guys Depends on what you mean by "everyone" ... ? > > QTMovieView and NSMovieView and the likes have built-in controllers that > you can just use out of the box. Many places use that, however they look > kinda 10.4-ish. If you want some of the more modern looks (either like > Spotlight ha

Re: Custom NSSlider

2011-06-16 Thread Uli Kusterer
On 16.06.2011, at 03:18, Nick wrote: > I am wondering if there are any free custom NSSlider controles available > with changed knob and trackbar images? > The ones similar to QuickTime Player and iTunes (for a player application). > Does everyone implement them from scratch by subclassing the cell

Re: Custom NSSlider

2011-06-16 Thread Stephen Blinkhorn
On 15 Jun 2011, at 19:18, Nick wrote: Hello I am wondering if there are any free custom NSSlider controles available with changed knob and trackbar images? The ones similar to QuickTime Player and iTunes (for a player application). Does everyone implement them from scratch by subclassing th

Re: Custom NSSlider

2011-06-16 Thread Vyacheslav Karamov
Look towards BWToolkit. But note: you should better use XCode 3.2.6, not 4.0.2, cause XCode 4.x lack of plug-ins support. 16-Jun-11 11:20, Nick пишет: Basically I was looking for some freely available fancy controls, that are suitable for players. Like AlphaControls for Delphi (for Windows) o

Re: Custom NSSlider

2011-06-16 Thread Nick
Basically I was looking for some freely available fancy controls, that are suitable for players. Like AlphaControls for Delphi (for Windows) or something. Specifically for custom sliders. (I am writing a custom player that can play files over network, and, on the movie view, when the user moves t

Re: Custom NSSlider

2011-06-16 Thread Vyacheslav Karamov
I'm currently support project which use custom NSSlider. 16-Jun-11 04:18, Nick пишет: Hello I am wondering if there are any free custom NSSlider controles available with changed knob and trackbar images? The ones similar to QuickTime Player and iTunes (for a player application). Does everyone i

Re: Custom NSSlider?

2008-12-01 Thread Jean-Nicolas Jolivet
huh, nevermind, it was actually a stupid mistake on my end... I connected the slider to the sliderEnded action instead of sliderMoved (it's weird Im sure I double-checked...) anyway It's working now! thanks a lot J-N On 1-Dec-08, at 10:06 PM, Jean-Nicolas Jolivet wrote: Yup, still ge

Re: Custom NSSlider?

2008-12-01 Thread Jean-Nicolas Jolivet
Yup, still getting them, I also tried to move the 3 lines at the beginning of the sliderMoved method, still no luck...apparently it's not the binding thats keeping it from working I guess? J-N On 1-Dec-08, at 10:00 PM, James Walker wrote: Jean-Nicolas Jolivet wrote: Thanks for the info, I

Re: Custom NSSlider?

2008-12-01 Thread James Walker
Jean-Nicolas Jolivet wrote: Thanks for the info, I found the piece of code you were referring to, but somehow I can't get it to work... here's my code: - (IBAction)sliderMoved:(id)sender { SEL trackingEndedSelector = @selector(sliderEnded:); [NSObject cancelPreviousPerformRequestsWithTa

Re: Custom NSSlider?

2008-12-01 Thread Jean-Nicolas Jolivet
Thanks for the info, I found the piece of code you were referring to, but somehow I can't get it to work... here's my code: - (IBAction)sliderMoved:(id)sender { SEL trackingEndedSelector = @selector(sliderEnded:); [NSObject cancelPreviousPerformRequestsWithTarget:self

Re: Custom NSSlider?

2008-12-01 Thread James Walker
Jean-Nicolas Jolivet wrote: I was wondering if its possible to have an NSSlider send an action after the user finished dragging, while still providing continuous updates? Look in the archives for the October thread named "notification of NSSlider end of tracking". -- James W. Walker, Innov

Re: Custom NSSlider?

2008-12-01 Thread Kevin Gessner
What if you handle the label via bindings, but your long process via the target/action? Then you could use -[NSSlider sendActionOn:] (inherited from NSControl) with NSLeftMouseUpMask to only send the action on drag end. It seems like this would work for a slider, though I'm not sure if the