/System/Applications/Preferences/Modules/PrefsApp/PrefsAppView.h
C Header | 54 lines | 18 code | 7 blank | 29 comment | 0 complexity | 5625215b89b270c650ae85432d591221 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1
1/* 2 ForgePrefsView.h 3 4 Forge internal preferences view 5 6 Copyright (C) 2001 Dusk to Dawn Computing, Inc. 7 8 Author: Jeff Teunissen <deek@d2dc.net> 9 Date: 17 Nov 2001 10 11 This program is free software; you can redistribute it and/or 12 modify it under the terms of the GNU General Public License as 13 published by the Free Software Foundation; either version 2 of 14 the License, or (at your option) any later version. 15 16 This program 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. 19 20 See the GNU General Public License for more details. 21 22 You should have received a copy of the GNU General Public 23 License along with this program; if not, write to: 24 25 Free Software Foundation, Inc. 26 59 Temple Place - Suite 330 27 Boston, MA 02111-1307, USA 28*/ 29 30#ifdef HAVE_CONFIG_H 31# include "Config.h" 32#endif 33 34#import <PrefsModule/PrefsModule.h> 35 36@interface PrefsAppView: NSView 37{ 38 // for controllers to connect to 39 id bundlesFromUserButton; 40 id bundlesFromLocalButton; 41 id bundlesFromNetworkButton; 42 id bundlesFromSystemButton; 43 44 id owner; 45} 46 47- (id) initWithOwner: (id) anOwner andFrame: (NSRect) frameRect; 48 49- (id) bundlesFromUserButton; 50- (id) bundlesFromLocalButton; 51- (id) bundlesFromNetworkButton; 52- (id) bundlesFromSystemButton; 53 54@end