Tagged Questions
The nsscroller tag has no wiki summary.
5
votes
2answers
2k views
Overlay NSScroller over content
Is there any way to overlay the NSScroller over the content of the scroll view (like in iOS)? I've already tried several approaches:
a) setting the frame of the scroll view content view (NSClipView) ...
4
votes
4answers
846 views
NSScrollview and transparent, overlay NSScroller subclasses
I have made a slick NSScroller subclass, but can't figure out how to make it overlay on top of the NSScrollView instead of pushing the documentView aside.
Here you can see the background of a ...
3
votes
1answer
1k views
Drawing custom NSScroller in NSScrollView problem
I'm trying to draw a custom NSScroller and I got mostly everything I wanted to work to work but, when I try and get rid of the knobSlot, it will just continuously re-draw the knob:
That is when I ...
2
votes
2answers
128 views
How to create a thin scroll bar in Mac OS X Lion
How would I go about create a thin scroll bar like in the Stickies app on OSX Lion?
2
votes
2answers
94 views
Modifying the length of an NSScroller
I'm using an NSScrollView in my Cocoa application, and I want to customize the length of the horizontal scroller. The content of the scroll view is broken up into two main areas: a fixed-width area on ...
2
votes
1answer
163 views
Subclass of NSScroller not drawing
I have an NSScrollView and I'd like to know when the user mouseDown's on it's NSScroller. When subclassed NSScroller (to override mouseDown), my NSScrollView's horizontal scroller is no longer ...
2
votes
0answers
126 views
Issue with NSScrollView
I have a NSScrollView containng an iKImageBrowserView. If I do not call setWantsLayer:YES on the scrollview, the vertical scroller is never shown.
Do you know what can be the issue and hos to fix it ...
2
votes
1answer
611 views
Subclassing NSScroller, how to get rid of the white square in the lower right corner?
I've created an iTunes like subclass of NSScroller, however if both the horizontal and vertical scrollers are visible in an NSScrollView or NSTableView I'm left with an ugly white square in the lower ...
1
vote
2answers
104 views
How can I automatically hide an NSScroller in Lion?
I have an NSScroller that is used to scroll some complete custom view of mine. With [scroller setScrollerStyle:[NSScroller preferredScrollerStyle]] I get the correct style of the scroller. Now when ...
1
vote
0answers
87 views
How to autoscroll an NSTextView smoothly in a specific time period?
How can I autoscroll an NSTextView smoothly in a specific time period (like a teleprompter)?
For example: The time period amounts 4 minutes. The NSTextView should be at the beginning of the the text ...
1
vote
1answer
642 views
Custom NSScroller issues
I'm trying to subclass NSScroller in order to draw my own scroller knob. To do this, I've subclassex NSScrollView and usex the following code to instantiate my custom NSScrollers:
- ...
1
vote
2answers
336 views
how to customize NSTokenField like in “To/ CC” fields in mac mail?
I am able to work with NSTokenField, it is easy to use.. but I want your suggestions on how can I customize it just like it is in "To/ CC" fields in mac mail ie. when no. of tokens in a token field ...
1
vote
1answer
328 views
NSScroller graphical glitches/lag
I have the following NSScroller subclass that creates a scroll bar with a rounded white knob and no arrows/slot (background):
@implementation IGScrollerVertical
- (void)drawKnob
{
NSRect ...
0
votes
1answer
34 views
NSScrollView and lion .. is it possible to only show scrollbars when scrolling
Is it possible to have an NSScrollView ignore the system preferences setting and only show scrollers when scrolling. My application is designed for the overlay style scrollers only unfortunately, so ...
0
votes
0answers
46 views
NSScrollerStyleOverlay - Scrollbar not seen
I'm trying to apply NSScrollerStyleOverlay to the verticalscrollbar of a scrollview.But when i apply this, the scroll bar is not seen.Following is my code.How can i fix this issue?
{- (void) tile
{
...
0
votes
1answer
38 views
How to change NSScroller length
Is there any api to change the scroller length, I would like to do the same without subclassing NSScroller.
0
votes
0answers
46 views
Not able to move the NSScroller to end position in a NSScrollView
I subclassed NSScroller to customize the scrollers. Every thing worked fine but when altered the knobRect I was not able to move the scroller to the end of the scrollview. I was able to move the ...
0
votes
1answer
175 views
Set vertical scroller style in NSScrollView
How can I set the vertical scroller style in NSScrollView?
0
votes
2answers
153 views
Can NSScrollView scroll if setHasHorizontalScroller:NO?
Is it possible to 'hide' the scrollers of an NSScrollView and still get gestural scrolling behavior?
0
votes
1answer
74 views
Equivalent of UIScrollViewDelegate in Cocoa?
I am implementing a custom NSScroller class and I need to know when the scrollview is about to scroll and when it finished doing so. What would be an equivalent of UIScrollViewDelegate's ...
0
votes
2answers
614 views
Custom NSSroller inside NSScrollView
I have a IKImageBrowserView embedded inside an NSScrollView.
I'm trying achieve scroll bars like those we can see in Lion or other apps like Sparrow and Reeder. I would like my scroll bars to go over ...
0
votes
0answers
55 views
NSScrollView scroll the view below the keyWindow
i have a strange issue boring me for a long time,i generate a custom borderless window,within a NSTextView in a NSScrollerView ,and i subclass the NSScroller,now ,when i scroll the textview,it also ...
0
votes
1answer
378 views
How to make knob track of a NSScroller transparent?
This is my application screenshot.There is only one NSScrollView on the window.I have made the other parts of the scrollview transparent,except the knob slot.
Here is my draw code for custom ...
0
votes
1answer
82 views
Link scrolling of two tables
How can I link (synchronize) the scrolling of two NSTableViews (or their underlying NSScrollViews) in Cocoa AppKit?
I tried simply setting the scroller of one to the scroller of the other, but this ...
0
votes
2answers
886 views
How to draw a transparent NSScroller
I'm subclassing NSScroller to try to make it look similar to how "scrollbars" look on iOS. I want it to just be an overlay representing the current position that is drawn OVER what is under it. For ...
0
votes
1answer
193 views
How do I increase the width of an NSScroller in a WebView
I am developing a web browser for a touch-screen kiosk and the scrollbars on the WebView are impractically small for being able to scroll using them on a touch-screen.
Is there anyway to increase the ...
0
votes
2answers
280 views
How to remove square drawn around window resize handle in an NSScrollview?
I have an NSScrollview that takes up an entire window. The scrollview has a vertical scrollbar but no horizontal scrollbar. The window color is gray. The window is resizable.
Cocoa automatically ...
0
votes
1answer
719 views
How to use iTunes like scrollbars
what is the best way to display iTunes like scrollers in Leopard? Is there a 'system call' to change the look and feel of scrollers in cocoa or carbon?