Codebase list grr.app / HEAD PreferencesPanel.h
HEAD

Tree @HEAD (Download .tar.gz)

PreferencesPanel.h @HEADraw · history · blame

/*
   Grr RSS Reader
   
   Copyright (C) 2006, 2007 Guenther Noack <guenther@unix-ag.uni-kl.de>
   Copyright (C) 2009  GNUstep Application Team
                       Riccardo Mottola

   This application is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.
 
   This application 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 General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. 
*/

#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>

#import "PreferencesComponent.h"
#import "ToolbarDelegate.h"

@interface PreferencesPanel : NSObject <ToolbarDelegate>
{
    IBOutlet NSPanel* window;
    IBOutlet NSView* replacableView;
    
    NSMutableArray* prefComponents;
    NSMutableArray* toolbarItemIdentifiers;
    NSMutableDictionary* toolbarItems; // key is item identifier
}


+(PreferencesPanel*) shared;

-(BOOL) addPreferencesComponent: (id<PreferencesComponent>) aPrefComponent;

-(void)open;
-(void)close;

@end