Put NSAutoreleasePool usage around other distributed notification observer methods
[adiumx.git] / Source / AICLPreferences.h
blob5420f390dbe4ac332b04450d8fe3a8ace49fd0d3
1 /*
2 * Adium is the legal property of its developers, whose names are listed in the copyright file included
3 * with this source distribution.
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the License,
7 * or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11 * Public License for more details.
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 #import <Adium/AIPreferencePane.h>
19 #define PREF_GROUP_CONTACT_LIST @"Contact List"
21 @interface AICLPreferences : AIPreferencePane {
22 IBOutlet NSTableView *tableView_layout;
23 IBOutlet NSTableView *tableView_theme;
25 IBOutlet NSButton *button_layoutDelete;
26 IBOutlet NSButton *button_themeDelete;
27 IBOutlet NSButton *button_layoutEdit;
28 IBOutlet NSButton *button_themeEdit;
30 NSString *currentLayoutName;
31 NSString *currentThemeName;
33 NSArray *layoutArray;
34 NSArray *themeArray;
36 NSImage *layoutStandard;
37 NSImage *layoutBorderless;
38 NSImage *layoutMockie;
39 NSImage *layoutPillows;
42 - (void)xtrasChanged:(NSNotification *)notification;
43 - (void)updateLayouts;
44 - (void)updateThemes;
45 - (void)updateSelectedLayoutAndTheme;
47 //Editing
48 - (IBAction)spawnLayout:(id)sender;
49 - (IBAction)spawnTheme:(id)sender;
50 - (IBAction)editTheme:(id)sender;
51 - (IBAction)editLayout:(id)sender;
52 - (IBAction)deleteLayout:(id)sender;
53 - (IBAction)deleteTheme:(id)sender;
55 //Table Delegate
56 - (int)numberOfRowsInTableView:(NSTableView *)tableView;
57 - (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row;
58 - (BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(int)row;
59 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn row:(int)row;
61 @end