summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2008-10-12 19:21:58 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2008-10-12 19:21:58 +0000
commitf958717d43420655519ae079ef0d35aa912411b2 (patch)
treedf0dbb774dc3619e2b53c944c6928724092dc171
parent3d30029883e7e2a862bceede967d95d0bfbd93bb (diff)
downloadrockbox-f958717d43420655519ae079ef0d35aa912411b2.tar.gz
rockbox-f958717d43420655519ae079ef0d35aa912411b2.zip
Separate basic functionality from GUI parts by moving it into a separate folder. Some files still need to get cleaned up prior moving them too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18788 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/rbutilqt/base/autodetection.cpp (renamed from rbutil/rbutilqt/autodetection.cpp)1
-rw-r--r--rbutil/rbutilqt/base/autodetection.h (renamed from rbutil/rbutilqt/autodetection.h)0
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallbase.cpp (renamed from rbutil/rbutilqt/bootloaderinstallbase.cpp)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallbase.h (renamed from rbutil/rbutilqt/bootloaderinstallbase.h)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallfile.cpp (renamed from rbutil/rbutilqt/bootloaderinstallfile.cpp)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallfile.h (renamed from rbutil/rbutilqt/bootloaderinstallfile.h)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallhex.cpp (renamed from rbutil/rbutilqt/bootloaderinstallhex.cpp)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallhex.h (renamed from rbutil/rbutilqt/bootloaderinstallhex.h)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallipod.cpp (renamed from rbutil/rbutilqt/bootloaderinstallipod.cpp)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallipod.h (renamed from rbutil/rbutilqt/bootloaderinstallipod.h)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallmi4.cpp (renamed from rbutil/rbutilqt/bootloaderinstallmi4.cpp)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallmi4.h (renamed from rbutil/rbutilqt/bootloaderinstallmi4.h)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallsansa.cpp (renamed from rbutil/rbutilqt/bootloaderinstallsansa.cpp)2
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallsansa.h (renamed from rbutil/rbutilqt/bootloaderinstallsansa.h)2
-rw-r--r--rbutil/rbutilqt/base/httpget.cpp (renamed from rbutil/rbutilqt/httpget.cpp)0
-rw-r--r--rbutil/rbutilqt/base/httpget.h (renamed from rbutil/rbutilqt/httpget.h)0
-rw-r--r--rbutil/rbutilqt/base/rbunzip.cpp (renamed from rbutil/rbutilqt/rbunzip.cpp)0
-rw-r--r--rbutil/rbutilqt/base/rbunzip.h (renamed from rbutil/rbutilqt/rbunzip.h)0
-rw-r--r--rbutil/rbutilqt/base/rbzip.cpp (renamed from rbutil/rbutilqt/rbzip.cpp)0
-rw-r--r--rbutil/rbutilqt/base/rbzip.h (renamed from rbutil/rbutilqt/rbzip.h)0
-rw-r--r--rbutil/rbutilqt/base/utils.cpp (renamed from rbutil/rbutilqt/utils.cpp)0
-rw-r--r--rbutil/rbutilqt/base/utils.h (renamed from rbutil/rbutilqt/utils.h)0
-rw-r--r--rbutil/rbutilqt/rbutilqt.pro45
23 files changed, 36 insertions, 34 deletions
diff --git a/rbutil/rbutilqt/autodetection.cpp b/rbutil/rbutilqt/base/autodetection.cpp
index 7c830b17c2..67e95b998d 100644
--- a/rbutil/rbutilqt/autodetection.cpp
+++ b/rbutil/rbutilqt/base/autodetection.cpp
@@ -17,6 +17,7 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#include <QtCore>
20#include "autodetection.h" 21#include "autodetection.h"
21 22
22#if defined(Q_OS_LINUX) || defined(Q_OS_MACX) 23#if defined(Q_OS_LINUX) || defined(Q_OS_MACX)
diff --git a/rbutil/rbutilqt/autodetection.h b/rbutil/rbutilqt/base/autodetection.h
index 1fbe47f9a7..1fbe47f9a7 100644
--- a/rbutil/rbutilqt/autodetection.h
+++ b/rbutil/rbutilqt/base/autodetection.h
diff --git a/rbutil/rbutilqt/bootloaderinstallbase.cpp b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
index 0af30c4e93..d0abffa44d 100644
--- a/rbutil/rbutilqt/bootloaderinstallbase.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallbase.h b/rbutil/rbutilqt/base/bootloaderinstallbase.h
index 4f0d279229..0916935208 100644
--- a/rbutil/rbutilqt/bootloaderinstallbase.h
+++ b/rbutil/rbutilqt/base/bootloaderinstallbase.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallfile.cpp b/rbutil/rbutilqt/base/bootloaderinstallfile.cpp
index 7e4d6e81ea..daa1ad8af7 100644
--- a/rbutil/rbutilqt/bootloaderinstallfile.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallfile.cpp
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallfile.h b/rbutil/rbutilqt/base/bootloaderinstallfile.h
index 6ffc03b037..075f047ed2 100644
--- a/rbutil/rbutilqt/bootloaderinstallfile.h
+++ b/rbutil/rbutilqt/base/bootloaderinstallfile.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallhex.cpp b/rbutil/rbutilqt/base/bootloaderinstallhex.cpp
index e4cc4cc08a..aa42beb994 100644
--- a/rbutil/rbutilqt/bootloaderinstallhex.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallhex.cpp
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallhex.h b/rbutil/rbutilqt/base/bootloaderinstallhex.h
index 2fa5246c7f..04b657a193 100644
--- a/rbutil/rbutilqt/bootloaderinstallhex.h
+++ b/rbutil/rbutilqt/base/bootloaderinstallhex.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallipod.cpp b/rbutil/rbutilqt/base/bootloaderinstallipod.cpp
index 211b864b06..e47c96b239 100644
--- a/rbutil/rbutilqt/bootloaderinstallipod.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallipod.cpp
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallipod.h b/rbutil/rbutilqt/base/bootloaderinstallipod.h
index 1e464a228b..5867b754f1 100644
--- a/rbutil/rbutilqt/bootloaderinstallipod.h
+++ b/rbutil/rbutilqt/base/bootloaderinstallipod.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallmi4.cpp b/rbutil/rbutilqt/base/bootloaderinstallmi4.cpp
index b106836262..fa0ebb2f02 100644
--- a/rbutil/rbutilqt/bootloaderinstallmi4.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallmi4.cpp
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallmi4.h b/rbutil/rbutilqt/base/bootloaderinstallmi4.h
index 12529f2811..c746b0c87f 100644
--- a/rbutil/rbutilqt/bootloaderinstallmi4.h
+++ b/rbutil/rbutilqt/base/bootloaderinstallmi4.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallsansa.cpp b/rbutil/rbutilqt/base/bootloaderinstallsansa.cpp
index 170cfd5905..9294cdd497 100644
--- a/rbutil/rbutilqt/bootloaderinstallsansa.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallsansa.cpp
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/bootloaderinstallsansa.h b/rbutil/rbutilqt/base/bootloaderinstallsansa.h
index d8544cf01e..a3911057a0 100644
--- a/rbutil/rbutilqt/bootloaderinstallsansa.h
+++ b/rbutil/rbutilqt/base/bootloaderinstallsansa.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2008 by Dominik Riebeling 9 * Copyright (C) 2008 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
diff --git a/rbutil/rbutilqt/httpget.cpp b/rbutil/rbutilqt/base/httpget.cpp
index 129545d158..129545d158 100644
--- a/rbutil/rbutilqt/httpget.cpp
+++ b/rbutil/rbutilqt/base/httpget.cpp
diff --git a/rbutil/rbutilqt/httpget.h b/rbutil/rbutilqt/base/httpget.h
index ba4cbc821e..ba4cbc821e 100644
--- a/rbutil/rbutilqt/httpget.h
+++ b/rbutil/rbutilqt/base/httpget.h
diff --git a/rbutil/rbutilqt/rbunzip.cpp b/rbutil/rbutilqt/base/rbunzip.cpp
index 49d12156ea..49d12156ea 100644
--- a/rbutil/rbutilqt/rbunzip.cpp
+++ b/rbutil/rbutilqt/base/rbunzip.cpp
diff --git a/rbutil/rbutilqt/rbunzip.h b/rbutil/rbutilqt/base/rbunzip.h
index 133437a4e2..133437a4e2 100644
--- a/rbutil/rbutilqt/rbunzip.h
+++ b/rbutil/rbutilqt/base/rbunzip.h
diff --git a/rbutil/rbutilqt/rbzip.cpp b/rbutil/rbutilqt/base/rbzip.cpp
index b5cfb22416..b5cfb22416 100644
--- a/rbutil/rbutilqt/rbzip.cpp
+++ b/rbutil/rbutilqt/base/rbzip.cpp
diff --git a/rbutil/rbutilqt/rbzip.h b/rbutil/rbutilqt/base/rbzip.h
index d7cf05f3de..d7cf05f3de 100644
--- a/rbutil/rbutilqt/rbzip.h
+++ b/rbutil/rbutilqt/base/rbzip.h
diff --git a/rbutil/rbutilqt/utils.cpp b/rbutil/rbutilqt/base/utils.cpp
index a6a80c6eef..a6a80c6eef 100644
--- a/rbutil/rbutilqt/utils.cpp
+++ b/rbutil/rbutilqt/base/utils.cpp
diff --git a/rbutil/rbutilqt/utils.h b/rbutil/rbutilqt/base/utils.h
index 19cdca92c9..19cdca92c9 100644
--- a/rbutil/rbutilqt/utils.h
+++ b/rbutil/rbutilqt/base/utils.h
diff --git a/rbutil/rbutilqt/rbutilqt.pro b/rbutil/rbutilqt/rbutilqt.pro
index 0135a87261..759f834ce4 100644
--- a/rbutil/rbutilqt/rbutilqt.pro
+++ b/rbutil/rbutilqt/rbutilqt.pro
@@ -46,7 +46,7 @@ QMAKE_EXTRA_TARGETS += lrelease
46SOURCES += rbutilqt.cpp \ 46SOURCES += rbutilqt.cpp \
47 main.cpp \ 47 main.cpp \
48 install.cpp \ 48 install.cpp \
49 httpget.cpp \ 49 base/httpget.cpp \
50 configure.cpp \ 50 configure.cpp \
51 zip/zip.cpp \ 51 zip/zip.cpp \
52 zip/unzip.cpp \ 52 zip/unzip.cpp \
@@ -54,14 +54,14 @@ SOURCES += rbutilqt.cpp \
54 progressloggergui.cpp \ 54 progressloggergui.cpp \
55 installtalkwindow.cpp \ 55 installtalkwindow.cpp \
56 talkfile.cpp \ 56 talkfile.cpp \
57 autodetection.cpp \ 57 base/autodetection.cpp \
58 ../ipodpatcher/ipodpatcher.c \ 58 ../ipodpatcher/ipodpatcher.c \
59 ../sansapatcher/sansapatcher.c \ 59 ../sansapatcher/sansapatcher.c \
60 browsedirtree.cpp \ 60 browsedirtree.cpp \
61 installthemes.cpp \ 61 installthemes.cpp \
62 uninstall.cpp \ 62 uninstall.cpp \
63 uninstallwindow.cpp \ 63 uninstallwindow.cpp \
64 utils.cpp \ 64 base/utils.cpp \
65 preview.cpp \ 65 preview.cpp \
66 encoders.cpp \ 66 encoders.cpp \
67 encodersgui.cpp \ 67 encodersgui.cpp \
@@ -72,22 +72,22 @@ SOURCES += rbutilqt.cpp \
72 voicefile.cpp \ 72 voicefile.cpp \
73 createvoicewindow.cpp \ 73 createvoicewindow.cpp \
74 rbsettings.cpp \ 74 rbsettings.cpp \
75 rbunzip.cpp \ 75 base/rbunzip.cpp \
76 rbzip.cpp \ 76 base/rbzip.cpp \
77 detect.cpp \ 77 detect.cpp \
78 sysinfo.cpp \ 78 sysinfo.cpp \
79 bootloaderinstallbase.cpp \ 79 base/bootloaderinstallbase.cpp \
80 bootloaderinstallmi4.cpp \ 80 base/bootloaderinstallmi4.cpp \
81 bootloaderinstallhex.cpp \ 81 base/bootloaderinstallhex.cpp \
82 bootloaderinstallipod.cpp \ 82 base/bootloaderinstallipod.cpp \
83 bootloaderinstallsansa.cpp \ 83 base/bootloaderinstallsansa.cpp \
84 bootloaderinstallfile.cpp \ 84 base/bootloaderinstallfile.cpp \
85 ../../tools/mkboot.c \ 85 ../../tools/mkboot.c \
86 ../../tools/iriver.c 86 ../../tools/iriver.c
87 87
88HEADERS += rbutilqt.h \ 88HEADERS += rbutilqt.h \
89 install.h \ 89 install.h \
90 httpget.h \ 90 base/httpget.h \
91 configure.h \ 91 configure.h \
92 zip/zip.h \ 92 zip/zip.h \
93 zip/unzip.h \ 93 zip/unzip.h \
@@ -98,7 +98,7 @@ HEADERS += rbutilqt.h \
98 installzip.h \ 98 installzip.h \
99 installtalkwindow.h \ 99 installtalkwindow.h \
100 talkfile.h \ 100 talkfile.h \
101 autodetection.h \ 101 base/autodetection.h \
102 progressloggerinterface.h \ 102 progressloggerinterface.h \
103 progressloggergui.h \ 103 progressloggergui.h \
104 ../ipodpatcher/ipodpatcher.h \ 104 ../ipodpatcher/ipodpatcher.h \
@@ -113,7 +113,7 @@ HEADERS += rbutilqt.h \
113 installthemes.h \ 113 installthemes.h \
114 uninstall.h \ 114 uninstall.h \
115 uninstallwindow.h \ 115 uninstallwindow.h \
116 utils.h \ 116 base/utils.h \
117 preview.h \ 117 preview.h \
118 encoders.h \ 118 encoders.h \
119 encodersgui.h \ 119 encodersgui.h \
@@ -124,21 +124,22 @@ HEADERS += rbutilqt.h \
124 voicefile.h \ 124 voicefile.h \
125 createvoicewindow.h \ 125 createvoicewindow.h \
126 rbsettings.h \ 126 rbsettings.h \
127 rbunzip.h \ 127 base/rbunzip.h \
128 rbzip.h \ 128 base/rbzip.h \
129 sysinfo.h \ 129 sysinfo.h \
130 detect.h \ 130 detect.h \
131 bootloaderinstallbase.h \ 131 base/bootloaderinstallbase.h \
132 bootloaderinstallmi4.h \ 132 base/bootloaderinstallmi4.h \
133 bootloaderinstallhex.h \ 133 base/bootloaderinstallhex.h \
134 bootloaderinstallipod.h \ 134 base/bootloaderinstallipod.h \
135 bootloaderinstallsansa.h \ 135 base/bootloaderinstallsansa.h \
136 bootloaderinstallfile.h \ 136 base/bootloaderinstallfile.h \
137 ../../tools/mkboot.h \ 137 ../../tools/mkboot.h \
138 ../../tools/iriver.h 138 ../../tools/iriver.h
139 139
140# Needed by QT on Win 140# Needed by QT on Win
141INCLUDEPATH = . irivertools zip zlib ../ipodpatcher ../sansapatcher ../../tools/rbspeex ../../tools 141INCLUDEPATH = . irivertools zip zlib ../ipodpatcher ../sansapatcher ../../tools/rbspeex ../../tools
142INCLUDEPATH += base
142 143
143LIBS += -L../../tools/rbspeex -lrbspeex 144LIBS += -L../../tools/rbspeex -lrbspeex
144 145