summaryrefslogtreecommitdiff
Unidiff
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
@@ -184,32 +184,33 @@ menu "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
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
@@ -55,32 +55,33 @@ CONFIG_EXAMPLE_LIBOPIE2SECURITY examples/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