2005-07-30 13:22:42 +00:00
|
|
|
/* GormShelfPref.m
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* Author: Gregory Casamento <greg_casamento@yahoo.com>
|
|
|
|
* Date: February 2004
|
|
|
|
*
|
|
|
|
* This class is heavily based on work done by Enrico Sersale
|
|
|
|
* on ShelfPref.m for GWorkspace.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-11-05 23:44:36 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2005-07-30 13:22:42 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-05-13 04:13:57 +00:00
|
|
|
#ifndef INCLUDED_GormPrefController_h
|
|
|
|
#define INCLUDED_GormPrefController_h
|
|
|
|
|
2019-11-03 01:57:39 +00:00
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
#include <AppKit/AppKit.h>
|
2003-05-13 04:13:57 +00:00
|
|
|
|
2005-07-30 19:53:09 +00:00
|
|
|
@interface GormPrefController : NSObject
|
2003-05-13 04:13:57 +00:00
|
|
|
{
|
2005-07-30 19:53:09 +00:00
|
|
|
id panel;
|
2003-05-13 04:13:57 +00:00
|
|
|
id popup;
|
|
|
|
id prefBox;
|
|
|
|
|
|
|
|
id _generalView;
|
|
|
|
id _headersView;
|
2004-02-15 00:50:50 +00:00
|
|
|
id _shelfView;
|
2004-04-18 04:07:06 +00:00
|
|
|
id _colorsView;
|
2004-07-12 04:16:09 +00:00
|
|
|
id _palettesView;
|
2008-09-28 03:01:18 +00:00
|
|
|
id _pluginsView;
|
2005-03-19 09:50:47 +00:00
|
|
|
id _guidelineView;
|
2003-05-13 04:13:57 +00:00
|
|
|
}
|
|
|
|
|
2005-07-30 13:22:42 +00:00
|
|
|
/**
|
|
|
|
* Called when the popup is used to select a pref panel.
|
|
|
|
*/
|
2003-05-13 04:13:57 +00:00
|
|
|
- (void) popupAction: (id)sender;
|
|
|
|
|
2005-07-30 19:53:09 +00:00
|
|
|
/**
|
|
|
|
* Return the preferences panel.
|
|
|
|
*/
|
|
|
|
- (id) panel;
|
2003-05-13 04:13:57 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|