blob: ee779254083128b1e862436ffdc5a442f903b033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-DDILLO_LIBDIR='"$(pkglibdir)/"' \
-DCUR_WORKING_DIR='"@BASE_CUR_WORKING_DIR@/dw"'
noinst_LIBRARIES = \
libDw-core.a \
libDw-fltk.a \
libDw-widgets.a
libDw_core_a_SOURCES = \
core.hh \
events.hh \
findtext.cc \
findtext.hh \
imgbuf.hh \
imgrenderer.hh \
imgrenderer.cc \
iterator.cc \
iterator.hh \
layout.cc \
layout.hh \
platform.hh \
selection.hh \
selection.cc \
stackingcontextmgr.hh \
stackingcontextmgr.cc \
style.cc \
style.hh \
tools.cc \
tools.hh \
types.cc \
types.hh \
ui.cc \
ui.hh \
view.hh \
widget.cc \
widget.hh
libDw_fltk_a_SOURCES = \
fltkcomplexbutton.cc \
fltkcomplexbutton.hh \
fltkcore.hh \
fltkflatview.cc \
fltkflatview.hh \
fltkimgbuf.cc \
fltkimgbuf.hh \
fltkmisc.cc \
fltkmisc.hh \
fltkplatform.cc \
fltkplatform.hh \
fltkpreview.hh \
fltkpreview.cc \
fltkui.cc \
fltkui.hh \
fltkviewbase.cc \
fltkviewbase.hh \
fltkviewport.cc \
fltkviewport.hh
libDw_fltk_a_CXXFLAGS = @LIBFLTK_CXXFLAGS@
libDw_widgets_a_SOURCES = \
alignedtablecell.cc \
alignedtablecell.hh \
alignedtextblock.cc \
alignedtextblock.hh \
bullet.cc \
bullet.hh \
hyphenator.cc \
hyphenator.hh \
image.cc \
image.hh \
listitem.cc \
listitem.hh \
oofawarewidget.cc \
oofawarewidget_iterator.cc \
oofawarewidget.hh \
ooffloatsmgr.cc \
ooffloatsmgr.hh \
oofposabslikemgr.cc \
oofposabslikemgr.hh \
oofposabsmgr.cc \
oofposabsmgr.hh \
oofposfixedmgr.cc \
oofposfixedmgr.hh \
oofpositionedmgr.cc \
oofpositionedmgr.hh \
oofposrelmgr.cc \
oofposrelmgr.hh \
outofflowmgr.cc \
outofflowmgr.hh \
regardingborder.cc \
regardingborder.hh \
ruler.cc \
ruler.hh \
simpletablecell.cc \
simpletablecell.hh \
table.cc \
table_iterator.cc \
table.hh \
tablecell.cc \
tablecell.hh \
textblock.cc \
textblock_iterator.cc \
textblock_linebreaking.cc \
textblock.hh
EXTRA_DIST = preview.xbm
|