core: remove the 360 video viewpoint zoom
[vlc.git] / modules / gui / macosx / VLCAboutWindowController.h
blobff0ed5f6a116911da4b53a0bfd3901ee41deeb74
1 /*****************************************************************************
2 * VLCAboutWindowController.h
3 *****************************************************************************
4 * Copyright (C) 2001-2013 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
8 * Felix Paul Kühne <fkuehne -at- videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #import <Cocoa/Cocoa.h>
27 @interface VLCAboutWindowController : NSWindowController<NSWindowDelegate>
29 /* main about panel and stuff related to its views */
30 IBOutlet id o_name_version_field;
31 IBOutlet id o_revision_field;
32 IBOutlet id o_copyright_field;
33 IBOutlet id o_credits_textview;
34 IBOutlet id o_credits_scrollview;
35 IBOutlet id o_gpl_btn;
36 IBOutlet id o_credits_btn;
37 IBOutlet id o_authors_btn;
38 IBOutlet id o_name_field;
39 IBOutlet id o_icon_view;
40 IBOutlet id o_joinus_txt;
41 IBOutlet id o_trademarks_txt;
44 - (void)showAbout;
45 - (void)showGPL;
46 - (IBAction)buttonAction:(id)sender;
48 @end