~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/gui/skins/Modules.am

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SOURCES_skins = \
 
2
        os_api.h \
 
3
        os_bitmap.h \
 
4
        os_event.h \
 
5
        os_font.h \
 
6
        os_graphics.h \
 
7
        os_theme.h \
 
8
        os_window.h \
 
9
        \
 
10
        controls/controls.h \
 
11
        controls/button.cpp \
 
12
        controls/button.h \
 
13
        controls/checkbox.cpp \
 
14
        controls/checkbox.h \
 
15
        controls/generic.cpp \
 
16
        controls/generic.h \
 
17
        controls/image.cpp \
 
18
        controls/image.h \
 
19
        controls/playlist.cpp \
 
20
        controls/playlist.h \
 
21
        controls/rectangle.cpp \
 
22
        controls/rectangle.h \
 
23
        controls/slider.cpp \
 
24
        controls/slider.h \
 
25
        controls/text.cpp \
 
26
        controls/text.h \
 
27
        \
 
28
        parser/flex.c \
 
29
        parser/skin.h \
 
30
        parser/skin.c \
 
31
        parser/wrappers.h \
 
32
        parser/wrappers.cpp \
 
33
        \
 
34
        src/anchor.cpp \
 
35
        src/anchor.h \
 
36
        src/banks.cpp \
 
37
        src/banks.h \
 
38
        src/bezier.cpp \
 
39
        src/bezier.h \
 
40
        src/bitmap.cpp \
 
41
        src/bitmap.h \
 
42
        src/dialogs.cpp \
 
43
        src/dialogs.h \
 
44
        src/event.cpp \
 
45
        src/event.h \
 
46
        src/font.cpp \
 
47
        src/font.h \
 
48
        src/graphics.cpp \
 
49
        src/graphics.h \
 
50
        src/skin_main.cpp \
 
51
        src/skin_common.h \
 
52
        src/theme.cpp \
 
53
        src/theme.h \
 
54
        src/themeloader.cpp \
 
55
        src/themeloader.h \
 
56
        src/vlcproc.cpp \
 
57
        src/vlcproc.h \
 
58
        src/window.cpp \
 
59
        src/window.h \
 
60
        \
 
61
        win32/win32_api.cpp \
 
62
        win32/win32_bitmap.cpp \
 
63
        win32/win32_bitmap.h \
 
64
        win32/win32_dragdrop.cpp \
 
65
        win32/win32_dragdrop.h \
 
66
        win32/win32_event.cpp \
 
67
        win32/win32_event.h \
 
68
        win32/win32_font.cpp \
 
69
        win32/win32_font.h \
 
70
        win32/win32_graphics.cpp \
 
71
        win32/win32_graphics.h \
 
72
        win32/win32_run.cpp \
 
73
        win32/win32_theme.cpp \
 
74
        win32/win32_theme.h \
 
75
        win32/win32_window.cpp \
 
76
        win32/win32_window.h \
 
77
        \
 
78
        x11/x11_api.cpp \
 
79
        x11/x11_bitmap.cpp \
 
80
        x11/x11_bitmap.h \
 
81
        x11/x11_dragdrop.cpp \
 
82
        x11/x11_dragdrop.h \
 
83
        x11/x11_event.cpp \
 
84
        x11/x11_event.h \
 
85
        x11/x11_font.cpp \
 
86
        x11/x11_font.h \
 
87
        x11/x11_graphics.cpp \
 
88
        x11/x11_graphics.h \
 
89
        x11/x11_run.cpp \
 
90
        x11/x11_theme.cpp \
 
91
        x11/x11_theme.h \
 
92
        x11/x11_timer.cpp \
 
93
        x11/x11_timer.h \
 
94
        x11/x11_window.cpp \
 
95
        x11/x11_window.h \
 
96
        $(NULL)
 
97
 
 
98
EXTRA_DIST += \
 
99
        parser/skin.dtd \
 
100
        parser/skin.act
 
101