Added `-[NSArray validateAsPropertyList]` and `-[NSDictionary validateAsPropertyList...
[adiumx.git] / Source / LNAboutBoxController.h
blobf76f45a3c755549f5518430423c009cbb81d89c0
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/AIWindowController.h>
19 @interface LNAboutBoxController : AIWindowController {
20 IBOutlet NSPanel *panel_licenseSheet;
21 IBOutlet NSTextView *textView_license;
23 IBOutlet NSButton *button_duckIcon;
24 IBOutlet NSButton *button_buildButton;
25 IBOutlet NSButton *button_homepage;
26 IBOutlet NSButton *button_license;
27 IBOutlet NSTextField *textField_version;
28 IBOutlet NSTextView *textView_credits;
30 //Version and duck clicking
31 int numberOfDuckClicks, numberOfBuildFieldClicks;
33 //Scrolling
34 NSTimer *scrollTimer;
35 NSTimer *eventLoopScrollTimer;
36 float scrollLocation;
37 int maxScroll;
38 float scrollRate;
41 + (LNAboutBoxController *)aboutBoxController;
42 - (IBAction)adiumDuckClicked:(id)sender;
43 - (IBAction)buildFieldClicked:(id)sender;
44 - (IBAction)visitHomepage:(id)sender;
45 - (IBAction)showLicense:(id)sender;
46 - (IBAction)hideLicense:(id)sender;
48 @end