Skip navigation.
 
mlRe: First-responder action in TextEdit
FROM : Todd Ransom
DATE : Sat Jul 22 18:17:34 2006

MultiplePageView is a subclass of NSView so it already has a place 
for them, -[NSView subviews]. There is no need for MultiplePageView 
to override that method as NSView's implementation already does what 
it needs. New pages are added and removed by the Document class in 
response to messages from the layout manager using the addPage and 
removePage methods.

Todd Ransom
Return Self Software
http://returnself.com



On Jul 21, 2006, at 12:42 PM, <email_removed> wrote:

>> MultiplePageView is just a container for a series of NSTextViews. The
>> copy action is implemented in NSTextView.
>>

>
>    But then, how is this series related to MultiplePageView inside
> the code ? I do not see in MultiplePageView.h
> any array of NSTextViews, for example.
>
>
>                                                                Ewan
>

Related mailsAuthorDate
mlFirst-responder action in TextEdit delanoy Jul 21, 12:27
mlRe: First-responder action in TextEdit Todd Ransom Jul 21, 19:11
mlRe: First-responder action in TextEdit delanoy Jul 21, 20:42
mlRe: First-responder action in TextEdit Todd Ransom Jul 22, 18:17