This file is indexed.

/usr/include/GNUstep/Renaissance/NSViewSize.h is in librenaissance0-dev 0.9.0-4build7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* -*-objc-*-
   NSViewSize.h

   Copyright (C) 2002 Free Software Foundation, Inc.

   Author: Nicola Pero <n.pero@mi.flashnet.it>
   Date: April 2002, November 2002

   This file is part of GNUstep Renaissance

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.
   
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with this library; see the file COPYING.LIB.
   If not, write to the Free Software Foundation,
   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#ifndef _GNUstep_H_NSViewSize
#define _GNUstep_H_NSViewSize

#ifndef GNUSTEP
# include <Foundation/Foundation.h>
# include <AppKit/AppKit.h>
# include "GNUstep.h"
#else
# include <AppKit/NSView.h>
#endif

/* 
 * The gui API does not always support a satisfactory native autosizing
 * mechanism - most classes have some sort of autosizing, more or less
 * satisfactory, but not all.  We really need a good working one - if that
 * doesn't happen, we are in serious trouble.  So by using categories, we
 * implement our own autosizing mechanism on top on the gui API one -
 * mostly wrapping the gui one (which is -sizeToFit), but, by using a
 * wrapper, we know we can modify the autosizing behaviour whenever it is
 * not up to our needs.  This is not always possible ... we do what we can
 * here, and try to work around unsolvable problems here by inserting
 * additional intermediate NSViews in the view tree when we use the
 * objects.
 */

@interface NSView (sizeToContent)

/* 
 * Changes the size of the view so that it exactly fits its content.
 * In the gui API -sizeToFit is similar ... so this method is often a
 * wrapper around -sizeToFit.  The reason we need a wrapper is that in
 * the gui it's not clear if -sizeToFit fits the size to the contents
 * or the contents to the size! ... in many cases its implementation
 * is sort of broken in that respect - we want to make sure we have a
 * reliable portable sizeToFitContent implementation under our control
 * here.
 *
 * The default implementation does nothing - it just assumes that the
 * view has been correctly sized by whoever set it up.  Most
 * subclasses will override that behaviour using the knowledge of the
 * specific data they display.
 */
- (void) sizeToFitContent;

/*
 * This returns the minimum size needed to display the content.  The
 * default implementation is complex, because there is no way of
 * getting the actual minimumSizeForContent for standard controls; the
 * best you can do is use -sizeToFit (or our more consistently correct
 * wrapper -sizeToFitContent).  What we do is, we save the current
 * frame of the view; we call sizeToFitContent; we read the size
 * (which we interpret as the minimumSizeForContent); then we restore
 * the original frame, and return the minimum size we determined.
 *
 * It would all be more logical if the gui had provided -minimumSize
 * and defined -(void) sizeToFit {[self setFrameSize: [self
 * minimumSize]];}.
 *
 * Because of this complex/perverse implementation, the less you call
 * this method, the better. :-)
 */
- (NSSize) minimumSizeForContent;

@end

#endif /* _GNUstep_H_NSViewSize */