1 /*
2    GMAppKit.h
3 
4    Copyright (C) 1996 Free Software Foundation, Inc.
5 
6    Author: Ovidiu Predescu <ovidiu@net-community.com>
7    Date: November 1997
8 
9    This file is part of the GNUstep GUI Library.
10 
11    This library is free software; you can redistribute it and/or
12    modify it under the terms of the GNU Lesser General Public
13    License as published by the Free Software Foundation; either
14    version 2 of the License, or (at your option) any later version.
15 
16    This library is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
19    Lesser General Public License for more details.
20 
21    You should have received a copy of the GNU Lesser General Public
22    License along with this library; see the file COPYING.LIB.
23    If not, see <http://www.gnu.org/licenses/> or write to the
24    Free Software Foundation, 51 Franklin Street, Fifth Floor,
25    Boston, MA 02110-1301, USA.
26 */
27 
28 #ifndef _GNUstep_H_GMAppKit
29 #define _GNUstep_H_GMAppKit
30 
31 #ifndef GNUSTEP
32 #import <AppKit/AppKit.h>
33 #else
34 #import <AppKit/NSApplication.h>
35 #import <AppKit/NSBox.h>
36 #import <AppKit/NSButton.h>
37 #import <AppKit/NSCell.h>
38 #import <AppKit/NSClipView.h>
39 #import <AppKit/NSColor.h>
40 #import <AppKit/NSControl.h>
41 #import <AppKit/NSFont.h>
42 #import <AppKit/NSImage.h>
43 #import <AppKit/NSMatrix.h>
44 #import <AppKit/NSMenuItem.h>
45 #import <AppKit/NSMenu.h>
46 #import <AppKit/NSPopUpButton.h>
47 #import <AppKit/NSResponder.h>
48 #import <AppKit/NSTextField.h>
49 #import <AppKit/NSScrollView.h>
50 #import <AppKit/NSSecureTextField.h>
51 #import <AppKit/NSView.h>
52 #import <AppKit/NSWindow.h>
53 #import <AppKit/NSPanel.h>
54 #import <AppKit/NSSavePanel.h>
55 #import <AppKit/NSOpenPanel.h>
56 #import <AppKit/NSBrowser.h>
57 #import <AppKit/NSColorWell.h>
58 #import <AppKit/NSImageView.h>
59 #import <AppKit/NSSliderCell.h>
60 #import <AppKit/NSTextFieldCell.h>
61 #import <AppKit/NSFormCell.h>
62 #import <AppKit/NSText.h>
63 #import <AppKit/NSTextView.h>
64 #endif
65 #import <GNUstepGUI/GMArchiver.h>
66 
67 @interface NSApplication (GMArchiverMethods) <ModelCoding>
68 @end
69 
70 @interface NSBox (GMArchiverMethods) <ModelCoding>
71 @end
72 
73 @interface NSButton (GMArchiverMethods) <ModelCoding>
74 @end
75 
76 @interface NSCell (GMArchiverMethods) <ModelCoding>
77 @end
78 
79 @interface NSClipView (GMArchiverMethods) <ModelCoding>
80 @end
81 
82 @interface NSColor (GMArchiverMethods) <ModelCoding>
83 @end
84 
85 @interface NSControl (GMArchiverMethods) <ModelCoding>
86 @end
87 
88 @interface NSFont (GMArchiverMethods) <ModelCoding>
89 @end
90 
91 @interface NSImage (GMArchiverMethods) <ModelCoding>
92 @end
93 
94 @interface NSMatrix (GMArchiverMethods) <ModelCoding>
95 @end
96 
97 @interface NSMenuItem (GMArchiverMethods) <ModelCoding>
98 @end
99 
100 @interface NSMenu (GMArchiverMethods) <ModelCoding>
101 @end
102 
103 @interface NSPopUpButton (GMArchiverMethods) <ModelCoding>
104 @end
105 
106 @interface NSResponder (GMArchiverMethods) <ModelCoding>
107 @end
108 
109 @interface NSTextField (GMArchiverMethods) <ModelCoding>
110 @end
111 
112 @interface NSScrollView (GMArchiverMethods) <ModelCoding>
113 @end
114 
115 @interface NSSecureTextFieldCell (GMArchiverMethods) <ModelCoding>
116 @end
117 
118 @interface NSView (GMArchiverMethods) <ModelCoding>
119 @end
120 
121 @interface NSWindow (GMArchiverMethods) <ModelCoding>
122 @end
123 
124 @interface NSPanel (GMArchiverMethods) <ModelCoding>
125 @end
126 
127 @interface NSSavePanel (GMArchiverMethods) <ModelCoding>
128 @end
129 
130 @interface NSOpenPanel (GMArchiverMethods) <ModelCoding>
131 @end
132 
133 @interface NSBrowser (GMArchiverMethods) <ModelCoding>
134 @end
135 
136 @interface NSColorWell (GMArchiverMethods) <ModelCoding>
137 @end
138 
139 @interface NSImageView (GMArchiverMethods) <ModelCoding>
140 @end
141 
142 @interface NSSliderCell (GMArchiverMethods) <ModelCoding>
143 @end
144 
145 @interface NSTextFieldCell (GMArchiverMethods) <ModelCoding>
146 @end
147 
148 @interface NSFormCell (GMArchiverMethods) <ModelCoding>
149 @end
150 
151 @interface NSText (GMArchiverMethods) <ModelCoding>
152 @end
153 
154 @interface NSTextView (GMArchiverMethods) <ModelCoding>
155 @end
156 
157 #endif /* _GNUstep_H_GMAppKit */
158