summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2005-04-27 17:36:57 (UTC)
committer mickeyl <mickeyl>2005-04-27 17:36:57 (UTC)
commitde20c0fd9df84ec55408fceb3df416e45e1df7d5 (patch) (unidiff)
tree31e9257bae568264daa05ea563c9ee041dd56d1b
parent90eab99ca45af9b0c9dc0d8eaa049a7d8e4b0f15 (diff)
downloadopie-de20c0fd9df84ec55408fceb3df416e45e1df7d5.zip
opie-de20c0fd9df84ec55408fceb3df416e45e1df7d5.tar.gz
opie-de20c0fd9df84ec55408fceb3df416e45e1df7d5.tar.bz2
add hotplug-qcop skeleton
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--config.in1
-rw-r--r--core/tools/hotplug-qcop/config.in5
-rw-r--r--core/tools/hotplug-qcop/hotplug-qcop.pro16
-rw-r--r--core/tools/hotplug-qcop/main.cpp45
-rw-r--r--packages1
5 files changed, 68 insertions, 0 deletions
diff --git a/config.in b/config.in
index e5374fb..61107e7 100644
--- a/config.in
+++ b/config.in
@@ -168,64 +168,65 @@ config OPIE_TASKBAR_LOCK_KEY_STATE
168 168
169config LIBQPE_WITHROHFEEDBACK 169config LIBQPE_WITHROHFEEDBACK
170 boolean "Build libqpe with Right-On-Hold feedback" 170 boolean "Build libqpe with Right-On-Hold feedback"
171 default y 171 default y
172 172
173config LIBQPE_NO_INLINE_IMAGES 173config LIBQPE_NO_INLINE_IMAGES
174 boolean "Build libqpe without inline images" 174 boolean "Build libqpe without inline images"
175 default n 175 default n
176 176
177config OPIE_NO_SOUND_PCM_READ_BITS 177config OPIE_NO_SOUND_PCM_READ_BITS
178 boolean "There is not a pcm_read_bits io control" 178 boolean "There is not a pcm_read_bits io control"
179 default y if TARGET_SHARP 179 default y if TARGET_SHARP
180 default n if ! TARGET_SHARP 180 default n if ! TARGET_SHARP
181endmenu 181endmenu
182 182
183menu "Dependencies" 183menu "Dependencies"
184 source dependencies.in 184 source dependencies.in
185endmenu 185endmenu
186 186
187menu "Base" 187menu "Base"
188 choice 188 choice
189 prompt "Qpe Library Selection" 189 prompt "Qpe Library Selection"
190 default LIBQPE 190 default LIBQPE
191 source library/config.in 191 source library/config.in
192 source x11/config.in 192 source x11/config.in
193 endchoice 193 endchoice
194 source libopie2/config.in 194 source libopie2/config.in
195 source libqtaux/config.in 195 source libqtaux/config.in
196 source rsync/config.in 196 source rsync/config.in
197 source core/opie-login/config.in 197 source core/opie-login/config.in
198 source core/opiealarm/config.in 198 source core/opiealarm/config.in
199 source core/tools/quicklauncher/config.in 199 source core/tools/quicklauncher/config.in
200 source core/tools/hotplug-qcop/config.in
200 source core/launcher/config.in 201 source core/launcher/config.in
201 source core/symlinker/config.in 202 source core/symlinker/config.in
202endmenu 203endmenu
203 204
204comment "" 205comment ""
205 206
206menu "Applets" 207menu "Applets"
207 source core/applets/config.in 208 source core/applets/config.in
208 source noncore/applets/config.in 209 source noncore/applets/config.in
209endmenu 210endmenu
210 211
211menu "Apps" 212menu "Apps"
212 source core/apps/config.in 213 source core/apps/config.in
213 source noncore/apps/config.in 214 source noncore/apps/config.in
214endmenu 215endmenu
215 216
216menu "Communications and Networking" 217menu "Communications and Networking"
217 source noncore/comm/config.in 218 source noncore/comm/config.in
218 source noncore/net/config.in 219 source noncore/net/config.in
219endmenu 220endmenu
220 221
221menu "Games" 222menu "Games"
222 source noncore/games/config.in 223 source noncore/games/config.in
223endmenu 224endmenu
224 225
225menu "Graphics and Multimedia" 226menu "Graphics and Multimedia"
226 source freetype/config.in 227 source freetype/config.in
227 source noncore/graphics/config.in 228 source noncore/graphics/config.in
228 source core/multimedia/config.in 229 source core/multimedia/config.in
229 source noncore/multimedia/config.in 230 source noncore/multimedia/config.in
230endmenu 231endmenu
231 232
diff --git a/core/tools/hotplug-qcop/config.in b/core/tools/hotplug-qcop/config.in
new file mode 100644
index 0000000..79abb6a
--- a/dev/null
+++ b/core/tools/hotplug-qcop/config.in
@@ -0,0 +1,5 @@
1 config HOTPLUG_QCOP
2 boolean "The HotPlug -> QCop Event Bridge"
3 default "y"
4 depends ( LIBQPE || LIBQPE-X11 )
5
diff --git a/core/tools/hotplug-qcop/hotplug-qcop.pro b/core/tools/hotplug-qcop/hotplug-qcop.pro
new file mode 100644
index 0000000..4ab7e03
--- a/dev/null
+++ b/core/tools/hotplug-qcop/hotplug-qcop.pro
@@ -0,0 +1,16 @@
1 TEMPLATE= app
2 CONFIG += qt warn_on
3 DESTDIR = $(OPIEDIR)/bin
4
5 HEADERS =
6 SOURCES = main.cpp
7 INTERFACES=
8
9 INCLUDEPATH+= $(OPIEDIR)/include
10 LIBS += -lqpe
11
12 TARGET = hotplug-qcop
13 VERSION = 0.0.0
14 AUTHOR = Michael 'Mickey' Lauer <mickey@Vanille.de>
15
16include( $(OPIEDIR)/include.pro )
diff --git a/core/tools/hotplug-qcop/main.cpp b/core/tools/hotplug-qcop/main.cpp
new file mode 100644
index 0000000..bd5431d
--- a/dev/null
+++ b/core/tools/hotplug-qcop/main.cpp
@@ -0,0 +1,45 @@
1/*
2 This file is part of the Opie Project
3 (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4 =.
5 .=l.
6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU General Public
10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; version 2 of the License.
12     ._= =}       :
13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details.
21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA.
28*/
29
30/* OPIE */
31#include <qpe/qcopenvelope_qws.h>
32
33/* QT */
34#include <qstring.h>
35
36/* STD */
37#include <stdlib.h>
38
39int main( int argc, char** argv )
40{
41 qDebug( "NOTE: hotplug-qcop started" );
42 qDebug( "... now doing something meaningful ..." );
43 qDebug( "NOTE: hotplug-qcop ended" );
44 return 0;
45}
diff --git a/packages b/packages
index e440cdb..40a7125 100644
--- a/packages
+++ b/packages
@@ -39,64 +39,65 @@ CONFIG_DECO_FLAT noncore/decorations/flat flat.pro
39 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro 39 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro
40 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro 40 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro
41 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro 41 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro
42CONFIG_DOCTAB noncore/settings/doctab doctab.pro 42CONFIG_DOCTAB noncore/settings/doctab doctab.pro
43 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro 43 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro
44 CONFIG_DVORAK inputmethods/dvorakdvorak.pro 44 CONFIG_DVORAK inputmethods/dvorakdvorak.pro
45 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro 45 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro
46 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro 46 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro
47 CONFIG_EXAMPLE_APPLET examples/appletapplet.pro 47 CONFIG_EXAMPLE_APPLET examples/appletapplet.pro
48CONFIG_EXAMPLE_BOARD examples/inputmethod inputmethod.pro 48CONFIG_EXAMPLE_BOARD examples/inputmethod inputmethod.pro
49 CONFIG_EXAMPLE_LIBOPIE2COREexamples/opiecore opiecore.pro 49 CONFIG_EXAMPLE_LIBOPIE2COREexamples/opiecore opiecore.pro
50 CONFIG_EXAMPLE_LIBOPIE2DBexamples/opiedb opiedb.pro 50 CONFIG_EXAMPLE_LIBOPIE2DBexamples/opiedb opiedb.pro
51 CONFIG_EXAMPLE_LIBOPIE2MMexamples/opiemm opiemm.pro 51 CONFIG_EXAMPLE_LIBOPIE2MMexamples/opiemm opiemm.pro
52 CONFIG_EXAMPLE_LIBOPIE2NETexamples/opienet opienet.pro 52 CONFIG_EXAMPLE_LIBOPIE2NETexamples/opienet opienet.pro
53 CONFIG_EXAMPLE_LIBOPIE2PIMexamples/opiepim opiepim.pro 53 CONFIG_EXAMPLE_LIBOPIE2PIMexamples/opiepim opiepim.pro
54 CONFIG_EXAMPLE_LIBOPIE2SECURITYexamples/opiesecurity opiesecurity.pro 54 CONFIG_EXAMPLE_LIBOPIE2SECURITYexamples/opiesecurity opiesecurity.pro
55 CONFIG_EXAMPLE_LIBOPIE2UI examples/opieuiopieui.pro 55 CONFIG_EXAMPLE_LIBOPIE2UI examples/opieuiopieui.pro
56CONFIG_EXAMPLE_MENU examples/menuapplet menuapplet.pro 56CONFIG_EXAMPLE_MENU examples/menuapplet menuapplet.pro
57CONFIG_EXAMPLE_VPN examples/networksettings networksettings.pro 57CONFIG_EXAMPLE_VPN examples/networksettings networksettings.pro
58 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro 58 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro
59 CONFIG_FILEBROWSER noncore/unsupported/filebrowserfilebrowser.pro 59 CONFIG_FILEBROWSER noncore/unsupported/filebrowserfilebrowser.pro
60 CONFIG_FLAT noncore/styles/flatflat.pro 60 CONFIG_FLAT noncore/styles/flatflat.pro
61 CONFIG_FORMATTER noncore/tools/formatterformatter.pro 61 CONFIG_FORMATTER noncore/tools/formatterformatter.pro
62 CONFIG_FREETYPE freetypefreetype.pro 62 CONFIG_FREETYPE freetypefreetype.pro
63 CONFIG_FRESH noncore/styles/freshfresh.pro 63 CONFIG_FRESH noncore/styles/freshfresh.pro
64 CONFIG_FTPLIB noncore/net/ftplibftplib.pro 64 CONFIG_FTPLIB noncore/net/ftplibftplib.pro
65 CONFIG_GO noncore/games/gogo.pro 65 CONFIG_GO noncore/games/gogo.pro
66 CONFIG_GSMTOOL noncore/unsupported/gsmtoolgsmtool.pro 66 CONFIG_GSMTOOL noncore/unsupported/gsmtoolgsmtool.pro
67 CONFIG_GUTENBROWSER noncore/apps/opie-gutenbrowseropie-gutenbrowser.pro 67 CONFIG_GUTENBROWSER noncore/apps/opie-gutenbrowseropie-gutenbrowser.pro
68 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro 68 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro
69 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro 69 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro
70 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro 70 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro
71 CONFIG_HOTPLUG_QCOP core/tools/hotplug-qcophotplug-qcop.pro
71 CONFIG_INTERFACES noncore/settings/networksettings/interfacesinterfaces.pro 72 CONFIG_INTERFACES noncore/settings/networksettings/interfacesinterfaces.pro
72 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro 73 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro
73 CONFIG_JUMPX inputmethods/jumpxjumpx.pro 74 CONFIG_JUMPX inputmethods/jumpxjumpx.pro
74 CONFIG_KBILL noncore/games/kbillkbill.pro 75 CONFIG_KBILL noncore/games/kbillkbill.pro
75 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro 76 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro
76 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro 77 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro
77CONFIG_KEYHELPER noncore/applets/keyhelper keyhelper.pro 78CONFIG_KEYHELPER noncore/applets/keyhelper keyhelper.pro
78 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro 79 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro
79 CONFIG_KEYVIEW development/keyviewkeyview.pro 80 CONFIG_KEYVIEW development/keyviewkeyview.pro
80 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro 81 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro
81 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro 82 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro
82 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro 83 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro
83 CONFIG_LAUNCHER core/launcherserver.pro 84 CONFIG_LAUNCHER core/launcherserver.pro
84 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro 85 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro
85 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro 86 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro
86 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro 87 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro
87 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro 88 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro
88 CONFIG_LIBMAIL noncore/unsupported/mail2/libmaillibmail.pro 89 CONFIG_LIBMAIL noncore/unsupported/mail2/libmaillibmail.pro
89CONFIG_LIBMAILWRAPPER noncore/net/mail/libmailwrapper libmailwrapper.pro 90CONFIG_LIBMAILWRAPPER noncore/net/mail/libmailwrapper libmailwrapper.pro
90 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro 91 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro
91 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro 92 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro
92 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro 93 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro
93 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro 94 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro
94 CONFIG_LIBOPIE2MM libopie2/opiemmopiemm.pro 95 CONFIG_LIBOPIE2MM libopie2/opiemmopiemm.pro
95 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro 96 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro
96 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro 97 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro
97 CONFIG_LIBOPIE2SECURITYlibopie2/opiesecurity opiesecurity.pro 98 CONFIG_LIBOPIE2SECURITYlibopie2/opiesecurity opiesecurity.pro
98 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro 99 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro
99 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro 100 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro
100 CONFIG_LIBOPIEnoncore/unsupported/libopie libopie.pro 101 CONFIG_LIBOPIEnoncore/unsupported/libopie libopie.pro
101 CONFIG_LIBQPE librarylibrary.pro 102 CONFIG_LIBQPE librarylibrary.pro
102 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro 103 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro