summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Rules.make2
-rw-r--r--inputmethods/dvorak/dvorak.h4
-rw-r--r--inputmethods/keyboard/keyboard.h4
-rw-r--r--inputmethods/multikey/keyboard.h4
4 files changed, 8 insertions, 6 deletions
diff --git a/Rules.make b/Rules.make
index f0e463b..7fa0178 100644
--- a/Rules.make
+++ b/Rules.make
@@ -1,300 +1,302 @@
1.phony: force 1.phony: force
2force: 2force:
3 3
4$(configs) : 4$(configs) :
5 $(call makecfg,$@) 5 $(call makecfg,$@)
6 6
7$(TOPDIR)/gen.pro : $(TOPDIR)/.config 7$(TOPDIR)/gen.pro : $(TOPDIR)/.config
8 echo > $@ 8 echo > $@
9# added for threaded version 9# added for threaded version
10ifneq ($(CONFIG_THREADED),) 10ifneq ($(CONFIG_THREADED),)
11 echo CONFIG += thread >> $@ 11 echo CONFIG += thread >> $@
12else 12else
13 echo CONFIG -= thread >> $@ 13 echo CONFIG -= thread >> $@
14endif 14endif
15ifneq ($(CONFIG_DEBUG),) 15ifneq ($(CONFIG_DEBUG),)
16 echo CONFIG += debug >> $@ 16 echo CONFIG += debug >> $@
17 echo CONFIG -= release >> $@ 17 echo CONFIG -= release >> $@
18 echo DEFINES += "QT_COMPONENT_DEBUG=2" >> $@ 18 echo DEFINES += "QT_COMPONENT_DEBUG=2" >> $@
19 echo DEFINES += QT_DEBUG >> $@ 19 echo DEFINES += QT_DEBUG >> $@
20else 20else
21 echo CONFIG -= debug >> $@ 21 echo CONFIG -= debug >> $@
22 echo CONFIG += release >> $@ 22 echo CONFIG += release >> $@
23 echo DEFINES += "OPIE_NO_DEBUG" >> $@ 23 echo DEFINES += "OPIE_NO_DEBUG" >> $@
24endif 24endif
25 25
26ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 26ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3
27 echo CONFIG -= qt3 >> $@ 27 echo CONFIG -= qt3 >> $@
28else 28else
29 echo CONFIG += qt3 >> $@ 29 echo CONFIG += qt3 >> $@
30endif 30endif
31ifneq ($(CONFIG_QUICK_LAUNCH),) 31ifneq ($(CONFIG_QUICK_LAUNCH),)
32 echo contains\( CONFIG, quick-app \) \{ >> $@ 32 echo contains\( CONFIG, quick-app \) \{ >> $@
33 echo CONFIG -= quick-app >> $@ 33 echo CONFIG -= quick-app >> $@
34 echo CONFIG += quick-app-lib >> $@ 34 echo CONFIG += quick-app-lib >> $@
35 echo QUICKLAUNCH_PATH = $(CONFIG_QUICKLAUNCH_PATH) >> $@ 35 echo QUICKLAUNCH_PATH = $(CONFIG_QUICKLAUNCH_PATH) >> $@
36 echo \} >> $@ 36 echo \} >> $@
37else 37else
38 echo contains\( CONFIG, quick-app \) \{ >> $@ 38 echo contains\( CONFIG, quick-app \) \{ >> $@
39 echo CONFIG -= quick-app >> $@ 39 echo CONFIG -= quick-app >> $@
40 echo CONFIG += quick-app-bin >> $@ 40 echo CONFIG += quick-app-bin >> $@
41 echo \} >> $@ 41 echo \} >> $@
42endif 42endif
43ifeq ($(CONFIG_SQL_PIM_BACKEND),y) 43ifeq ($(CONFIG_SQL_PIM_BACKEND),y)
44 echo ENABLE_SQL_PIM_BACKEND=$(CONFIG_SQL_PIM_BACKEND) >> $@ 44 echo ENABLE_SQL_PIM_BACKEND=$(CONFIG_SQL_PIM_BACKEND) >> $@
45else 45else
46 echo ENABLE_SQL_PIM_BACKEND=n >> $@ 46 echo ENABLE_SQL_PIM_BACKEND=n >> $@
47endif 47endif
48ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) 48ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y)
49 echo CONFIG += no-override >> $@ 49 echo CONFIG += no-override >> $@
50endif 50endif
51ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) 51ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y)
52 echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ 52 echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@
53endif 53endif
54ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) 54ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y)
55 echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ 55 echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@
56endif 56endif
57ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) 57ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y)
58 echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ 58 echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@
59endif 59endif
60ifeq ($(CONFIG_USE_FILE_NOTIFICATION),y) 60ifeq ($(CONFIG_USE_FILE_NOTIFICATION),y)
61 echo DEFINES += USE_FILE_NOTIFICATION >> $@ 61 echo DEFINES += USE_FILE_NOTIFICATION >> $@
62endif 62endif
63ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) 63ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y)
64 echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ 64 echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@
65endif 65endif
66ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) 66ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y)
67 echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ 67 echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@
68endif 68endif
69ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) 69ifeq ($(CONFIG_OPIE_NEW_ALLOC),y)
70 echo DEFINES += OPIE_NEW_MALLOC >> $@ 70 echo DEFINES += OPIE_NEW_MALLOC >> $@
71endif 71endif
72ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) 72ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y)
73 echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ 73 echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@
74endif 74endif
75 echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ 75 echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@
76ifeq ($(CONFIG_OPIE_WE_VERSION_OVERRIDE),y) 76ifeq ($(CONFIG_OPIE_WE_VERSION_OVERRIDE),y)
77 echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ 77 echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@
78endif 78endif
79# Write LIB dirs and INC dirs... 79# Write LIB dirs and INC dirs...
80ifeq ($(CONFIG_LIBETPAN_DEP),y) 80ifeq ($(CONFIG_LIBETPAN_DEP),y)
81 echo LIBETPAN_LIB_DIR = $(CONFIG_LIBETPAN_LIB_DIR) >> $@ 81 echo LIBETPAN_LIB_DIR = $(CONFIG_LIBETPAN_LIB_DIR) >> $@
82 echo LIBETPAN_INC_DIR = $(CONFIG_LIBETPAN_INC_DIR) >> $@ 82 echo LIBETPAN_INC_DIR = $(CONFIG_LIBETPAN_INC_DIR) >> $@
83endif 83endif
84ifeq ($(CONFIG_LIBPCAP_DEP),y) 84ifeq ($(CONFIG_LIBPCAP_DEP),y)
85 echo LIBPCAP_LIB_DIR = $(CONFIG_LIBPCAP_LIB_DIR) >> $@ 85 echo LIBPCAP_LIB_DIR = $(CONFIG_LIBPCAP_LIB_DIR) >> $@
86 echo LIBPCAP_INC_DIR = $(CONFIG_LIBPCAP_INC_DIR) >> $@ 86 echo LIBPCAP_INC_DIR = $(CONFIG_LIBPCAP_INC_DIR) >> $@
87endif 87endif
88ifeq ($(CONFIG_LIBSQLITE_DEP),y) 88ifeq ($(CONFIG_LIBSQLITE_DEP),y)
89 echo LIBSQLITE_LIB_DIR = $(CONFIG_LIBSQLITE_LIB_DIR) >> $@ 89 echo LIBSQLITE_LIB_DIR = $(CONFIG_LIBSQLITE_LIB_DIR) >> $@
90 echo LIBSQLITE_INC_DIR = $(CONFIG_LIBSQLITE_INC_DIR) >> $@ 90 echo LIBSQLITE_INC_DIR = $(CONFIG_LIBSQLITE_INC_DIR) >> $@
91endif 91endif
92ifeq ($(CONFIG_LIBXINE_DEP),y) 92ifeq ($(CONFIG_LIBXINE_DEP),y)
93 echo LIBXINE_LIB_DIR = $(CONFIG_LIBXINE_LIB_DIR) >> $@ 93 echo LIBXINE_LIB_DIR = $(CONFIG_LIBXINE_LIB_DIR) >> $@
94 echo LIBXINE_INC_DIR = $(CONFIG_LIBXINE_INC_DIR) >> $@ 94 echo LIBXINE_INC_DIR = $(CONFIG_LIBXINE_INC_DIR) >> $@
95endif 95endif
96ifeq ($(CONFIG_LIBIPK_DEP),y) 96ifeq ($(CONFIG_LIBIPK_DEP),y)
97 echo LIBIPK_LIB_DIR = $(CONFIG_LIBIPK_LIB_DIR) >> $@ 97 echo LIBIPK_LIB_DIR = $(CONFIG_LIBIPK_LIB_DIR) >> $@
98 echo LIBIPK_INC_DIR = $(CONFIG_LIBIPK_INC_DIR) >> $@ 98 echo LIBIPK_INC_DIR = $(CONFIG_LIBIPK_INC_DIR) >> $@
99endif 99endif
100ifeq ($(CONFIG_LIBSDK_DEP),y) 100ifeq ($(CONFIG_LIBSDK_DEP),y)
101 echo LIBSDL_LIB_DIR = $(CONFIG_LIBSDL_LIB_DIR) >> $@ 101 echo LIBSDL_LIB_DIR = $(CONFIG_LIBSDL_LIB_DIR) >> $@
102 echo LIBSDL_INC_DIR = $(CONFIG_LIBSDL_INC_DIR) >> $@ 102 echo LIBSDL_INC_DIR = $(CONFIG_LIBSDL_INC_DIR) >> $@
103endif 103endif
104ifeq ($(CONFIG_LIBSWORD_DEP),y) 104ifeq ($(CONFIG_LIBSWORD_DEP),y)
105 echo LIBSWORD_LIB_DIR = $(CONFIG_LIBSWORD_LIB_DIR) >> $@ 105 echo LIBSWORD_LIB_DIR = $(CONFIG_LIBSWORD_LIB_DIR) >> $@
106 echo LIBSWORD_INC_DIR = $(CONFIG_LIBSWORD_INC_DIR) >> $@ 106 echo LIBSWORD_INC_DIR = $(CONFIG_LIBSWORD_INC_DIR) >> $@
107endif 107endif
108$(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages 108$(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages
109 @echo Generating dependency information... 109 @echo Generating dependency information...
110# add to subdir-y, and add descend rules 110# add to subdir-y, and add descend rules
111 @cat $(TOPDIR)/packages | grep -v '^#' | \ 111 @cat $(TOPDIR)/packages | grep -v '^#' | \
112 awk '{print \ 112 awk '{print \
113 ".PHONY : " $$2 "\n" \ 113 ".PHONY : " $$2 "\n" \
114 "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ 114 "subdir-$$(" $$1 ") += " $$2 "\n\n"; \
115 print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends 115 print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends
116 cat $(TOPDIR)/packages | grep -v '^#' | \ 116 cat $(TOPDIR)/packages | grep -v '^#' | \
117 perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ 117 perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \
118 >> $(TOPDIR)/.depends 118 >> $(TOPDIR)/.depends
119# interpackage dependency generation 119# interpackage dependency generation
120 @cat $(TOPDIR)/packages | \ 120 @cat $(TOPDIR)/packages | \
121 $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends 121 $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends
122 122
123$(TOPDIR)/.depends.cfgs: 123$(TOPDIR)/.depends.cfgs:
124# config.in interdependencies 124# config.in interdependencies
125 @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs 125 @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs
126 @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ 126 @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@
127 @-rm -f dirs 127 @-rm -f dirs
128 128
129$(QTDIR)/stamp-headers : 129$(QTDIR)/stamp-headers :
130 @-rm -f $(QTDIR)/stamp-headers* 130 @-rm -f $(QTDIR)/stamp-headers*
131 ( cd $(QTDIR)/include; \ 131 ( cd $(QTDIR)/include; \
132 $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ 132 $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \
133 qcopchannel_qws.h qwindowsystem_qws.h \ 133 qcopchannel_qws.h qwindowsystem_qws.h \
134 qfontmanager_qws.h qwsdefaultdecoration_qws.h)) 134 qfontmanager_qws.h qwsdefaultdecoration_qws.h))
135 touch $@ 135 touch $@
136 136
137$(QTDIR)/stamp-headers-x11 : 137$(QTDIR)/stamp-headers-x11 :
138 @-rm -f $(QTDIR)/stamp-headers* 138 @-rm -f $(QTDIR)/stamp-headers*
139 cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) 139 cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h)
140 touch $@ 140 touch $@
141 141
142$(OPIEDIR)/stamp-headers : 142$(OPIEDIR)/stamp-headers :
143 @-rm -f $(OPIEDIR)/stamp-headers* 143 @-rm -f $(OPIEDIR)/stamp-headers*
144 mkdir -p $(TOPDIR)/include/qpe \ 144 mkdir -p $(TOPDIR)/include/qpe \
145 $(TOPDIR)/include/qtopia \ 145 $(TOPDIR)/include/qtopia \
146 $(TOPDIR)/include/opie \ 146 $(TOPDIR)/include/opie \
147 $(TOPDIR)/include/opie2 \ 147 $(TOPDIR)/include/opie2 \
148 $(TOPDIR)/include/qtopia/private \ 148 $(TOPDIR)/include/qtopia/private \
149 $(TOPDIR)/include/sl 149 $(TOPDIR)/include/sl
150 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) 150 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; )
151 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) 151 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; )
152 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) 152 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; )
153ifeq ($(CONFIG_LIBOPIE),y) 153ifeq ($(CONFIG_LIBOPIE),y)
154 # libopie1 154 # libopie1
155 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) 155 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; )
156 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) 156 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; )
157 ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) 157 ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; )
158endif 158endif
159 # libopie2 159 # libopie2
160 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) 160 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; )
161 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; ) 161 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; )
162 ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) 162 ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; )
163 ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) 163 ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; )
164 ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) 164 ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; )
165 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) 165 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; )
166 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; ) 166 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; )
167 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; ) 167 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; )
168 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; ) 168 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; )
169 ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) 169 ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; )
170 ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) 170 ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; )
171 ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) 171 ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; )
172 # auxilliary libraries 172 # auxilliary libraries
173 ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) 173 ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; )
174 ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) 174 ( cd include/sl && ln -sf ../../libslcompat/*.h .; )
175 ( cd include/ && ln -sf ../noncore/net/ftplib/*.h .; ) 175 ( cd include/ && ln -sf ../noncore/net/ftplib/*.h .; )
176 ( cd include/ && ln -sf ../inputmethods/pickboard/pickboardcfg.h .; )
177 ( cd include/ && ln -sf ../inputmethods/pickboard/pickboardpicks.h .; )
176 # all 178 # all
177ifeq ($(CONFIG_LIBOPIE),y) 179ifeq ($(CONFIG_LIBOPIE),y)
178 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 180 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
179 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) 181 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done )
180endif 182endif
181 ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 183 ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
182 ln -sf ../../libopie2/opieui/$$generatedHeader $$generatedHeader; done ) 184 ln -sf ../../libopie2/opieui/$$generatedHeader $$generatedHeader; done )
183 ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opiepim/ui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 185 ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opiepim/ui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
184 ln -sf ../../libopie2/opiepim/ui/$$generatedHeader $$generatedHeader; done ) 186 ln -sf ../../libopie2/opiepim/ui/$$generatedHeader $$generatedHeader; done )
185 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h 187 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h
186 touch $@ 188 touch $@
187 189
188$(OPIEDIR)/stamp-headers-x11 : 190$(OPIEDIR)/stamp-headers-x11 :
189 @-rm -f $(OPIEDIR)/stamp-headers* 191 @-rm -f $(OPIEDIR)/stamp-headers*
190 mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ 192 mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \
191 $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private 193 $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private
192 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) 194 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; )
193 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) 195 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; )
194 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) 196 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; )
195 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) 197 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; )
196 ( cd include/opie && ln -sf ../../libsql/*.h .; ) 198 ( cd include/opie && ln -sf ../../libsql/*.h .; )
197 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) 199 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; )
198 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 200 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
199 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) 201 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done )
200 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h 202 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h
201 ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) 203 ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; )
202 touch $@ 204 touch $@
203 205
204$(TOPDIR)/library/custom.h : $(TOPDIR)/.config 206$(TOPDIR)/library/custom.h : $(TOPDIR)/.config
205 @-rm -f $@ 207 @-rm -f $@
206 @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ 208 @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\
207 ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) 209 ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@)
208 @touch $@ 210 @touch $@
209 211
210$(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: 212$(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake:
211 @$(call descend,$(shell dirname $@),$(shell basename $@)) 213 @$(call descend,$(shell dirname $@),$(shell basename $@))
212 214
213menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in 215menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in
214 $(TOPDIR)/scripts/kconfig/mconf ./config.in 216 $(TOPDIR)/scripts/kconfig/mconf ./config.in
215 @touch ./.config.stamp 217 @touch ./.config.stamp
216 218
217xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in 219xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in
218 $(TOPDIR)/scripts/kconfig/qconf ./config.in 220 $(TOPDIR)/scripts/kconfig/qconf ./config.in
219 @touch .config.stamp 221 @touch .config.stamp
220 222
221gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in 223gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in
222 $(TOPDIR)/scripts/kconfig/gconf ./config.in 224 $(TOPDIR)/scripts/kconfig/gconf ./config.in
223 @touch .config.stamp 225 @touch .config.stamp
224 226
225config: $(TOPDIR)/scripts/kconfig/conf ./config.in 227config: $(TOPDIR)/scripts/kconfig/conf ./config.in
226 $(TOPDIR)/scripts/kconfig/conf ./config.in 228 $(TOPDIR)/scripts/kconfig/conf ./config.in
227 @touch .config.stamp 229 @touch .config.stamp
228 230
229oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 231oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
230 $(TOPDIR)/scripts/kconfig/conf -o ./config.in 232 $(TOPDIR)/scripts/kconfig/conf -o ./config.in
231 @touch .config.stamp 233 @touch .config.stamp
232 234
233randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 235randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
234 $(TOPDIR)/scripts/kconfig/conf -r ./config.in 236 $(TOPDIR)/scripts/kconfig/conf -r ./config.in
235 @touch .config.stamp 237 @touch .config.stamp
236 238
237allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 239allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
238 $(TOPDIR)/scripts/kconfig/conf -y ./config.in 240 $(TOPDIR)/scripts/kconfig/conf -y ./config.in
239 @touch .config.stamp 241 @touch .config.stamp
240 242
241allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 243allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
242 $(TOPDIR)/scripts/kconfig/conf -n ./config.in 244 $(TOPDIR)/scripts/kconfig/conf -n ./config.in
243 @touch .config.stamp 245 @touch .config.stamp
244 246
245defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 247defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
246 $(TOPDIR)/scripts/kconfig/conf -d ./config.in 248 $(TOPDIR)/scripts/kconfig/conf -d ./config.in
247 @touch .config.stamp 249 @touch .config.stamp
248 250
249$(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default 251$(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default
250 252
251$(TOPDIR)/mkspecs/default : 253$(TOPDIR)/mkspecs/default :
252 ln -sf linux-g++ $@ 254 ln -sf linux-g++ $@
253 255
254$(TOPDIR)/scripts/subst : force 256$(TOPDIR)/scripts/subst : force
255 @( \ 257 @( \
256 echo 's,\$$QPE_VERSION,$(QPE_VERSION),g'; \ 258 echo 's,\$$QPE_VERSION,$(QPE_VERSION),g'; \
257 echo 's,\$$OPIE_VERSION,$(OPIE_VERSION),g'; \ 259 echo 's,\$$OPIE_VERSION,$(OPIE_VERSION),g'; \
258 echo 's,\$$QTE_VERSION,$(QTE_VERSION),g'; \ 260 echo 's,\$$QTE_VERSION,$(QTE_VERSION),g'; \
259 echo 's,\$$QTE_REVISION,$(QTE_REVISION),g'; \ 261 echo 's,\$$QTE_REVISION,$(QTE_REVISION),g'; \
260 echo 's,\$$SUB_VERSION,$(SUB_VERSION),g'; \ 262 echo 's,\$$SUB_VERSION,$(SUB_VERSION),g'; \
261 echo 's,\$$EXTRAVERSION,$(EXTRAVERSION),g'; \ 263 echo 's,\$$EXTRAVERSION,$(EXTRAVERSION),g'; \
262 echo 's,\$$QTE_BASEVERSION,$(QTE_BASEVERSION),g'; \ 264 echo 's,\$$QTE_BASEVERSION,$(QTE_BASEVERSION),g'; \
263 ) > $@ || ( rm -f $@; exit 1 ) 265 ) > $@ || ( rm -f $@; exit 1 )
264 266
265$(TOPDIR)/scripts/filesubst : force 267$(TOPDIR)/scripts/filesubst : force
266 @( \ 268 @( \
267 echo 's,\$$OPIEDIR/root/,/,g'; \ 269 echo 's,\$$OPIEDIR/root/,/,g'; \
268 echo 's,$(OPIEDIR)/root/,/,g'; \ 270 echo 's,$(OPIEDIR)/root/,/,g'; \
269 echo 's,\$$OPIEDIR,$(prefix),g'; \ 271 echo 's,\$$OPIEDIR,$(prefix),g'; \
270 echo 's,$(OPIEDIR),$(prefix),g'; \ 272 echo 's,$(OPIEDIR),$(prefix),g'; \
271 echo 's,\$$QTDIR,$(prefix),g'; \ 273 echo 's,\$$QTDIR,$(prefix),g'; \
272 echo 's,$(QTDIR),$(prefix),g'; \ 274 echo 's,$(QTDIR),$(prefix),g'; \
273 echo 's,^\(\./\)*root/,/,g'; \ 275 echo 's,^\(\./\)*root/,/,g'; \
274 echo 's,^\(\./\)*etc/,$(prefix)/etc/,g'; \ 276 echo 's,^\(\./\)*etc/,$(prefix)/etc/,g'; \
275 echo 's,^\(\./\)*lib/,$(prefix)/lib/,g'; \ 277 echo 's,^\(\./\)*lib/,$(prefix)/lib/,g'; \
276 echo 's,^\(\./\)*bin/,$(prefix)/bin/,g'; \ 278 echo 's,^\(\./\)*bin/,$(prefix)/bin/,g'; \
277 echo 's,^\(\./\)*pics/,$(prefix)/pics/,g'; \ 279 echo 's,^\(\./\)*pics/,$(prefix)/pics/,g'; \
278 echo 's,^\(\./\)*sounds/,$(prefix)/sounds/,g'; \ 280 echo 's,^\(\./\)*sounds/,$(prefix)/sounds/,g'; \
279 echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ 281 echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \
280 echo 's,^\(\./\)*plugins/,$(prefix)/plugins/,g'; \ 282 echo 's,^\(\./\)*plugins/,$(prefix)/plugins/,g'; \
281 echo 's,^\(\./\)*apps/,$(prefix)/apps/,g'; \ 283 echo 's,^\(\./\)*apps/,$(prefix)/apps/,g'; \
282 echo 's,^\(\./\)*share/,$(prefix)/share/,g'; \ 284 echo 's,^\(\./\)*share/,$(prefix)/share/,g'; \
283 echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ 285 echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \
284 echo 's,^\(\./\)*help/,$(prefix)/help/,g'; \ 286 echo 's,^\(\./\)*help/,$(prefix)/help/,g'; \
285 ) > $@ || ( rm -f $@; exit 1 ) 287 ) > $@ || ( rm -f $@; exit 1 )
286 288
287## general rules ## 289## general rules ##
288 290
289define descend 291define descend
290 $(MAKE) $(if $(QMAKE),QMAKE=$(QMAKE)) -C $(1) $(2) 292 $(MAKE) $(if $(QMAKE),QMAKE=$(QMAKE)) -C $(1) $(2)
291endef 293endef
292 294
293define makefilegen 295define makefilegen
294 cd $(if $(1),$(shell dirname $(1))); $(TOPDIR)/qmake/qmake $(3) -o $(if $(1),$(shell basename $(1))) `cat $(OPIEDIR)/packages | grep " \`echo $(1)|sed -e 's,/Makefile$$,,'\`" | \ 296 cd $(if $(1),$(shell dirname $(1))); $(TOPDIR)/qmake/qmake $(3) -o $(if $(1),$(shell basename $(1))) `cat $(OPIEDIR)/packages | grep " \`echo $(1)|sed -e 's,/Makefile$$,,'\`" | \
295 head -1 | awk '{print $$3}'` 297 head -1 | awk '{print $$3}'`
296endef 298endef
297 299
298define makecfg 300define makecfg
299 $(TOPDIR)/scripts/makecfg.pl $1 $(OPIEDIR) 301 $(TOPDIR)/scripts/makecfg.pl $1 $(OPIEDIR)
300endef 302endef
diff --git a/inputmethods/dvorak/dvorak.h b/inputmethods/dvorak/dvorak.h
index 216b5e5..758e181 100644
--- a/inputmethods/dvorak/dvorak.h
+++ b/inputmethods/dvorak/dvorak.h
@@ -1,107 +1,107 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include <qframe.h> 20#include <qframe.h>
21#include "../pickboard/pickboardcfg.h" 21#include <pickboardcfg.h>
22#include "../pickboard/pickboardpicks.h" 22#include <pickboardpicks.h>
23 23
24class QTimer; 24class QTimer;
25 25
26namespace Dvorak 26namespace Dvorak
27{ 27{
28 28
29class KeyboardConfig : public DictFilterConfig 29class KeyboardConfig : public DictFilterConfig
30{ 30{
31public: 31public:
32 KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } 32 KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; }
33 virtual void generateText(const QString &s); 33 virtual void generateText(const QString &s);
34 void decBackspaces() { if (backspaces) backspaces--; } 34 void decBackspaces() { if (backspaces) backspaces--; }
35 void incBackspaces() { backspaces++; } 35 void incBackspaces() { backspaces++; }
36 void resetBackspaces() { backspaces = 0; } 36 void resetBackspaces() { backspaces = 0; }
37private: 37private:
38 int backspaces; 38 int backspaces;
39}; 39};
40 40
41 41
42class KeyboardPicks : public PickboardPicks 42class KeyboardPicks : public PickboardPicks
43{ 43{
44 Q_OBJECT 44 Q_OBJECT
45public: 45public:
46 KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) 46 KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0)
47 : PickboardPicks(parent, name, f) { } 47 : PickboardPicks(parent, name, f) { }
48 void initialise(); 48 void initialise();
49 virtual QSize sizeHint() const; 49 virtual QSize sizeHint() const;
50 KeyboardConfig *dc; 50 KeyboardConfig *dc;
51}; 51};
52 52
53class Keyboard : public QFrame 53class Keyboard : public QFrame
54{ 54{
55 Q_OBJECT 55 Q_OBJECT
56public: 56public:
57 Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); 57 Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 );
58 58
59 void resetState(); 59 void resetState();
60 60
61 void mousePressEvent(QMouseEvent*); 61 void mousePressEvent(QMouseEvent*);
62 void mouseReleaseEvent(QMouseEvent*); 62 void mouseReleaseEvent(QMouseEvent*);
63 void resizeEvent(QResizeEvent*); 63 void resizeEvent(QResizeEvent*);
64 void paintEvent(QPaintEvent* e); 64 void paintEvent(QPaintEvent* e);
65 void timerEvent(QTimerEvent* e); 65 void timerEvent(QTimerEvent* e);
66 void drawKeyboard( QPainter &p, int key = -1 ); 66 void drawKeyboard( QPainter &p, int key = -1 );
67 67
68 void setMode(int mode) { useOptiKeys = mode; } 68 void setMode(int mode) { useOptiKeys = mode; }
69 69
70 QSize sizeHint() const; 70 QSize sizeHint() const;
71 71
72signals: 72signals:
73 void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); 73 void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool );
74 74
75private slots: 75private slots:
76 void repeat(); 76 void repeat();
77 77
78private: 78private:
79 int getKey( int &w, int j = -1 ); 79 int getKey( int &w, int j = -1 );
80 void clearHighlight(); 80 void clearHighlight();
81 81
82 uint shift:1; 82 uint shift:1;
83 uint lock:1; 83 uint lock:1;
84 uint ctrl:1; 84 uint ctrl:1;
85 uint alt:1; 85 uint alt:1;
86 uint useLargeKeys:1; 86 uint useLargeKeys:1;
87 uint useOptiKeys:1; 87 uint useOptiKeys:1;
88 88
89 int pressedKey; 89 int pressedKey;
90 90
91 KeyboardPicks *picks; 91 KeyboardPicks *picks;
92 92
93 int keyHeight; 93 int keyHeight;
94 int defaultKeyWidth; 94 int defaultKeyWidth;
95 int xoffs; 95 int xoffs;
96 96
97 int unicode; 97 int unicode;
98 int qkeycode; 98 int qkeycode;
99 int modifiers; 99 int modifiers;
100 100
101 int pressTid; 101 int pressTid;
102 bool pressed; 102 bool pressed;
103 103
104 QTimer *repeatTimer; 104 QTimer *repeatTimer;
105}; 105};
106 106
107} // namespace Dvorak 107} // namespace Dvorak
diff --git a/inputmethods/keyboard/keyboard.h b/inputmethods/keyboard/keyboard.h
index cc7f3f5..82588f0 100644
--- a/inputmethods/keyboard/keyboard.h
+++ b/inputmethods/keyboard/keyboard.h
@@ -1,108 +1,108 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include <qframe.h> 20#include <qframe.h>
21#include "../pickboard/pickboardcfg.h" 21#include <pickboardcfg.h>
22#include "../pickboard/pickboardpicks.h" 22#include <pickboardpicks.h>
23 23
24class QTimer; 24class QTimer;
25 25
26namespace KeyboardInput 26namespace KeyboardInput
27{ 27{
28 28
29class KeyboardConfig : public DictFilterConfig 29class KeyboardConfig : public DictFilterConfig
30{ 30{
31public: 31public:
32 KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } 32 KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; }
33 virtual void generateText(const QString &s); 33 virtual void generateText(const QString &s);
34 void decBackspaces() { if (backspaces) backspaces--; } 34 void decBackspaces() { if (backspaces) backspaces--; }
35 void incBackspaces() { backspaces++; } 35 void incBackspaces() { backspaces++; }
36 void resetBackspaces() { backspaces = 0; } 36 void resetBackspaces() { backspaces = 0; }
37private: 37private:
38 int backspaces; 38 int backspaces;
39}; 39};
40 40
41 41
42class KeyboardPicks : public PickboardPicks 42class KeyboardPicks : public PickboardPicks
43{ 43{
44 Q_OBJECT 44 Q_OBJECT
45public: 45public:
46 KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) 46 KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0)
47 : PickboardPicks(parent, name, f) { } 47 : PickboardPicks(parent, name, f) { }
48 void initialise(); 48 void initialise();
49 virtual QSize sizeHint() const; 49 virtual QSize sizeHint() const;
50 KeyboardConfig *dc; 50 KeyboardConfig *dc;
51}; 51};
52 52
53class Keyboard : public QFrame 53class Keyboard : public QFrame
54{ 54{
55 Q_OBJECT 55 Q_OBJECT
56public: 56public:
57 Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); 57 Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 );
58 58
59 void resetState(); 59 void resetState();
60 60
61 void mousePressEvent(QMouseEvent*); 61 void mousePressEvent(QMouseEvent*);
62 void mouseReleaseEvent(QMouseEvent*); 62 void mouseReleaseEvent(QMouseEvent*);
63 void resizeEvent(QResizeEvent*); 63 void resizeEvent(QResizeEvent*);
64 void paintEvent(QPaintEvent* e); 64 void paintEvent(QPaintEvent* e);
65 void timerEvent(QTimerEvent* e); 65 void timerEvent(QTimerEvent* e);
66 void drawKeyboard( QPainter &p, int key = -1 ); 66 void drawKeyboard( QPainter &p, int key = -1 );
67 67
68 void setMode(int mode) { useOptiKeys = mode; } 68 void setMode(int mode) { useOptiKeys = mode; }
69 69
70 QSize sizeHint() const; 70 QSize sizeHint() const;
71 71
72signals: 72signals:
73 void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); 73 void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool );
74 74
75private slots: 75private slots:
76 void repeat(); 76 void repeat();
77 77
78private: 78private:
79 int getKey( int &w, int j = -1 ); 79 int getKey( int &w, int j = -1 );
80 void clearHighlight(); 80 void clearHighlight();
81 81
82 uint shift:1; 82 uint shift:1;
83 uint lock:1; 83 uint lock:1;
84 uint ctrl:1; 84 uint ctrl:1;
85 uint alt:1; 85 uint alt:1;
86 uint useLargeKeys:1; 86 uint useLargeKeys:1;
87 uint useOptiKeys:1; 87 uint useOptiKeys:1;
88 88
89 int pressedKey; 89 int pressedKey;
90 90
91 KeyboardPicks *picks; 91 KeyboardPicks *picks;
92 92
93 int keyHeight; 93 int keyHeight;
94 int defaultKeyWidth; 94 int defaultKeyWidth;
95 int xoffs; 95 int xoffs;
96 96
97 int unicode; 97 int unicode;
98 int qkeycode; 98 int qkeycode;
99 int modifiers; 99 int modifiers;
100 100
101 int pressTid; 101 int pressTid;
102 bool pressed; 102 bool pressed;
103 103
104 QTimer *repeatTimer; 104 QTimer *repeatTimer;
105}; 105};
106 106
107} // namespace KeyboardInput 107} // namespace KeyboardInput
108 108
diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h
index 0b56988..77bf718 100644
--- a/inputmethods/multikey/keyboard.h
+++ b/inputmethods/multikey/keyboard.h
@@ -1,193 +1,193 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include <qframe.h> 20#include <qframe.h>
21#include <qmap.h> 21#include <qmap.h>
22#include "../pickboard/pickboardcfg.h" 22#include <pickboardcfg.h>
23#include "../pickboard/pickboardpicks.h" 23#include <pickboardpicks.h>
24#include "configdlg.h" 24#include "configdlg.h"
25 25
26class QTimer; 26class QTimer;
27 27
28namespace MultiKey 28namespace MultiKey
29{ 29{
30 30
31class KeyboardConfig : public DictFilterConfig 31class KeyboardConfig : public DictFilterConfig
32{ 32{
33public: 33public:
34 KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } 34 KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; }
35 virtual void generateText(const QString &s); 35 virtual void generateText(const QString &s);
36 void decBackspaces() { if (backspaces) backspaces--; } 36 void decBackspaces() { if (backspaces) backspaces--; }
37 void incBackspaces() { backspaces++; } 37 void incBackspaces() { backspaces++; }
38 void resetBackspaces() { backspaces = 0; } 38 void resetBackspaces() { backspaces = 0; }
39private: 39private:
40 int backspaces; 40 int backspaces;
41}; 41};
42 42
43 43
44class KeyboardPicks : public PickboardPicks 44class KeyboardPicks : public PickboardPicks
45{ 45{
46 Q_OBJECT 46 Q_OBJECT
47public: 47public:
48 KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) 48 KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0)
49 : PickboardPicks(parent, name, f) { } 49 : PickboardPicks(parent, name, f) { }
50 void initialise(); 50 void initialise();
51 virtual QSize sizeHint() const; 51 virtual QSize sizeHint() const;
52 KeyboardConfig *dc; 52 KeyboardConfig *dc;
53}; 53};
54 54
55 55
56class Keys { 56class Keys {
57public: 57public:
58 58
59 Keys(); 59 Keys();
60 Keys(const char * filename); 60 Keys(const char * filename);
61 ~Keys(); 61 ~Keys();
62 int width(const int row, const int col); 62 int width(const int row, const int col);
63 int rows(); 63 int rows();
64 ushort uni(const int row, const int col); 64 ushort uni(const int row, const int col);
65 int qcode(const int row, const int col); 65 int qcode(const int row, const int col);
66 bool pressed(const int row, const int col); 66 bool pressed(const int row, const int col);
67 bool *pressedPtr(const int row, const int col); 67 bool *pressedPtr(const int row, const int col);
68 ushort shift(const ushort); 68 ushort shift(const ushort);
69 ushort meta(const ushort); 69 ushort meta(const ushort);
70 ushort circumflex(const ushort); 70 ushort circumflex(const ushort);
71 ushort diaeresis(const ushort); 71 ushort diaeresis(const ushort);
72 ushort baccent(const ushort); 72 ushort baccent(const ushort);
73 ushort accent(const ushort); 73 ushort accent(const ushort);
74 QImage *pix(const int row, const int col); 74 QImage *pix(const int row, const int col);
75 int numKeys(const int row); 75 int numKeys(const int row);
76 void setKeysFromFile(const char *filename); 76 void setKeysFromFile(const char *filename);
77 void setKey(const int row, const int qcode, const ushort unicode, 77 void setKey(const int row, const int qcode, const ushort unicode,
78 const int width, QImage *pix); 78 const int width, QImage *pix);
79 void setPressed(const int row, const int col, const bool pressed); 79 void setPressed(const int row, const int col, const bool pressed);
80 QString lang; 80 QString lang;
81 QString label; 81 QString label;
82 82
83private: 83private:
84 84
85 typedef struct Key { 85 typedef struct Key {
86 int qcode; // are qt key codes just unicode values? 86 int qcode; // are qt key codes just unicode values?
87 ushort unicode; 87 ushort unicode;
88 int width; // not pixels but relative key width. normal key is 2 88 int width; // not pixels but relative key width. normal key is 2
89 89
90 // only needed for keys like ctrl that can have multiple keys pressed at once 90 // only needed for keys like ctrl that can have multiple keys pressed at once
91 bool *pressed; 91 bool *pressed;
92 QImage *pix; 92 QImage *pix;
93 }; 93 };
94 94
95 QList<Key> keys[6]; 95 QList<Key> keys[6];
96 QMap<ushort,ushort> shiftMap; 96 QMap<ushort,ushort> shiftMap;
97 QMap<ushort,ushort> metaMap; 97 QMap<ushort,ushort> metaMap;
98 QMap<ushort,ushort> circumflexMap; 98 QMap<ushort,ushort> circumflexMap;
99 QMap<ushort,ushort> diaeresisMap; 99 QMap<ushort,ushort> diaeresisMap;
100 QMap<ushort,ushort> baccentMap; 100 QMap<ushort,ushort> baccentMap;
101 QMap<ushort,ushort> accentMap; 101 QMap<ushort,ushort> accentMap;
102 102
103}; 103};
104 104
105class Keyboard : public QFrame 105class Keyboard : public QFrame
106{ 106{
107 Q_OBJECT 107 Q_OBJECT
108public: 108public:
109 Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); 109 Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 );
110 ~Keyboard(); 110 ~Keyboard();
111 111
112 void resetState(); 112 void resetState();
113 113
114 void mousePressEvent(QMouseEvent*); 114 void mousePressEvent(QMouseEvent*);
115 void mouseReleaseEvent(QMouseEvent*); 115 void mouseReleaseEvent(QMouseEvent*);
116 void resizeEvent(QResizeEvent*); 116 void resizeEvent(QResizeEvent*);
117 void paintEvent(QPaintEvent* e); 117 void paintEvent(QPaintEvent* e);
118 //void timerEvent(QTimerEvent* e); 118 //void timerEvent(QTimerEvent* e);
119 void drawKeyboard( QPainter &p, int row = -1, int col = -1); 119 void drawKeyboard( QPainter &p, int row = -1, int col = -1);
120 120
121 QSize sizeHint() const; 121 QSize sizeHint() const;
122 122
123signals: 123signals:
124 void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); 124 void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool );
125 125
126private slots: 126private slots:
127 void repeat(); 127 void repeat();
128 void togglePickboard(bool on_off); 128 void togglePickboard(bool on_off);
129 void toggleRepeat(bool on_off); 129 void toggleRepeat(bool on_off);
130 void setMapToDefault(); 130 void setMapToDefault();
131 void setMapToFile(QString map); 131 void setMapToFile(QString map);
132 void cleanupConfigDlg(); 132 void cleanupConfigDlg();
133 void reloadSw(); 133 void reloadSw();
134 134
135 // used to redraw keyboard after edited colors 135 // used to redraw keyboard after edited colors
136 void reloadKeyboard(); 136 void reloadKeyboard();
137 void receive( const QCString &msg, const QByteArray &data ); 137 void receive( const QCString &msg, const QByteArray &data );
138 138
139private: 139private:
140 int getKey( int &w, int j = -1 ); 140 int getKey( int &w, int j = -1 );
141 void clearHighlight(); 141 void clearHighlight();
142 142
143 bool *shift; 143 bool *shift;
144 bool *lock; 144 bool *lock;
145 bool *ctrl; 145 bool *ctrl;
146 bool *alt; 146 bool *alt;
147 bool *meta; 147 bool *meta;
148 bool *circumflex; 148 bool *circumflex;
149 bool *diaeresis; 149 bool *diaeresis;
150 bool *baccent; 150 bool *baccent;
151 bool *accent; 151 bool *accent;
152 152
153 uint useLargeKeys:1; 153 uint useLargeKeys:1;
154 uint usePicks:1; 154 uint usePicks:1;
155 uint useRepeat:1; 155 uint useRepeat:1;
156 156
157 int pressedKeyRow; 157 int pressedKeyRow;
158 int pressedKeyCol; 158 int pressedKeyCol;
159 159
160 KeyboardPicks *picks; 160 KeyboardPicks *picks;
161 161
162 int keyHeight; 162 int keyHeight;
163 int defaultKeyWidth; 163 int defaultKeyWidth;
164 int xoffs; 164 int xoffs;
165 165
166 int unicode; 166 int unicode;
167 int qkeycode; 167 int qkeycode;
168 int modifiers; 168 int modifiers;
169 169
170 int pressTid; 170 int pressTid;
171 bool pressed; 171 bool pressed;
172 172
173 Keys *keys; 173 Keys *keys;
174 174
175 /* for korean input */ 175 /* for korean input */
176 ushort schar, mchar, echar; 176 ushort schar, mchar, echar;
177 ushort parseKoreanInput(ushort c); 177 ushort parseKoreanInput(ushort c);
178 ushort combineKoreanChars(const ushort s, const ushort m, const ushort e); 178 ushort combineKoreanChars(const ushort s, const ushort m, const ushort e);
179 ushort constoe(const ushort c); 179 ushort constoe(const ushort c);
180 180
181 QTimer *repeatTimer; 181 QTimer *repeatTimer;
182 182
183 /* colors */ 183 /* colors */
184 void loadKeyboardColors(); 184 void loadKeyboardColors();
185 QColor keycolor; 185 QColor keycolor;
186 QColor keycolor_pressed; 186 QColor keycolor_pressed;
187 QColor keycolor_lines; 187 QColor keycolor_lines;
188 QColor textcolor; 188 QColor textcolor;
189 189
190 ConfigDlg *configdlg; 190 ConfigDlg *configdlg;
191}; 191};
192 192
193} // namespace MultiKey 193} // namespace MultiKey