summaryrefslogtreecommitdiffstats
path: root/opensuse/tdebase/suse_default_move.diff
blob: 1eb938e208322c2ea24df31ad4f0fb4800367b5d (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
Index: empty/Makefile.am
===================================================================
--- /dev/null
+++ empty/Makefile.am
@@ -0,0 +1,17 @@
+# set the include path for X, qt and KDE
+INCLUDES= $(all_includes)
+
+# you can add here more. This one gets installed
+bin_PROGRAMS = 	default_desktop_aligning
+
+# Which sources should be compiled
+default_desktop_aligning_SOURCES = moving.cpp KDesktopIface.stub
+
+# the library search path.
+default_desktop_aligning_LDFLAGS = $(all_libraries) $(KDE_RPATH)
+
+# the libraries to link against. Be aware of the order. First the libraries,
+# that depend on the following ones.
+default_desktop_aligning_LDADD   = $(LIB_KDEUI)
+
+KDesktopIface_DIR = $(srcdir)/../kdesktop
Index: empty/moving.cpp
===================================================================
--- /dev/null
+++ empty/moving.cpp
@@ -0,0 +1,56 @@
+#include <kstandarddirs.h>
+#include <kglobalsettings.h>
+#include <kapplication.h>
+#include "KDesktopIface_stub.h"
+#include <kdebugclasses.h>
+#include <kcmdlineargs.h>
+#include <kconfig.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <qfileinfo.h>
+
+int main(int argc, char **argv)
+{
+    KCmdLineArgs::init(argc, argv, "default_desktop_moving",
+                          "move the icons on the correct place on initial boot",
+                          "0.1");
+    KApplication app;
+    QStringList icons = KGlobal::dirs()->findAllResources("data", "default_desktop/*.desktop");
+    char buffer[PATH_MAX];
+    strcpy(buffer, "/tmp/suse_desktop_XXXXXX");
+    mkdtemp(buffer);
+    QString tname = QString::fromLatin1(buffer);
+
+    icons.sort();
+
+    KDesktopIface_stub stub("kdesktop", "KDesktopIface");
+    KConfig c( "kdesktoprc" );
+    c.setGroup( "General" );
+
+    if ( c.readBoolEntry( "CopyDesktopLinks", true ) )
+    for (QStringList::ConstIterator it = icons.begin(); it != icons.end(); ++it)
+    {
+        QString name = *it;
+        QPoint t;
+        bool col = (name.mid(name.findRev('/') + 1, 4) == "COL_");
+        name = name.mid(name.findRev('/') + 5, name.length());
+        int index = name.find('_');
+        int num = name.left(index).toInt();
+
+        if (col)
+            t = stub.findPlaceForIcon(num, -1);
+        else
+            t = stub.findPlaceForIcon(-1, num);
+        QFileInfo f(*it);
+
+        name = name.mid(name.find('_', index + 1) + 1, name.length());
+
+	 if ( 0 == system(QString("mv '%1' '%1'").arg(*it).arg(tname + "/" + name).local8Bit()) )
+        	stub.addIcon( tname + "/" + name, t.x(), t.y());
+	
+        sleep(2); // only need to make sure kdesktop goes back in event loop
+    }
+    stub.lineupIcons();
+    system(QString("rm -f %1/moving_desktop.desktop").arg(KGlobalSettings::autostartPath()).latin1());
+    system(QString("rm -rf '%1'").arg(tname).local8Bit());
+}