Mercurial > mplayer.hg
annotate Gui/events.h @ 5699:1dde9686d33b
Good evening ladies and gentleman and welcome to the latest
installment of the ongoing show "Reworking the docs for fun and
profit". Your host Diego will be assisted by Nilmoni in presenting
you:
- spellchecking in all its glory
- a grammar to the envy of all native speakers
- answers now hopefully so clear that their respective questions shall
never be asked again
Somebody from the public raises his voice: "What about HTML errors?"
The host is quick to answer: "Yes, there have been corrections." From
the back of the auditory comes a subdued question: "And the FONT
tags..?" The room falls silent. There is no answer and the host
twitches. Finally the words "They have not been touched." escape from
his mouth, barely audible. A murmur erupts but the jury nods and
calms the crowd "Time to get back to serious hacking.". The host
leaves the stage under polite applause and everybody scuttles off for
their notebooks...
author | arpi |
---|---|
date | Fri, 19 Apr 2002 07:30:49 +0000 |
parents | 3473ca9ef158 |
children | cf2c2b92d1a7 |
rev | line source |
---|---|
1693 | 1 |
2 #ifndef _MYEVENTHANDLER | |
3 #define _MYEVENTHANDLER | |
4 | |
5 // --- User events ------ | |
6 | |
7 #define evNone 0 | |
8 #define evPlay 1 | |
9 #define evStop 2 | |
10 #define evPause 3 | |
11 #define evPrev 6 | |
12 #define evNext 7 | |
13 #define evLoad 8 | |
14 #define evEqualeaser 9 | |
15 #define evPlayList 10 | |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
16 #define evIconify 11 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
17 #define evAbout 12 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
18 #define evLoadPlay 13 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
19 #define evPreferences 14 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
20 #define evSkinBrowser 15 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
21 #define evPlaySwitchToPause 16 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
22 #define evPauseSwitchToPlay 17 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
23 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
24 #define evBackward10sec 18 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
25 #define evForward10sec 19 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
26 #define evBackward1min 20 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
27 #define evForward1min 21 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
28 #define evBackward10min 22 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
29 #define evForward10min 23 |
1693 | 30 |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
31 #define evNormalSize 24 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
32 #define evDoubleSize 25 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
33 #define evFullScreen 26 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
34 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
35 #define evSetMoviePosition 27 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
36 #define evSetVolume 28 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
37 #define evSetBalance 29 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
38 #define evMute 30 |
1693 | 39 |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
40 #define evIncVolume 31 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
41 #define evDecVolume 32 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
42 #define evIncAudioBufDelay 33 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
43 #define evDecAudioBufDelay 34 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
44 #define evIncBalance 35 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
45 #define evDecBalance 36 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
46 |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1823
diff
changeset
|
47 #define evHelp 37 |
1823 | 48 |
2902
d47cbcdce1a8
rewrite some header meg jol csinaltam menu -t koepso gombra gonosz mod ( bocs, tom, nem angol).
pontscho
parents:
1866
diff
changeset
|
49 #define evLoadSubtitle 38 |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
3499
diff
changeset
|
50 #define evPlayDVD 39 |
2902
d47cbcdce1a8
rewrite some header meg jol csinaltam menu -t koepso gombra gonosz mod ( bocs, tom, nem angol).
pontscho
parents:
1866
diff
changeset
|
51 |
1693 | 52 #define evExit 1000 |
53 | |
54 // --- General events --- | |
55 | |
56 #define evFileLoaded 5000 | |
57 #define evHideMouseCursor 5001 | |
58 #define evMessageBox 5002 | |
59 #define evGeneralTimer 5003 | |
60 #define evGtkIsOk 5004 | |
2902
d47cbcdce1a8
rewrite some header meg jol csinaltam menu -t koepso gombra gonosz mod ( bocs, tom, nem angol).
pontscho
parents:
1866
diff
changeset
|
61 #define evShowPopUpMenu 5005 |
2976 | 62 #define evHidePopUpMenu 5006 |
3054 | 63 #define evSetDVDAudio 5007 |
64 #define evSetDVDSubtitle 5008 | |
65 #define evSetDVDTitle 5009 | |
66 #define evSetDVDChapter 5010 | |
3499 | 67 #define evSubtitleLoaded 5011 |
1693 | 68 |
69 #define evFName 7000 | |
70 #define evMovieTime 7001 | |
71 #define evRedraw 7002 | |
72 #define evHideWindow 7003 | |
73 #define evShowWindow 7004 | |
1743 | 74 #define evFirstLoad 7005 |
1693 | 75 |
76 // ---------------------- | |
77 | |
78 typedef struct | |
79 { | |
80 int msg; | |
81 char * name; | |
82 } evName; | |
83 | |
84 extern int evBoxs; | |
85 extern evName evNames[]; | |
86 | |
87 #endif |