]> git.sesse.net Git - vlc/blob - modules/gui/beos/MsgVals.h
b08b34c3e04cb9ca4ffec139be8249c633df77ee
[vlc] / modules / gui / beos / MsgVals.h
1 /*****************************************************************************
2  * MsgVals.h
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: MsgVals.h,v 1.8 2003/05/08 10:40:31 titer Exp $
6  *
7  * Authors: Tony Castley <tcastley@mail.powerup.com.au>
8  *          Stephan Aßmus <stippi@yellowbites.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #ifndef BEOS_MESSAGE_VALUES_H
26 #define BEOS_MESSAGE_VALUES_H
27
28 #define PLAYING       0
29 #define PAUSED        1
30
31 const uint32 OPEN_FILE          = 'opfl';
32 const uint32 OPEN_DVD           = 'opdv';
33 const uint32 LOAD_SUBFILE       = 'losu';
34 const uint32 SUBFILE_RECEIVED   = 'sure';
35 const uint32 OPEN_PLAYLIST      = 'oppl';
36 const uint32 STOP_PLAYBACK      = 'stpl';
37 const uint32 START_PLAYBACK     = 'play';
38 const uint32 PAUSE_PLAYBACK     = 'papl';
39 const uint32 FASTER_PLAY        = 'fapl';
40 const uint32 SLOWER_PLAY        = 'slpl';
41 const uint32 NORMAL_PLAY        = 'nrpl';
42 const uint32 SEEK_PLAYBACK      = 'seek';
43 const uint32 VOLUME_CHG         = 'voch';
44 const uint32 VOLUME_MUTE        = 'mute';
45 const uint32 SELECT_CHANNEL     = 'chan';
46 const uint32 SELECT_SUBTITLE    = 'subt';
47 const uint32 PREV_TITLE         = 'prti';
48 const uint32 NEXT_TITLE         = 'nxti';
49 const uint32 TOGGLE_TITLE       = 'tgti';
50 const uint32 NAVIGATE_MENU      = 'navm';
51 const uint32 PREV_CHAPTER       = 'prch';
52 const uint32 NEXT_CHAPTER       = 'nxch';
53 const uint32 TOGGLE_CHAPTER     = 'tgch';
54 const uint32 PREV_FILE          = 'prfl';
55 const uint32 NEXT_FILE          = 'nxfl';
56 const uint32 NAVIGATE_PREV      = 'navp';    // could be chapter, title or file
57 const uint32 NAVIGATE_NEXT      = 'navn';    // could be chapter, title or file
58 const uint32 OPEN_PREFERENCES   = 'pref';
59 const uint32 OPEN_MESSAGES      = 'mess';
60 const uint32 TOGGLE_ON_TOP      = 'ontp';
61 const uint32 SHOW_INTERFACE     = 'shin';
62 const uint32 TOGGLE_FULL_SCREEN = 'tgfs';
63 const uint32 RESIZE_50          = 'rshl';
64 const uint32 RESIZE_100         = 'rsor';
65 const uint32 RESIZE_200         = 'rsdb';
66 const uint32 RESIZE_TRUE        = 'rstr';
67 const uint32 ASPECT_CORRECT     = 'asco';
68 const uint32 VERT_SYNC                  = 'vsyn';
69 const uint32 WINDOW_FEEL                = 'wfel';
70 const uint32 SCREEN_SHOT                = 'scrn';
71 const uint32 MSG_UPDATE                 = 'updt';
72 const uint32 MSG_SOUNDPLAY              = 'move';       // drag'n'drop from soundplay playlist
73 const uint32 INTERFACE_CREATED  = 'ifcr';  /* see VlcApplication::MessageReceived()
74                                             * in src/misc/beos_specific.cpp */
75
76 #endif    // BEOS_MESSAGE_VALUES_H