macOS: Use dark appearance for panel modals
[vlc.git] / modules / gui / macosx / VLCTextfieldPanelController.m
blobcab93a29bd906e1aec98e2217c0fa092eb2db03c
1 /*****************************************************************************
2  * VLCTextfieldPanelController.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2012 Felix Paul Kühne
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
24 #import "VLCTextfieldPanelController.h"
26 @interface VLCTextfieldPanelController()
28     TextfieldPanelCompletionBlock _completionBlock;
31 @end
33 @implementation VLCTextfieldPanelController
36 - (id)init
38     self = [super initWithWindowNibName:@"TextfieldPanel"];
40     return self;
43 - (IBAction)windowElementAction:(id)sender
45     [self.window orderOut:sender];
46     [NSApp endSheet: self.window];
48     if (_completionBlock)
49         _completionBlock(sender == _okButton ? NSOKButton : NSCancelButton, [_textField stringValue]);
52 - (void)runModalForWindow:(NSWindow *)window completionHandler:(TextfieldPanelCompletionBlock)handler;
54     [self window];
56     [_titleLabel setStringValue:self.titleString];
57     [_subtitleLabel setStringValue:self.subTitleString];
58     [_cancelButton setTitle:self.cancelButtonString];
59     [_okButton setTitle:self.okButtonString];
60     [_textField setStringValue:@""];
62     _completionBlock = [handler copy];
64     [NSApp beginSheet:self.window modalForWindow:window modalDelegate:self didEndSelector:NULL contextInfo:nil];
67 @end