]> git.sesse.net Git - vlc/blob - modules/gui/beos/MsgVals.h
Attempt to port new BeOS features from the stable branch.
[vlc] / modules / gui / beos / MsgVals.h
1 /*****************************************************************************
2  * MsgVals.h
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: MsgVals.h,v 1.2 2002/09/30 18:30:27 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 OPEN_PLAYLIST              = 'oppl';
34 const uint32 STOP_PLAYBACK              = 'stpl';
35 const uint32 START_PLAYBACK             = 'play';
36 const uint32 PAUSE_PLAYBACK             = 'papl';
37 const uint32 FASTER_PLAY                = 'fapl';
38 const uint32 SLOWER_PLAY                = 'slpl';
39 const uint32 NORMAL_PLAY                = 'nrpl';
40 const uint32 SEEK_PLAYBACK              = 'seek';
41 const uint32 VOLUME_CHG                 = 'voch';
42 const uint32 VOLUME_MUTE                = 'mute';
43 const uint32 SELECT_CHANNEL             = 'chan';
44 const uint32 SELECT_SUBTITLE    = 'subt';
45 const uint32 PREV_TITLE                 = 'prti';
46 const uint32 NEXT_TITLE                 = 'nxti';
47 const uint32 TOGGLE_TITLE               = 'tgti';
48 const uint32 PREV_CHAPTER               = 'prch';
49 const uint32 NEXT_CHAPTER               = 'nxch';
50 const uint32 TOGGLE_CHAPTER             = 'tgch';
51 const uint32 PREV_FILE                  = 'prfl';
52 const uint32 NEXT_FILE                  = 'nxfl';
53 const uint32 NAVIGATE_PREV              = 'navp';       // could be chapter, title or file
54 const uint32 NAVIGATE_NEXT              = 'navn';       // could be chapter, title or file
55 const uint32 TOGGLE_ON_TOP              = 'ontp';
56 const uint32 TOGGLE_FULL_SCREEN = 'tgfs';
57 const uint32 RESIZE_50                  = 'rshl';
58 const uint32 RESIZE_100                 = 'rsor';
59 const uint32 RESIZE_200                 = 'rsdb';
60 const uint32 RESIZE_TRUE                = 'rstr';
61 const uint32 ASPECT_CORRECT             = 'asco';
62 const uint32 VERT_SYNC                  = 'vsyn';
63 const uint32 WINDOW_FEEL                = 'wfel';
64 const uint32 SCREEN_SHOT                = 'scrn';
65 const uint32 INTERFACE_CREATED  = 'ifcr';  /* see VlcApplication::MessageReceived()
66                                             * in src/misc/beos_specific.cpp */
67
68 #endif  // BEOS_MESSAGE_VALUES_H