PageRenderTime 47ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/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. Forge internal preferences view
  4. Copyright (C) 2001 Dusk to Dawn Computing, Inc.
  5. Author: Jeff Teunissen <deek@d2dc.net>
  6. Date: 17 Nov 2001
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License as
  9. published by the Free Software Foundation; either version 2 of
  10. the License, or (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. See the GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public
  16. License along with this program; if not, write to:
  17. Free Software Foundation, Inc.
  18. 59 Temple Place - Suite 330
  19. Boston, MA 02111-1307, USA
  20. */
  21. #ifdef HAVE_CONFIG_H
  22. # include "Config.h"
  23. #endif
  24. #import <PrefsModule/PrefsModule.h>
  25. @interface PrefsAppView: NSView
  26. {
  27. // for controllers to connect to
  28. id bundlesFromUserButton;
  29. id bundlesFromLocalButton;
  30. id bundlesFromNetworkButton;
  31. id bundlesFromSystemButton;
  32. id owner;
  33. }
  34. - (id) initWithOwner: (id) anOwner andFrame: (NSRect) frameRect;
  35. - (id) bundlesFromUserButton;
  36. - (id) bundlesFromLocalButton;
  37. - (id) bundlesFromNetworkButton;
  38. - (id) bundlesFromSystemButton;
  39. @end