demux: mkv: handle WAVE_FORMAT_MPEG_ADTS_AAC
[vlc.git] / modules / gui / macosx / VLCKeyboardBacklightControl.h
blobecbb308f6c43e23e300e1ffb16d8c72aa3ae4e34
1 /*****************************************************************************
2 * VLCKeyboardBlacklightControl.h: MacBook keyboard backlight control for VLC
3 *****************************************************************************
4 * Copyright (C) 2015 VLC authors and VideoLAN
7 * Authors: Maxime Mouchet <max@maxmouchet.com>
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.
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.
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 <Foundation/Foundation.h>
26 @interface VLCKeyboardBacklightControl : NSObject
28 /*!
29 * Initialize an instance of KeyboardBacklight.
31 * Note: this will return nil if the connection to
32 * the controller could not be opened.
34 - (id)init;
36 /*!
37 * Smoothly turn on backlight on MacBook keyboard.
39 * Try to restore the previous brightness level. If the user has put
40 * the backlight on manually (using hardware keys), nothing will be done.
42 - (void)lightsUp;
44 /*!
45 * Smoothly turn off backlight on MacBook keyboard.
47 - (void)lightsDown;
49 /*!
50 * Smoothly switch on or off backlight on MacBook keyboard.
51 * This will return immediately.
53 - (void)switchLightsAsync:(BOOL)on;
55 /*!
56 * Instantly switch on or off backlight on MacBook keyboard.
58 - (void)switchLightsInstantly:(BOOL)on;
60 @end