Don't need the English form of these
[adiumx.git] / Source / LNAboutBoxController.h
blob5456213920859965acf1264cd428f1dec92e1ee0
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 NSString *buildNumber, *buildDate;
32 int numberOfDuckClicks, numberOfBuildFieldClicks;
34 //Scrolling
35 NSTimer *scrollTimer;
36 NSTimer *eventLoopScrollTimer;
37 float scrollLocation;
38 int maxScroll;
39 float scrollRate;
42 + (LNAboutBoxController *)aboutBoxController;
43 - (IBAction)adiumDuckClicked:(id)sender;
44 - (IBAction)buildFieldClicked:(id)sender;
45 - (IBAction)visitHomepage:(id)sender;
46 - (IBAction)showLicense:(id)sender;
47 - (IBAction)hideLicense:(id)sender;
49 @end