]> git.sesse.net Git - vlc/blob - modules/gui/macosx/VLCUIWidgets.h
macosx: CAS: sync steppers and fields, and add NumberFormatters (fixes #8598)
[vlc] / modules / gui / macosx / VLCUIWidgets.h
1 /*****************************************************************************
2  * VLCUIWidgets.h: Widgets for VLC's extensions dialogs for Mac OS X
3  *****************************************************************************
4  * Copyright (C) 2009-2012 the VideoLAN team and authors
5  * $Id$
6  *
7  * Authors: Pierre d'Herbemont <pdherbemont # videolan dot>,
8  *          Brendon Justin <brendonjustin@gmail.com>
9  *
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.
14  *
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.
19  *
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  *****************************************************************************/
24
25 #import <Cocoa/Cocoa.h>
26 #import "CompatibilityFixes.h"
27 #import <vlc_extensions.h>
28
29 @class VLCDialogGridView;
30
31 @interface VLCDialogButton : NSButton
32 {
33     extension_widget_t *widget;
34 }
35
36 @property (readwrite) extension_widget_t *widget;
37 @end
38
39
40 @interface VLCDialogPopUpButton : NSPopUpButton
41 {
42     extension_widget_t *widget;
43 }
44
45 @property (readwrite) extension_widget_t *widget;
46 @end
47
48
49 @interface VLCDialogTextField : NSTextField
50 {
51     extension_widget_t *widget;
52 }
53
54 @property (readwrite) extension_widget_t *widget;
55 @end
56
57
58 @interface VLCDialogWindow : NSWindow
59 {
60     extension_dialog_t *dialog;
61     BOOL has_lock;
62 }
63
64 @property (readwrite) extension_dialog_t *dialog;
65 @property (readwrite) BOOL has_lock;
66 @end
67
68
69 @interface VLCDialogList : NSTableView <NSTableViewDataSource>
70 {
71     extension_widget_t *widget;
72     NSMutableArray *contentArray;
73 }
74
75 @property (readwrite) extension_widget_t *widget;
76 @property (readwrite, retain) NSMutableArray *contentArray;
77 @end
78
79
80 @interface VLCDialogGridView : NSView
81 {
82     NSUInteger _rowCount, _colCount;
83     NSMutableArray *_griddedViews;
84 }
85
86 - (void)addSubview:(NSView *)view atRow:(NSUInteger)row column:(NSUInteger)column rowSpan:(NSUInteger)rowSpan colSpan:(NSUInteger)colSpan;
87 - (NSSize)flexSize:(NSSize)size;
88 - (void)removeSubview:(NSView *)view;
89
90 @property (readonly) NSUInteger numViews;
91
92 @end