author | zautrix <zautrix> | 2004-07-07 11:56:39 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-07 11:56:39 (UTC) |
commit | 56721aac86c9ae5253abac8962474c8d1a7e648a (patch) (unidiff) | |
tree | c12f41eba0d5724ee800cdb92727ffd6d3c1cf6c /microkde | |
parent | 13d88c91f2916090bd45e23b504d0b665c68126f (diff) | |
download | kdepimpi-56721aac86c9ae5253abac8962474c8d1a7e648a.zip kdepimpi-56721aac86c9ae5253abac8962474c8d1a7e648a.tar.gz kdepimpi-56721aac86c9ae5253abac8962474c8d1a7e648a.tar.bz2 |
Changes for compiling on desktop
-rw-r--r-- | microkde/kdecore/klibloader.cpp | 17 | ||||
-rw-r--r-- | microkde/kdecore/kstandarddirs.cpp | 3 | ||||
-rw-r--r-- | microkde/kdeui/ktoolbar.cpp | 2 | ||||
-rw-r--r-- | microkde/kresources/factory.cpp | 3 | ||||
-rw-r--r-- | microkde/microkde.pro | 10 |
5 files changed, 17 insertions, 18 deletions
diff --git a/microkde/kdecore/klibloader.cpp b/microkde/kdecore/klibloader.cpp index c07d50f..c091e05 100644 --- a/microkde/kdecore/klibloader.cpp +++ b/microkde/kdecore/klibloader.cpp | |||
@@ -1,647 +1,648 @@ | |||
1 | /* This file is part of the KDE libraries | 1 | /* This file is part of the KDE libraries |
2 | Copyright (C) 1999 Torben Weis <weis@kde.org> | 2 | Copyright (C) 1999 Torben Weis <weis@kde.org> |
3 | Copyright (C) 2000 Michael Matz <matz@kde.org> | 3 | Copyright (C) 2000 Michael Matz <matz@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License version 2 as published by the Free Software Foundation. | 7 | License version 2 as published by the Free Software Foundation. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | //US #include <config.h> | 19 | //US #include <config.h> |
20 | #include <qclipboard.h> | 20 | #include <qclipboard.h> |
21 | #include <qfile.h> | 21 | #include <qfile.h> |
22 | #include <qtimer.h> | 22 | #include <qtimer.h> |
23 | #include <qobjectdict.h> | 23 | #include <qobjectdict.h> |
24 | #include <qwidgetlist.h> | 24 | #include <qwidgetlist.h> |
25 | #include <qwidget.h> | 25 | #include <qwidget.h> |
26 | 26 | ||
27 | #include "kapplication.h" | 27 | #include "kapplication.h" |
28 | #include "klibloader.h" | 28 | #include "klibloader.h" |
29 | #include "kstandarddirs.h" | 29 | #include "kstandarddirs.h" |
30 | #include "kdebug.h" | 30 | #include "kdebug.h" |
31 | #include "klocale.h" | 31 | #include "klocale.h" |
32 | 32 | ||
33 | /*US | 33 | /*US |
34 | #ifndef NDEBUG | 34 | #ifndef NDEBUG |
35 | #include "ltdl.h" | 35 | #include "ltdl.h" |
36 | #endif | 36 | #endif |
37 | */ | 37 | */ |
38 | 38 | ||
39 | //US do everything through qlibrary | 39 | //US do everything through qlibrary |
40 | #ifndef DESKTOP_VERSION | 40 | #ifndef DESKTOP_VERSION |
41 | #include <qpe/qpeapplication.h> | 41 | #include <qpe/qpeapplication.h> |
42 | #include <qtopia/qlibrary.h> | 42 | #include <qtopia/qlibrary.h> |
43 | #else | ||
44 | #include <qlibrary.h> | ||
43 | #endif | 45 | #endif |
44 | 46 | ||
45 | /*US | 47 | |
46 | #ifdef Q_WS_X11 | ||
47 | #include <X11/Xlib.h> | ||
48 | #include <X11/Xatom.h> | ||
49 | #endif | ||
50 | */ | ||
51 | template class QAsciiDict<KLibrary>; | 48 | template class QAsciiDict<KLibrary>; |
52 | 49 | ||
53 | #include <stdlib.h> //getenv | 50 | #include <stdlib.h> //getenv |
54 | 51 | ||
55 | /*US | 52 | /*US |
56 | #if HAVE_DLFCN_H | 53 | #if HAVE_DLFCN_H |
57 | # include <dlfcn.h> | 54 | # include <dlfcn.h> |
58 | #endif | 55 | #endif |
59 | 56 | ||
60 | #ifdef RTLD_GLOBAL | 57 | #ifdef RTLD_GLOBAL |
61 | # define LT_GLOBAL RTLD_GLOBAL | 58 | # define LT_GLOBAL RTLD_GLOBAL |
62 | #else | 59 | #else |
63 | # ifdef DL_GLOBAL | 60 | # ifdef DL_GLOBAL |
64 | # define LT_GLOBAL DL_GLOBAL | 61 | # define LT_GLOBAL DL_GLOBAL |
65 | # endif | 62 | # endif |
66 | #endif | 63 | #endif |
67 | #ifndef LT_GLOBAL | 64 | #ifndef LT_GLOBAL |
68 | # define LT_GLOBAL 0 | 65 | # define LT_GLOBAL 0 |
69 | #endif | 66 | #endif |
70 | */ | 67 | */ |
71 | 68 | ||
72 | /*US | 69 | /*US |
73 | extern "C" { | 70 | extern "C" { |
74 | extern int lt_dlopen_flag; | 71 | extern int lt_dlopen_flag; |
75 | } | 72 | } |
76 | */ | 73 | */ |
77 | 74 | ||
78 | KLibFactory::KLibFactory( QObject* parent, const char* name ) | 75 | KLibFactory::KLibFactory( QObject* parent, const char* name ) |
79 | : QObject( parent, name ) | 76 | : QObject( parent, name ) |
80 | { | 77 | { |
81 | } | 78 | } |
82 | 79 | ||
83 | KLibFactory::~KLibFactory() | 80 | KLibFactory::~KLibFactory() |
84 | { | 81 | { |
85 | // kdDebug(150) << "Deleting KLibFactory " << this << endl; | 82 | // kdDebug(150) << "Deleting KLibFactory " << this << endl; |
86 | } | 83 | } |
87 | 84 | ||
88 | QObject* KLibFactory::create( QObject* parent, const char* name, const char* classname, const QStringList &args ) | 85 | QObject* KLibFactory::create( QObject* parent, const char* name, const char* classname, const QStringList &args ) |
89 | { | 86 | { |
90 | QObject* obj = createObject( parent, name, classname, args ); | 87 | QObject* obj = createObject( parent, name, classname, args ); |
91 | if ( obj ) | 88 | if ( obj ) |
92 | emit objectCreated( obj ); | 89 | emit objectCreated( obj ); |
93 | return obj; | 90 | return obj; |
94 | } | 91 | } |
95 | 92 | ||
96 | 93 | ||
97 | QObject* KLibFactory::createObject( QObject*, const char*, const char*, const QStringList &) | 94 | QObject* KLibFactory::createObject( QObject*, const char*, const char*, const QStringList &) |
98 | { | 95 | { |
99 | return 0; | 96 | return 0; |
100 | } | 97 | } |
101 | 98 | ||
102 | 99 | ||
103 | // ----------------------------------------------- | 100 | // ----------------------------------------------- |
104 | 101 | ||
105 | //US KLibrary::KLibrary( const QString& libname, const QString& filename, void * handle ) | 102 | //US KLibrary::KLibrary( const QString& libname, const QString& filename, void * handle ) |
106 | KLibrary::KLibrary( const QString& libname, const QString& filename, QLibrary* handle ) | 103 | KLibrary::KLibrary( const QString& libname, const QString& filename, QLibrary* handle ) |
107 | { | 104 | { |
108 | /* Make sure, we have a KLibLoader */ | 105 | /* Make sure, we have a KLibLoader */ |
109 | (void) KLibLoader::self(); | 106 | (void) KLibLoader::self(); |
110 | m_libname = libname; | 107 | m_libname = libname; |
111 | m_filename = filename; | 108 | m_filename = filename; |
112 | m_handle = handle; | 109 | m_handle = handle; |
113 | m_factory = 0; | 110 | m_factory = 0; |
114 | m_timer = 0; | 111 | m_timer = 0; |
115 | } | 112 | } |
116 | 113 | ||
117 | KLibrary::~KLibrary() | 114 | KLibrary::~KLibrary() |
118 | { | 115 | { |
119 | // kdDebug(150) << "Deleting KLibrary " << this << " " << m_libname << endl; | 116 | // kdDebug(150) << "Deleting KLibrary " << this << " " << m_libname << endl; |
120 | if ( m_timer && m_timer->isActive() ) | 117 | if ( m_timer && m_timer->isActive() ) |
121 | m_timer->stop(); | 118 | m_timer->stop(); |
122 | 119 | ||
123 | // If any object is remaining, delete | 120 | // If any object is remaining, delete |
124 | if ( m_objs.count() > 0 ) | 121 | if ( m_objs.count() > 0 ) |
125 | { | 122 | { |
126 | QPtrListIterator<QObject> it( m_objs ); | 123 | QPtrListIterator<QObject> it( m_objs ); |
127 | for ( ; it.current() ; ++it ) | 124 | for ( ; it.current() ; ++it ) |
128 | { | 125 | { |
129 | kdDebug(150) << "Factory still has object " << it.current() << " " << it.current()->name () << " Library = " << m_libname << endl; | 126 | kdDebug(150) << "Factory still has object " << it.current() << " " << it.current()->name () << " Library = " << m_libname << endl; |
130 | disconnect( it.current(), SIGNAL( destroyed() ), | 127 | disconnect( it.current(), SIGNAL( destroyed() ), |
131 | this, SLOT( slotObjectDestroyed() ) ); | 128 | this, SLOT( slotObjectDestroyed() ) ); |
132 | } | 129 | } |
133 | m_objs.setAutoDelete(true); | 130 | m_objs.setAutoDelete(true); |
134 | m_objs.clear(); | 131 | m_objs.clear(); |
135 | } | 132 | } |
136 | 133 | ||
137 | if ( m_factory ) { | 134 | if ( m_factory ) { |
138 | //kdDebug(150) << " ... deleting the factory " << m_factory << endl; | 135 | //kdDebug(150) << " ... deleting the factory " << m_factory << endl; |
139 | delete m_factory; | 136 | delete m_factory; |
140 | } | 137 | } |
141 | } | 138 | } |
142 | 139 | ||
143 | QString KLibrary::name() const | 140 | QString KLibrary::name() const |
144 | { | 141 | { |
145 | return m_libname; | 142 | return m_libname; |
146 | } | 143 | } |
147 | 144 | ||
148 | QString KLibrary::fileName() const | 145 | QString KLibrary::fileName() const |
149 | { | 146 | { |
150 | return m_filename; | 147 | return m_filename; |
151 | } | 148 | } |
152 | 149 | ||
153 | KLibFactory* KLibrary::factory() | 150 | KLibFactory* KLibrary::factory() |
154 | { | 151 | { |
155 | if ( m_factory ) | 152 | if ( m_factory ) |
156 | return m_factory; | 153 | return m_factory; |
157 | 154 | ||
158 | QCString symname; | 155 | QCString symname; |
159 | symname.sprintf("init_%s", name().latin1() ); | 156 | symname.sprintf("init_%s", name().latin1() ); |
160 | 157 | ||
161 | void* sym = symbol( symname ); | 158 | void* sym = symbol( symname ); |
162 | if ( !sym ) | 159 | if ( !sym ) |
163 | { | 160 | { |
164 | qDebug("KLibrary: The library %s does not offer an %s function", name().latin1(), symname.data()); | 161 | qDebug("KLibrary: The library %s does not offer an %s function", name().latin1(), symname.data()); |
165 | #ifndef NDEBUG | 162 | #ifndef NDEBUG |
166 | //US qDebug("KLibrary: errorcode: %s", lt_dlerror()); | 163 | //US qDebug("KLibrary: errorcode: %s", lt_dlerror()); |
167 | #endif | 164 | #endif |
168 | kdWarning(150) << "KLibrary: The library " << name().latin1() << " does not offer an init_" << name().latin1() << " function" << endl; | 165 | kdWarning(150) << "KLibrary: The library " << name().latin1() << " does not offer an init_" << name().latin1() << " function" << endl; |
169 | return 0; | 166 | return 0; |
170 | } | 167 | } |
171 | 168 | ||
172 | typedef KLibFactory* (*t_func)(); | 169 | typedef KLibFactory* (*t_func)(); |
173 | t_func func = (t_func)sym; | 170 | t_func func = (t_func)sym; |
174 | m_factory = func(); | 171 | m_factory = func(); |
175 | 172 | ||
176 | if( !m_factory ) | 173 | if( !m_factory ) |
177 | { | 174 | { |
178 | kdWarning(150) << "KLibrary: The library " << name() << " does not offer a KDE compatible factory" << endl; | 175 | kdWarning(150) << "KLibrary: The library " << name() << " does not offer a KDE compatible factory" << endl; |
179 | return 0; | 176 | return 0; |
180 | } | 177 | } |
181 | 178 | ||
182 | connect( m_factory, SIGNAL( objectCreated( QObject * ) ), | 179 | connect( m_factory, SIGNAL( objectCreated( QObject * ) ), |
183 | this, SLOT( slotObjectCreated( QObject * ) ) ); | 180 | this, SLOT( slotObjectCreated( QObject * ) ) ); |
184 | 181 | ||
185 | return m_factory; | 182 | return m_factory; |
186 | } | 183 | } |
187 | 184 | ||
188 | void* KLibrary::symbol( const char* symname ) const | 185 | void* KLibrary::symbol( const char* symname ) const |
189 | { | 186 | { |
190 | //US void* sym = lt_dlsym( (lt_dlhandle) m_handle, symname ); | 187 | //US void* sym = lt_dlsym( (lt_dlhandle) m_handle, symname ); |
191 | void* sym = m_handle->resolve( symname ); | 188 | void* sym = m_handle->resolve( symname ); |
192 | if ( !sym ) | 189 | if ( !sym ) |
193 | { | 190 | { |
194 | //US kdWarning(150) << "KLibrary: " << lt_dlerror() << endl; | 191 | //US kdWarning(150) << "KLibrary: " << lt_dlerror() << endl; |
195 | kdWarning(150) << "KLibrary: " << m_libname << ", symbol:" << symname << " not found " << endl; | ||
196 | return 0; | 192 | return 0; |
197 | } | 193 | } |
198 | 194 | ||
199 | return sym; | 195 | return sym; |
200 | } | 196 | } |
201 | 197 | ||
202 | bool KLibrary::hasSymbol( const char* symname ) const | 198 | bool KLibrary::hasSymbol( const char* symname ) const |
203 | { | 199 | { |
204 | //US void* sym = lt_dlsym( (lt_dlhandle) m_handle, symname ); | 200 | //US void* sym = lt_dlsym( (lt_dlhandle) m_handle, symname ); |
205 | void* sym = m_handle->resolve( symname ); | 201 | void* sym = m_handle->resolve( symname ); |
206 | return (sym != 0L ); | 202 | return (sym != 0L ); |
207 | } | 203 | } |
208 | 204 | ||
209 | void KLibrary::unload() const | 205 | void KLibrary::unload() const |
210 | { | 206 | { |
211 | if (KLibLoader::s_self) | 207 | if (KLibLoader::s_self) |
212 | KLibLoader::s_self->unloadLibrary(QFile::encodeName(name())); | 208 | KLibLoader::s_self->unloadLibrary(QFile::encodeName(name())); |
213 | } | 209 | } |
214 | 210 | ||
215 | void KLibrary::slotObjectCreated( QObject *obj ) | 211 | void KLibrary::slotObjectCreated( QObject *obj ) |
216 | { | 212 | { |
217 | if ( !obj ) | 213 | if ( !obj ) |
218 | return; | 214 | return; |
219 | 215 | ||
220 | if ( m_timer && m_timer->isActive() ) | 216 | if ( m_timer && m_timer->isActive() ) |
221 | m_timer->stop(); | 217 | m_timer->stop(); |
222 | 218 | ||
223 | if ( m_objs.containsRef( obj ) ) | 219 | if ( m_objs.containsRef( obj ) ) |
224 | return; // we know this object already | 220 | return; // we know this object already |
225 | 221 | ||
226 | connect( obj, SIGNAL( destroyed() ), | 222 | connect( obj, SIGNAL( destroyed() ), |
227 | this, SLOT( slotObjectDestroyed() ) ); | 223 | this, SLOT( slotObjectDestroyed() ) ); |
228 | 224 | ||
229 | m_objs.append( obj ); | 225 | m_objs.append( obj ); |
230 | } | 226 | } |
231 | 227 | ||
232 | void KLibrary::slotObjectDestroyed() | 228 | void KLibrary::slotObjectDestroyed() |
233 | { | 229 | { |
234 | m_objs.removeRef( sender() ); | 230 | m_objs.removeRef( sender() ); |
235 | 231 | ||
236 | if ( m_objs.count() == 0 ) | 232 | if ( m_objs.count() == 0 ) |
237 | { | 233 | { |
238 | // kdDebug(150) << "KLibrary: shutdown timer for " << name() << " started!" | 234 | // kdDebug(150) << "KLibrary: shutdown timer for " << name() << " started!" |
239 | // << endl; | 235 | // << endl; |
240 | 236 | ||
241 | if ( !m_timer ) | 237 | if ( !m_timer ) |
242 | { | 238 | { |
243 | m_timer = new QTimer( this, "klibrary_shutdown_timer" ); | 239 | m_timer = new QTimer( this, "klibrary_shutdown_timer" ); |
244 | connect( m_timer, SIGNAL( timeout() ), | 240 | connect( m_timer, SIGNAL( timeout() ), |
245 | this, SLOT( slotTimeout() ) ); | 241 | this, SLOT( slotTimeout() ) ); |
246 | } | 242 | } |
247 | 243 | ||
248 | // as long as it's not stable make the timeout short, for debugging | 244 | // as long as it's not stable make the timeout short, for debugging |
249 | // pleasure (matz) | 245 | // pleasure (matz) |
250 | //m_timer->start( 1000*60, true ); | 246 | //m_timer->start( 1000*60, true ); |
251 | m_timer->start( 1000*10, true ); | 247 | m_timer->start( 1000*10, true ); |
252 | } | 248 | } |
253 | } | 249 | } |
254 | 250 | ||
255 | void KLibrary::slotTimeout() | 251 | void KLibrary::slotTimeout() |
256 | { | 252 | { |
257 | if ( m_objs.count() != 0 ) | 253 | if ( m_objs.count() != 0 ) |
258 | return; | 254 | return; |
259 | 255 | ||
260 | /* Don't go through KLibLoader::unloadLibrary(), because that uses the | 256 | /* Don't go through KLibLoader::unloadLibrary(), because that uses the |
261 | ref counter, but this timeout means to unconditionally close this library | 257 | ref counter, but this timeout means to unconditionally close this library |
262 | The destroyed() signal will take care to remove us from all lists. | 258 | The destroyed() signal will take care to remove us from all lists. |
263 | */ | 259 | */ |
264 | delete this; | 260 | delete this; |
265 | } | 261 | } |
266 | 262 | ||
267 | // ------------------------------------------------- | 263 | // ------------------------------------------------- |
268 | 264 | ||
269 | /* This helper class is needed, because KLibraries can go away without | 265 | /* This helper class is needed, because KLibraries can go away without |
270 | being unloaded. So we need some info about KLibraries even after its | 266 | being unloaded. So we need some info about KLibraries even after its |
271 | death. */ | 267 | death. */ |
272 | class KLibWrapPrivate | 268 | class KLibWrapPrivate |
273 | { | 269 | { |
274 | public: | 270 | public: |
275 | //US KLibWrapPrivate(KLibrary *l, lt_dlhandle h); | 271 | //US KLibWrapPrivate(KLibrary *l, lt_dlhandle h); |
276 | KLibWrapPrivate(KLibrary *l, QLibrary* h); | 272 | KLibWrapPrivate(KLibrary *l, QLibrary* h); |
277 | 273 | ||
278 | KLibrary *lib; | 274 | KLibrary *lib; |
279 | enum {UNKNOWN, UNLOAD, DONT_UNLOAD} unload_mode; | 275 | enum {UNKNOWN, UNLOAD, DONT_UNLOAD} unload_mode; |
280 | int ref_count; | 276 | int ref_count; |
281 | //US lt_dlhandle handle; | 277 | //US lt_dlhandle handle; |
282 | QLibrary *handle; | 278 | QLibrary *handle; |
283 | QString name; | 279 | QString name; |
284 | QString filename; | 280 | QString filename; |
285 | }; | 281 | }; |
286 | 282 | ||
287 | //US KLibWrapPrivate::KLibWrapPrivate(KLibrary *l, lt_dlhandle h) | 283 | //US KLibWrapPrivate::KLibWrapPrivate(KLibrary *l, lt_dlhandle h) |
288 | KLibWrapPrivate::KLibWrapPrivate(KLibrary *l, QLibrary* h) | 284 | KLibWrapPrivate::KLibWrapPrivate(KLibrary *l, QLibrary* h) |
289 | : lib(l), ref_count(1), handle(h), name(l->name()), filename(l->fileName()) | 285 | : lib(l), ref_count(1), handle(h), name(l->name()), filename(l->fileName()) |
290 | { | 286 | { |
291 | unload_mode = UNKNOWN; | 287 | unload_mode = UNKNOWN; |
292 | /*US | 288 | /*US |
293 | if (lt_dlsym(handle, "__kde_do_not_unload") != 0) { | 289 | if (lt_dlsym(handle, "__kde_do_not_unload") != 0) { |
294 | // kdDebug(150) << "Will not unload " << name << endl; | 290 | // kdDebug(150) << "Will not unload " << name << endl; |
295 | unload_mode = DONT_UNLOAD; | 291 | unload_mode = DONT_UNLOAD; |
296 | } else if (lt_dlsym(handle, "__kde_do_unload") != 0) { | 292 | } else if (lt_dlsym(handle, "__kde_do_unload") != 0) { |
297 | unload_mode = UNLOAD; | 293 | unload_mode = UNLOAD; |
298 | } | 294 | } |
299 | */ | 295 | */ |
300 | //US use instead: | 296 | //US use instead: |
301 | if (h->resolve("__kde_do_not_unload") != 0) { | 297 | if (h->resolve("__kde_do_not_unload") != 0) { |
302 | // kdDebug(150) << "Will not unload " << name << endl; | 298 | // kdDebug(150) << "Will not unload " << name << endl; |
303 | unload_mode = DONT_UNLOAD; | 299 | unload_mode = DONT_UNLOAD; |
304 | } else if (h->resolve("__kde_do_unload") != 0) { | 300 | } else if (h->resolve("__kde_do_unload") != 0) { |
305 | unload_mode = UNLOAD; | 301 | unload_mode = UNLOAD; |
306 | } | 302 | } |
307 | } | 303 | } |
308 | 304 | ||
309 | class KLibLoaderPrivate | 305 | class KLibLoaderPrivate |
310 | { | 306 | { |
311 | public: | 307 | public: |
312 | QPtrList<KLibWrapPrivate> loaded_stack; | 308 | QPtrList<KLibWrapPrivate> loaded_stack; |
313 | QPtrList<KLibWrapPrivate> pending_close; | 309 | QPtrList<KLibWrapPrivate> pending_close; |
314 | enum {UNKNOWN, UNLOAD, DONT_UNLOAD} unload_mode; | 310 | enum {UNKNOWN, UNLOAD, DONT_UNLOAD} unload_mode; |
315 | 311 | ||
316 | QString errorMessage; | 312 | QString errorMessage; |
317 | }; | 313 | }; |
318 | 314 | ||
319 | KLibLoader* KLibLoader::s_self = 0; | 315 | KLibLoader* KLibLoader::s_self = 0; |
320 | 316 | ||
321 | KLibLoader* KLibLoader::self() | 317 | KLibLoader* KLibLoader::self() |
322 | { | 318 | { |
323 | if ( !s_self ) | 319 | if ( !s_self ) |
324 | s_self = new KLibLoader; | 320 | s_self = new KLibLoader; |
325 | return s_self; | 321 | return s_self; |
326 | } | 322 | } |
327 | 323 | ||
328 | void KLibLoader::cleanUp() | 324 | void KLibLoader::cleanUp() |
329 | { | 325 | { |
330 | if ( !s_self ) | 326 | if ( !s_self ) |
331 | return; | 327 | return; |
332 | 328 | ||
333 | delete s_self; | 329 | delete s_self; |
334 | s_self = 0; | 330 | s_self = 0; |
335 | } | 331 | } |
336 | 332 | ||
337 | KLibLoader::KLibLoader( QObject* parent, const char* name ) | 333 | KLibLoader::KLibLoader( QObject* parent, const char* name ) |
338 | : QObject( parent, name ) | 334 | : QObject( parent, name ) |
339 | { | 335 | { |
340 | s_self = this; | 336 | s_self = this; |
341 | d = new KLibLoaderPrivate; | 337 | d = new KLibLoaderPrivate; |
342 | //US lt_dlinit(); | 338 | //US lt_dlinit(); |
343 | d->unload_mode = KLibLoaderPrivate::UNKNOWN; | 339 | d->unload_mode = KLibLoaderPrivate::UNKNOWN; |
344 | if (getenv("KDE_NOUNLOAD") != 0) | 340 | if (getenv("KDE_NOUNLOAD") != 0) |
345 | d->unload_mode = KLibLoaderPrivate::DONT_UNLOAD; | 341 | d->unload_mode = KLibLoaderPrivate::DONT_UNLOAD; |
346 | else if (getenv("KDE_DOUNLOAD") != 0) | 342 | else if (getenv("KDE_DOUNLOAD") != 0) |
347 | d->unload_mode = KLibLoaderPrivate::UNLOAD; | 343 | d->unload_mode = KLibLoaderPrivate::UNLOAD; |
348 | d->loaded_stack.setAutoDelete( true ); | 344 | d->loaded_stack.setAutoDelete( true ); |
349 | } | 345 | } |
350 | 346 | ||
351 | KLibLoader::~KLibLoader() | 347 | KLibLoader::~KLibLoader() |
352 | { | 348 | { |
353 | // kdDebug(150) << "Deleting KLibLoader " << this << " " << name() << endl; | 349 | // kdDebug(150) << "Deleting KLibLoader " << this << " " << name() << endl; |
354 | 350 | ||
355 | QAsciiDictIterator<KLibWrapPrivate> it( m_libs ); | 351 | QAsciiDictIterator<KLibWrapPrivate> it( m_libs ); |
356 | for (; it.current(); ++it ) | 352 | for (; it.current(); ++it ) |
357 | { | 353 | { |
358 | kdDebug(150) << "The KLibLoader contains the library " << it.current()->name | 354 | kdDebug(150) << "The KLibLoader contains the library " << it.current()->name |
359 | << " (" << it.current()->lib << ")" << endl; | 355 | << " (" << it.current()->lib << ")" << endl; |
360 | d->pending_close.append(it.current()); | 356 | d->pending_close.append(it.current()); |
361 | } | 357 | } |
362 | 358 | ||
363 | close_pending(0); | 359 | close_pending(0); |
364 | 360 | ||
365 | delete d; | 361 | delete d; |
366 | } | 362 | } |
367 | 363 | ||
368 | //static | 364 | //static |
369 | QString KLibLoader::findLibrary( const char * name/*US , const KInstance * instance*/ ) | 365 | QString KLibLoader::findLibrary( const char * name/*US , const KInstance * instance*/ ) |
370 | { | 366 | { |
371 | QCString libname( name ); | 367 | QCString libname( name ); |
372 | 368 | ||
373 | // only append ".la" if there is no extension | 369 | // only append ".la" if there is no extension |
374 | // this allows to load non-libtool libraries as well | 370 | // this allows to load non-libtool libraries as well |
375 | // (mhk, 20000228) | 371 | // (mhk, 20000228) |
376 | int pos = libname.findRev('/'); | 372 | int pos = libname.findRev('/'); |
377 | if (pos < 0) | 373 | if (pos < 0) |
378 | pos = 0; | 374 | pos = 0; |
379 | /*US | 375 | /*US |
380 | if (libname.find('.', pos) < 0) { | 376 | if (libname.find('.', pos) < 0) { |
381 | libname += ".la"; | 377 | libname += ".la"; |
382 | } | 378 | } |
383 | */ | 379 | */ |
384 | //US in the microedition we work only with shared libraries. | 380 | //US in the microedition we work only with shared libraries. |
385 | if (libname.find('.', pos) < 0) { | 381 | if (libname.find('.', pos) < 0) { |
386 | libname += ".so"; | 382 | libname += ".so"; |
387 | } | 383 | } |
388 | 384 | ||
389 | // only look up the file if it is not an absolute filename | 385 | // only look up the file if it is not an absolute filename |
390 | // (mhk, 20000228) | 386 | // (mhk, 20000228) |
391 | QString libfile; | 387 | QString libfile; |
392 | if (libname[0] == '/') | 388 | if (libname[0] == '/') |
393 | libfile = libname; | 389 | libfile = libname; |
394 | else | 390 | else |
395 | { | 391 | { |
396 | //US at this point the libname must exist as real filesname. No expansions will be made later | 392 | //US at this point the libname must exist as real filesname. No expansions will be made later |
397 | // in findResources. Because of that we prepend the lib prefix here to the name | 393 | // in findResources. Because of that we prepend the lib prefix here to the name |
398 | //US I add also the "lib" prefix. I do not how could this could have worked before without it? | 394 | //US I add also the "lib" prefix. I do not how could this could have worked before without it? |
399 | libname.insert(pos, "lib"); | 395 | libname.insert(pos, "lib"); |
400 | 396 | ||
401 | 397 | ||
402 | //US libfile = instance->dirs()->findResource( "module", libname ); | 398 | //US libfile = instance->dirs()->findResource( "module", libname ); |
403 | libfile = KGlobal::dirs()->findResource( "module", libname ); | 399 | libfile = KGlobal::dirs()->findResource( "module", libname ); |
404 | if ( libfile.isEmpty() ) | 400 | if ( libfile.isEmpty() ) |
405 | { | 401 | { |
406 | //US libfile = instance->dirs()->findResource( "lib", libname ); | 402 | //US libfile = instance->dirs()->findResource( "lib", libname ); |
407 | libfile = KGlobal::dirs()->findResource( "lib", libname ); | 403 | libfile = KGlobal::dirs()->findResource( "lib", libname ); |
408 | #ifndef NDEBUG | 404 | #ifndef NDEBUG |
409 | if ( !libfile.isEmpty() && libname.left(3) == "lib" ) // don't warn for kdeinit modules | 405 | if ( !libfile.isEmpty() && libname.left(3) == "lib" ) // don't warn for kdeinit modules |
410 | kdDebug(150) << "library " << libname << " not found under 'module' but under 'lib'" << endl; | 406 | kdDebug(150) << "library " << libname << " not found under 'module' but under 'lib'" << endl; |
411 | #endif | 407 | #endif |
412 | } | 408 | } |
413 | if ( libfile.isEmpty() ) | 409 | if ( libfile.isEmpty() ) |
414 | { | 410 | { |
415 | #ifndef NDEBUG | 411 | #ifndef NDEBUG |
416 | kdDebug(150) << "library=" << libname << ": No file names " << libname.data() << " found in paths." << endl; | 412 | kdDebug(150) << "library=" << libname << ": No file names " << libname.data() << " found in paths." << endl; |
417 | self()->d->errorMessage = i18n("Library files for \"%1\" not found in paths").arg(libname); | 413 | self()->d->errorMessage = i18n("Library files for \"%1\" not found in paths").arg(libname); |
418 | 414 | ||
419 | qDebug("KLibLoader::library could not find library: %s", libname.data()); | 415 | qDebug("KLibLoader::library could not find library: %s", libname.data()); |
420 | #endif | 416 | #endif |
421 | 417 | ||
422 | } | 418 | } |
423 | else | 419 | else |
424 | self()->d->errorMessage = QString::null; | 420 | self()->d->errorMessage = QString::null; |
425 | } | 421 | } |
426 | return libfile; | 422 | return libfile; |
427 | } | 423 | } |
428 | 424 | ||
429 | 425 | ||
430 | KLibrary* KLibLoader::globalLibrary( const char *name ) | 426 | KLibrary* KLibLoader::globalLibrary( const char *name ) |
431 | { | 427 | { |
432 | KLibrary *tmp; | 428 | KLibrary *tmp; |
433 | /*US | 429 | /*US |
434 | int olt_dlopen_flag = lt_dlopen_flag; | 430 | int olt_dlopen_flag = lt_dlopen_flag; |
435 | 431 | ||
436 | lt_dlopen_flag |= LT_GLOBAL; | 432 | lt_dlopen_flag |= LT_GLOBAL; |
437 | kdDebug(150) << "Loading the next library global with flag " | 433 | kdDebug(150) << "Loading the next library global with flag " |
438 | << lt_dlopen_flag | 434 | << lt_dlopen_flag |
439 | << "." << endl; | 435 | << "." << endl; |
440 | */ | 436 | */ |
441 | tmp = library(name); | 437 | tmp = library(name); |
442 | /*US | 438 | /*US |
443 | lt_dlopen_flag = olt_dlopen_flag; | 439 | lt_dlopen_flag = olt_dlopen_flag; |
444 | */ | 440 | */ |
445 | return tmp; | 441 | return tmp; |
446 | } | 442 | } |
447 | 443 | ||
448 | 444 | ||
449 | KLibrary* KLibLoader::library( const char *name ) | 445 | KLibrary* KLibLoader::library( const char *name ) |
450 | { | 446 | { |
451 | if (!name) | 447 | if (!name) |
452 | return 0; | 448 | return 0; |
453 | 449 | ||
454 | KLibWrapPrivate* wrap = m_libs[name]; | 450 | KLibWrapPrivate* wrap = m_libs[name]; |
455 | if (wrap) { | 451 | if (wrap) { |
456 | /* Nothing to do to load the library. */ | 452 | /* Nothing to do to load the library. */ |
457 | wrap->ref_count++; | 453 | wrap->ref_count++; |
458 | return wrap->lib; | 454 | return wrap->lib; |
459 | } | 455 | } |
460 | 456 | ||
461 | /* Test if this library was loaded at some time, but got | 457 | /* Test if this library was loaded at some time, but got |
462 | unloaded meanwhile, whithout being dlclose()'ed. */ | 458 | unloaded meanwhile, whithout being dlclose()'ed. */ |
463 | QPtrListIterator<KLibWrapPrivate> it(d->loaded_stack); | 459 | QPtrListIterator<KLibWrapPrivate> it(d->loaded_stack); |
464 | for (; it.current(); ++it) { | 460 | for (; it.current(); ++it) { |
465 | if (it.current()->name == name) | 461 | if (it.current()->name == name) |
466 | wrap = it.current(); | 462 | wrap = it.current(); |
467 | } | 463 | } |
468 | 464 | ||
469 | if (wrap) { | 465 | if (wrap) { |
470 | d->pending_close.removeRef(wrap); | 466 | d->pending_close.removeRef(wrap); |
471 | if (!wrap->lib) { | 467 | if (!wrap->lib) { |
472 | /* This lib only was in loaded_stack, but not in m_libs. */ | 468 | /* This lib only was in loaded_stack, but not in m_libs. */ |
473 | wrap->lib = new KLibrary( name, wrap->filename, wrap->handle ); | 469 | wrap->lib = new KLibrary( name, wrap->filename, wrap->handle ); |
474 | } | 470 | } |
475 | wrap->ref_count++; | 471 | wrap->ref_count++; |
476 | } else { | 472 | } else { |
477 | QString libfile = findLibrary( name ); | 473 | QString libfile = findLibrary( name ); |
478 | if ( libfile.isEmpty() ) | 474 | if ( libfile.isEmpty() ) |
479 | return 0; | 475 | return 0; |
480 | 476 | #ifdef DESKTOP_VERSION | |
477 | QLibrary *qlib = new QLibrary( libfile.latin1() ); | ||
478 | #else | ||
481 | QLibrary *qlib = new QLibrary( libfile.latin1(), QLibrary::Immediately ); | 479 | QLibrary *qlib = new QLibrary( libfile.latin1(), QLibrary::Immediately ); |
480 | #endif | ||
482 | 481 | ||
483 | //US lt_dlhandle handle = lt_dlopen( libfile.latin1() ); | 482 | //US lt_dlhandle handle = lt_dlopen( libfile.latin1() ); |
484 | //US if ( !handle ) | 483 | //US if ( !handle ) |
485 | if ( !qlib ) | 484 | if ( !qlib ) |
486 | { | 485 | { |
487 | //US const char* errmsg = lt_dlerror(); | 486 | //US const char* errmsg = lt_dlerror(); |
488 | char* errmsg; | 487 | char* errmsg; |
489 | sprintf(errmsg, "KLibLoader::library could not load library: %s", libfile.latin1()); | 488 | sprintf(errmsg, "KLibLoader::library could not load library: %s", libfile.latin1()); |
490 | qDebug(errmsg); | 489 | qDebug(errmsg); |
491 | 490 | ||
492 | if(errmsg) | 491 | if(errmsg) |
493 | d->errorMessage = QString::fromLatin1(errmsg); | 492 | d->errorMessage = QString::fromLatin1(errmsg); |
494 | else | 493 | else |
495 | d->errorMessage = QString::null; | 494 | d->errorMessage = QString::null; |
496 | kdWarning(150) << "library=" << name << ": file=" << libfile << ": " << d->errorMessage << endl; | 495 | kdWarning(150) << "library=" << name << ": file=" << libfile << ": " << d->errorMessage << endl; |
497 | return 0; | 496 | return 0; |
498 | } | 497 | } |
499 | else | 498 | else |
500 | d->errorMessage = QString::null; | 499 | d->errorMessage = QString::null; |
501 | 500 | ||
502 | KLibrary *lib = new KLibrary( name, libfile, qlib ); | 501 | KLibrary *lib = new KLibrary( name, libfile, qlib ); |
503 | wrap = new KLibWrapPrivate(lib, qlib); | 502 | wrap = new KLibWrapPrivate(lib, qlib); |
504 | d->loaded_stack.prepend(wrap); | 503 | d->loaded_stack.prepend(wrap); |
505 | } | 504 | } |
506 | m_libs.insert( name, wrap ); | 505 | m_libs.insert( name, wrap ); |
507 | 506 | ||
508 | connect( wrap->lib, SIGNAL( destroyed() ), | 507 | connect( wrap->lib, SIGNAL( destroyed() ), |
509 | this, SLOT( slotLibraryDestroyed() ) ); | 508 | this, SLOT( slotLibraryDestroyed() ) ); |
510 | 509 | ||
511 | return wrap->lib; | 510 | return wrap->lib; |
512 | } | 511 | } |
513 | 512 | ||
514 | QString KLibLoader::lastErrorMessage() const | 513 | QString KLibLoader::lastErrorMessage() const |
515 | { | 514 | { |
516 | return d->errorMessage; | 515 | return d->errorMessage; |
517 | } | 516 | } |
518 | 517 | ||
519 | void KLibLoader::unloadLibrary( const char *libname ) | 518 | void KLibLoader::unloadLibrary( const char *libname ) |
520 | { | 519 | { |
521 | KLibWrapPrivate *wrap = m_libs[ libname ]; | 520 | KLibWrapPrivate *wrap = m_libs[ libname ]; |
522 | if (!wrap) | 521 | if (!wrap) |
523 | return; | 522 | return; |
524 | if (--wrap->ref_count) | 523 | if (--wrap->ref_count) |
525 | return; | 524 | return; |
526 | 525 | ||
527 | // kdDebug(150) << "closing library " << libname << endl; | 526 | // kdDebug(150) << "closing library " << libname << endl; |
528 | 527 | ||
529 | m_libs.remove( libname ); | 528 | m_libs.remove( libname ); |
530 | 529 | ||
531 | disconnect( wrap->lib, SIGNAL( destroyed() ), | 530 | disconnect( wrap->lib, SIGNAL( destroyed() ), |
532 | this, SLOT( slotLibraryDestroyed() ) ); | 531 | this, SLOT( slotLibraryDestroyed() ) ); |
533 | close_pending( wrap ); | 532 | close_pending( wrap ); |
534 | } | 533 | } |
535 | 534 | ||
536 | KLibFactory* KLibLoader::factory( const char* name ) | 535 | KLibFactory* KLibLoader::factory( const char* name ) |
537 | { | 536 | { |
538 | KLibrary* lib = library( name ); | 537 | KLibrary* lib = library( name ); |
539 | if ( !lib ) | 538 | if ( !lib ) |
540 | return 0; | 539 | return 0; |
541 | 540 | ||
542 | return lib->factory(); | 541 | return lib->factory(); |
543 | } | 542 | } |
544 | 543 | ||
545 | void KLibLoader::slotLibraryDestroyed() | 544 | void KLibLoader::slotLibraryDestroyed() |
546 | { | 545 | { |
547 | const KLibrary *lib = static_cast<const KLibrary *>( sender() ); | 546 | const KLibrary *lib = static_cast<const KLibrary *>( sender() ); |
548 | 547 | ||
549 | QAsciiDictIterator<KLibWrapPrivate> it( m_libs ); | 548 | QAsciiDictIterator<KLibWrapPrivate> it( m_libs ); |
550 | for (; it.current(); ++it ) | 549 | for (; it.current(); ++it ) |
551 | if ( it.current()->lib == lib ) | 550 | if ( it.current()->lib == lib ) |
552 | { | 551 | { |
553 | KLibWrapPrivate *wrap = it.current(); | 552 | KLibWrapPrivate *wrap = it.current(); |
554 | wrap->lib = 0; /* the KLibrary object is already away */ | 553 | wrap->lib = 0; /* the KLibrary object is already away */ |
555 | m_libs.remove( it.currentKey() ); | 554 | m_libs.remove( it.currentKey() ); |
556 | close_pending( wrap ); | 555 | close_pending( wrap ); |
557 | return; | 556 | return; |
558 | } | 557 | } |
559 | } | 558 | } |
560 | 559 | ||
561 | void KLibLoader::close_pending(KLibWrapPrivate *wrap) | 560 | void KLibLoader::close_pending(KLibWrapPrivate *wrap) |
562 | { | 561 | { |
563 | if (wrap && !d->pending_close.containsRef( wrap )) | 562 | if (wrap && !d->pending_close.containsRef( wrap )) |
564 | d->pending_close.append( wrap ); | 563 | d->pending_close.append( wrap ); |
565 | 564 | ||
566 | /* First delete all KLibrary objects in pending_close, but _don't_ unload | 565 | /* First delete all KLibrary objects in pending_close, but _don't_ unload |
567 | the DSO behind it. */ | 566 | the DSO behind it. */ |
568 | QPtrListIterator<KLibWrapPrivate> it(d->pending_close); | 567 | QPtrListIterator<KLibWrapPrivate> it(d->pending_close); |
569 | for (; it.current(); ++it) { | 568 | for (; it.current(); ++it) { |
570 | wrap = it.current(); | 569 | wrap = it.current(); |
571 | if (wrap->lib) { | 570 | if (wrap->lib) { |
572 | disconnect( wrap->lib, SIGNAL( destroyed() ), | 571 | disconnect( wrap->lib, SIGNAL( destroyed() ), |
573 | this, SLOT( slotLibraryDestroyed() ) ); | 572 | this, SLOT( slotLibraryDestroyed() ) ); |
574 | delete wrap->lib; | 573 | delete wrap->lib; |
575 | wrap->lib = 0; | 574 | wrap->lib = 0; |
576 | } | 575 | } |
577 | } | 576 | } |
578 | 577 | ||
579 | if (d->unload_mode == KLibLoaderPrivate::DONT_UNLOAD) return; | 578 | if (d->unload_mode == KLibLoaderPrivate::DONT_UNLOAD) return; |
580 | 579 | ||
581 | bool deleted_one = false; | 580 | bool deleted_one = false; |
582 | while ((wrap = d->loaded_stack.first())) { | 581 | while ((wrap = d->loaded_stack.first())) { |
583 | /* Let's first see, if we want to try to unload this lib. | 582 | /* Let's first see, if we want to try to unload this lib. |
584 | If the env. var KDE_DOUNLOAD is set, we try to unload every lib. | 583 | If the env. var KDE_DOUNLOAD is set, we try to unload every lib. |
585 | If not, we look at the lib itself, and unload it only, if it exports | 584 | If not, we look at the lib itself, and unload it only, if it exports |
586 | the symbol __kde_do_unload. */ | 585 | the symbol __kde_do_unload. */ |
587 | if (d->unload_mode != KLibLoaderPrivate::UNLOAD | 586 | if (d->unload_mode != KLibLoaderPrivate::UNLOAD |
588 | && wrap->unload_mode != KLibWrapPrivate::UNLOAD) | 587 | && wrap->unload_mode != KLibWrapPrivate::UNLOAD) |
589 | break; | 588 | break; |
590 | 589 | ||
591 | /* Now ensure, that the libs are only unloaded in the reverse direction | 590 | /* Now ensure, that the libs are only unloaded in the reverse direction |
592 | they were loaded. */ | 591 | they were loaded. */ |
593 | if (!d->pending_close.containsRef( wrap )) { | 592 | if (!d->pending_close.containsRef( wrap )) { |
594 | if (!deleted_one) | 593 | if (!deleted_one) |
595 | /* Only diagnose, if we really haven't deleted anything. */ | 594 | /* Only diagnose, if we really haven't deleted anything. */ |
596 | // kdDebug(150) << "try to dlclose " << wrap->name << ": not yet" << endl; | 595 | // kdDebug(150) << "try to dlclose " << wrap->name << ": not yet" << endl; |
597 | break; | 596 | break; |
598 | } | 597 | } |
599 | 598 | ||
600 | // kdDebug(150) << "try to dlclose " << wrap->name << ": yes, done." << endl; | 599 | // kdDebug(150) << "try to dlclose " << wrap->name << ": yes, done." << endl; |
601 | 600 | ||
601 | #if 0 | ||
602 | #ifndef Q_WS_QWS | 602 | #ifndef Q_WS_QWS |
603 | if ( !deleted_one ) { | 603 | if ( !deleted_one ) { |
604 | /* Only do the hack once in this loop. | 604 | /* Only do the hack once in this loop. |
605 | WABA: *HACK* | 605 | WABA: *HACK* |
606 | We need to make sure to clear the clipboard before unloading a DSO | 606 | We need to make sure to clear the clipboard before unloading a DSO |
607 | because the DSO could have defined an object derived from QMimeSource | 607 | because the DSO could have defined an object derived from QMimeSource |
608 | and placed that on the clipboard. */ | 608 | and placed that on the clipboard. */ |
609 | /*kapp->clipboard()->clear();*/ | 609 | /*kapp->clipboard()->clear();*/ |
610 | 610 | ||
611 | /* Well.. let's do something more subtle... convert the clipboard context | 611 | /* Well.. let's do something more subtle... convert the clipboard context |
612 | to text. That should be safe as it only uses objects defined by Qt. */ | 612 | to text. That should be safe as it only uses objects defined by Qt. */ |
613 | 613 | ||
614 | QWidgetList *widgetlist = QApplication::topLevelWidgets(); | 614 | QWidgetList *widgetlist = QApplication::topLevelWidgets(); |
615 | QWidget *co = widgetlist->first(); | 615 | QWidget *co = widgetlist->first(); |
616 | while (co) { | 616 | while (co) { |
617 | if (qstrcmp(co->name(), "internal clipboard owner") == 0) { | 617 | if (qstrcmp(co->name(), "internal clipboard owner") == 0) { |
618 | if (XGetSelectionOwner(co->x11Display(), XA_PRIMARY) == co->winId()) | 618 | if (XGetSelectionOwner(co->x11Display(), XA_PRIMARY) == co->winId()) |
619 | kapp->clipboard()->setText(kapp->clipboard()->text()); | 619 | kapp->clipboard()->setText(kapp->clipboard()->text()); |
620 | 620 | ||
621 | break; | 621 | break; |
622 | } | 622 | } |
623 | co = widgetlist->next(); | 623 | co = widgetlist->next(); |
624 | } | 624 | } |
625 | delete widgetlist; | 625 | delete widgetlist; |
626 | } | 626 | } |
627 | #else | 627 | #else |
628 | // FIXME(E): Implement in Qt Embedded | 628 | // FIXME(E): Implement in Qt Embedded |
629 | #endif | 629 | #endif |
630 | 630 | ||
631 | #endif // 0 | ||
631 | deleted_one = true; | 632 | deleted_one = true; |
632 | //US lt_dlclose(wrap->handle); | 633 | //US lt_dlclose(wrap->handle); |
633 | wrap->handle->unload(); | 634 | wrap->handle->unload(); |
634 | 635 | ||
635 | d->pending_close.removeRef(wrap); | 636 | d->pending_close.removeRef(wrap); |
636 | /* loaded_stack is AutoDelete, so wrap is freed */ | 637 | /* loaded_stack is AutoDelete, so wrap is freed */ |
637 | d->loaded_stack.remove(); | 638 | d->loaded_stack.remove(); |
638 | } | 639 | } |
639 | } | 640 | } |
640 | 641 | ||
641 | void KLibLoader::virtual_hook( int, void* ) | 642 | void KLibLoader::virtual_hook( int, void* ) |
642 | { /*BASE::virtual_hook( id, data );*/ } | 643 | { /*BASE::virtual_hook( id, data );*/ } |
643 | 644 | ||
644 | void KLibFactory::virtual_hook( int, void* ) | 645 | void KLibFactory::virtual_hook( int, void* ) |
645 | { /*BASE::virtual_hook( id, data );*/ } | 646 | { /*BASE::virtual_hook( id, data );*/ } |
646 | 647 | ||
647 | //US #include "klibloader.moc" | 648 | //US #include "klibloader.moc" |
diff --git a/microkde/kdecore/kstandarddirs.cpp b/microkde/kdecore/kstandarddirs.cpp index 1a1e027..7f51d78 100644 --- a/microkde/kdecore/kstandarddirs.cpp +++ b/microkde/kdecore/kstandarddirs.cpp | |||
@@ -1,1625 +1,1624 @@ | |||
1 | /* This file is part of the KDE libraries | 1 | /* This file is part of the KDE libraries |
2 | Copyright (C) 1999 Sirtaj Singh Kang <taj@kde.org> | 2 | Copyright (C) 1999 Sirtaj Singh Kang <taj@kde.org> |
3 | Copyright (C) 1999 Stephan Kulow <coolo@kde.org> | 3 | Copyright (C) 1999 Stephan Kulow <coolo@kde.org> |
4 | Copyright (C) 1999 Waldo Bastian <bastian@kde.org> | 4 | Copyright (C) 1999 Waldo Bastian <bastian@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License version 2 as published by the Free Software Foundation. | 8 | License version 2 as published by the Free Software Foundation. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | /* | 21 | /* |
22 | * Author: Stephan Kulow <coolo@kde.org> and Sirtaj Singh Kang <taj@kde.org> | 22 | * Author: Stephan Kulow <coolo@kde.org> and Sirtaj Singh Kang <taj@kde.org> |
23 | * Version:$Id$ | 23 | * Version:$Id$ |
24 | * Generated:Thu Mar 5 16:05:28 EST 1998 | 24 | * Generated:Thu Mar 5 16:05:28 EST 1998 |
25 | */ | 25 | */ |
26 | 26 | ||
27 | //US #include "config.h" | 27 | //US #include "config.h" |
28 | 28 | ||
29 | #include <stdlib.h> | 29 | #include <stdlib.h> |
30 | #include <assert.h> | 30 | #include <assert.h> |
31 | //US#include <errno.h> | 31 | //US#include <errno.h> |
32 | //US #ifdef HAVE_SYS_STAT_H | 32 | //US #ifdef HAVE_SYS_STAT_H |
33 | //US #include <sys/stat.h> | 33 | //US #include <sys/stat.h> |
34 | //US #endif | 34 | //US #endif |
35 | //US#include <sys/types.h> | 35 | //US#include <sys/types.h> |
36 | //US#include <dirent.h> | 36 | //US#include <dirent.h> |
37 | //US#include <pwd.h> | 37 | //US#include <pwd.h> |
38 | 38 | ||
39 | #include <qregexp.h> | 39 | #include <qregexp.h> |
40 | #include <qasciidict.h> | 40 | #include <qasciidict.h> |
41 | #include <qdict.h> | 41 | #include <qdict.h> |
42 | #include <qdir.h> | 42 | #include <qdir.h> |
43 | #include <qfileinfo.h> | 43 | #include <qfileinfo.h> |
44 | #include <qstring.h> | 44 | #include <qstring.h> |
45 | #include <qstringlist.h> | 45 | #include <qstringlist.h> |
46 | #include <qpe/qpeapplication.h> | ||
47 | 46 | ||
48 | #include "kstandarddirs.h" | 47 | #include "kstandarddirs.h" |
49 | #include "kconfig.h" | 48 | #include "kconfig.h" |
50 | #include "kdebug.h" | 49 | #include "kdebug.h" |
51 | //US #include "kinstance.h" | 50 | //US #include "kinstance.h" |
52 | #include "kshell.h" | 51 | #include "kshell.h" |
53 | //US#include <sys/param.h> | 52 | //US#include <sys/param.h> |
54 | //US#include <unistd.h> | 53 | //US#include <unistd.h> |
55 | 54 | ||
56 | //US | 55 | //US |
57 | QString KStandardDirs::mAppDir = QString::null; | 56 | QString KStandardDirs::mAppDir = QString::null; |
58 | 57 | ||
59 | 58 | ||
60 | template class QDict<QStringList>; | 59 | template class QDict<QStringList>; |
61 | 60 | ||
62 | #if 0 | 61 | #if 0 |
63 | #include <qtextedit.h> | 62 | #include <qtextedit.h> |
64 | void ddd( QString op ) | 63 | void ddd( QString op ) |
65 | { | 64 | { |
66 | static QTextEdit * dot = 0; | 65 | static QTextEdit * dot = 0; |
67 | if ( ! dot ) | 66 | if ( ! dot ) |
68 | dot = new QTextEdit(); | 67 | dot = new QTextEdit(); |
69 | 68 | ||
70 | dot->show(); | 69 | dot->show(); |
71 | 70 | ||
72 | dot->append( op ); | 71 | dot->append( op ); |
73 | 72 | ||
74 | } | 73 | } |
75 | #endif | 74 | #endif |
76 | class KStandardDirs::KStandardDirsPrivate | 75 | class KStandardDirs::KStandardDirsPrivate |
77 | { | 76 | { |
78 | public: | 77 | public: |
79 | KStandardDirsPrivate() | 78 | KStandardDirsPrivate() |
80 | : restrictionsActive(false), | 79 | : restrictionsActive(false), |
81 | dataRestrictionActive(false) | 80 | dataRestrictionActive(false) |
82 | { } | 81 | { } |
83 | 82 | ||
84 | bool restrictionsActive; | 83 | bool restrictionsActive; |
85 | bool dataRestrictionActive; | 84 | bool dataRestrictionActive; |
86 | QAsciiDict<bool> restrictions; | 85 | QAsciiDict<bool> restrictions; |
87 | QStringList xdgdata_prefixes; | 86 | QStringList xdgdata_prefixes; |
88 | QStringList xdgconf_prefixes; | 87 | QStringList xdgconf_prefixes; |
89 | }; | 88 | }; |
90 | 89 | ||
91 | static const char* const types[] = {"html", "icon", "apps", "sound", | 90 | static const char* const types[] = {"html", "icon", "apps", "sound", |
92 | "data", "locale", "services", "mime", | 91 | "data", "locale", "services", "mime", |
93 | "servicetypes", "config", "exe", | 92 | "servicetypes", "config", "exe", |
94 | "wallpaper", "lib", "pixmap", "templates", | 93 | "wallpaper", "lib", "pixmap", "templates", |
95 | "module", "qtplugins", | 94 | "module", "qtplugins", |
96 | "xdgdata-apps", "xdgdata-dirs", "xdgconf-menu", 0 }; | 95 | "xdgdata-apps", "xdgdata-dirs", "xdgconf-menu", 0 }; |
97 | 96 | ||
98 | static int tokenize( QStringList& token, const QString& str, | 97 | static int tokenize( QStringList& token, const QString& str, |
99 | const QString& delim ); | 98 | const QString& delim ); |
100 | 99 | ||
101 | KStandardDirs::KStandardDirs( ) : addedCustoms(false) | 100 | KStandardDirs::KStandardDirs( ) : addedCustoms(false) |
102 | { | 101 | { |
103 | d = new KStandardDirsPrivate; | 102 | d = new KStandardDirsPrivate; |
104 | dircache.setAutoDelete(true); | 103 | dircache.setAutoDelete(true); |
105 | relatives.setAutoDelete(true); | 104 | relatives.setAutoDelete(true); |
106 | absolutes.setAutoDelete(true); | 105 | absolutes.setAutoDelete(true); |
107 | savelocations.setAutoDelete(true); | 106 | savelocations.setAutoDelete(true); |
108 | addKDEDefaults(); | 107 | addKDEDefaults(); |
109 | } | 108 | } |
110 | 109 | ||
111 | KStandardDirs::~KStandardDirs() | 110 | KStandardDirs::~KStandardDirs() |
112 | { | 111 | { |
113 | delete d; | 112 | delete d; |
114 | } | 113 | } |
115 | 114 | ||
116 | bool KStandardDirs::isRestrictedResource(const char *type, const QString& relPath) const | 115 | bool KStandardDirs::isRestrictedResource(const char *type, const QString& relPath) const |
117 | { | 116 | { |
118 | if (!d || !d->restrictionsActive) | 117 | if (!d || !d->restrictionsActive) |
119 | return false; | 118 | return false; |
120 | 119 | ||
121 | if (d->restrictions[type]) | 120 | if (d->restrictions[type]) |
122 | return true; | 121 | return true; |
123 | 122 | ||
124 | if (strcmp(type, "data")==0) | 123 | if (strcmp(type, "data")==0) |
125 | { | 124 | { |
126 | applyDataRestrictions(relPath); | 125 | applyDataRestrictions(relPath); |
127 | if (d->dataRestrictionActive) | 126 | if (d->dataRestrictionActive) |
128 | { | 127 | { |
129 | d->dataRestrictionActive = false; | 128 | d->dataRestrictionActive = false; |
130 | return true; | 129 | return true; |
131 | } | 130 | } |
132 | } | 131 | } |
133 | return false; | 132 | return false; |
134 | } | 133 | } |
135 | 134 | ||
136 | void KStandardDirs::applyDataRestrictions(const QString &relPath) const | 135 | void KStandardDirs::applyDataRestrictions(const QString &relPath) const |
137 | { | 136 | { |
138 | QString key; | 137 | QString key; |
139 | int i = relPath.find('/'); | 138 | int i = relPath.find('/'); |
140 | if (i != -1) | 139 | if (i != -1) |
141 | key = "data_"+relPath.left(i); | 140 | key = "data_"+relPath.left(i); |
142 | else | 141 | else |
143 | key = "data_"+relPath; | 142 | key = "data_"+relPath; |
144 | 143 | ||
145 | if (d && d->restrictions[key.latin1()]) | 144 | if (d && d->restrictions[key.latin1()]) |
146 | d->dataRestrictionActive = true; | 145 | d->dataRestrictionActive = true; |
147 | } | 146 | } |
148 | 147 | ||
149 | 148 | ||
150 | QStringList KStandardDirs::allTypes() const | 149 | QStringList KStandardDirs::allTypes() const |
151 | { | 150 | { |
152 | QStringList list; | 151 | QStringList list; |
153 | for (int i = 0; types[i] != 0; ++i) | 152 | for (int i = 0; types[i] != 0; ++i) |
154 | list.append(QString::fromLatin1(types[i])); | 153 | list.append(QString::fromLatin1(types[i])); |
155 | return list; | 154 | return list; |
156 | } | 155 | } |
157 | 156 | ||
158 | void KStandardDirs::addPrefix( const QString& _dir ) | 157 | void KStandardDirs::addPrefix( const QString& _dir ) |
159 | { | 158 | { |
160 | if (_dir.isNull()) | 159 | if (_dir.isNull()) |
161 | return; | 160 | return; |
162 | 161 | ||
163 | QString dir = _dir; | 162 | QString dir = _dir; |
164 | if (dir.at(dir.length() - 1) != '/') | 163 | if (dir.at(dir.length() - 1) != '/') |
165 | dir += '/'; | 164 | dir += '/'; |
166 | 165 | ||
167 | if (!prefixes.contains(dir)) { | 166 | if (!prefixes.contains(dir)) { |
168 | prefixes.append(dir); | 167 | prefixes.append(dir); |
169 | dircache.clear(); | 168 | dircache.clear(); |
170 | } | 169 | } |
171 | } | 170 | } |
172 | 171 | ||
173 | void KStandardDirs::addXdgConfigPrefix( const QString& _dir ) | 172 | void KStandardDirs::addXdgConfigPrefix( const QString& _dir ) |
174 | { | 173 | { |
175 | if (_dir.isNull()) | 174 | if (_dir.isNull()) |
176 | return; | 175 | return; |
177 | 176 | ||
178 | QString dir = _dir; | 177 | QString dir = _dir; |
179 | if (dir.at(dir.length() - 1) != '/') | 178 | if (dir.at(dir.length() - 1) != '/') |
180 | dir += '/'; | 179 | dir += '/'; |
181 | 180 | ||
182 | if (!d->xdgconf_prefixes.contains(dir)) { | 181 | if (!d->xdgconf_prefixes.contains(dir)) { |
183 | d->xdgconf_prefixes.append(dir); | 182 | d->xdgconf_prefixes.append(dir); |
184 | dircache.clear(); | 183 | dircache.clear(); |
185 | } | 184 | } |
186 | } | 185 | } |
187 | 186 | ||
188 | void KStandardDirs::addXdgDataPrefix( const QString& _dir ) | 187 | void KStandardDirs::addXdgDataPrefix( const QString& _dir ) |
189 | { | 188 | { |
190 | if (_dir.isNull()) | 189 | if (_dir.isNull()) |
191 | return; | 190 | return; |
192 | 191 | ||
193 | QString dir = _dir; | 192 | QString dir = _dir; |
194 | if (dir.at(dir.length() - 1) != '/') | 193 | if (dir.at(dir.length() - 1) != '/') |
195 | dir += '/'; | 194 | dir += '/'; |
196 | 195 | ||
197 | if (!d->xdgdata_prefixes.contains(dir)) { | 196 | if (!d->xdgdata_prefixes.contains(dir)) { |
198 | d->xdgdata_prefixes.append(dir); | 197 | d->xdgdata_prefixes.append(dir); |
199 | dircache.clear(); | 198 | dircache.clear(); |
200 | } | 199 | } |
201 | } | 200 | } |
202 | 201 | ||
203 | 202 | ||
204 | QString KStandardDirs::kfsstnd_prefixes() | 203 | QString KStandardDirs::kfsstnd_prefixes() |
205 | { | 204 | { |
206 | return prefixes.join(":"); | 205 | return prefixes.join(":"); |
207 | } | 206 | } |
208 | 207 | ||
209 | bool KStandardDirs::addResourceType( const char *type, | 208 | bool KStandardDirs::addResourceType( const char *type, |
210 | const QString& relativename ) | 209 | const QString& relativename ) |
211 | { | 210 | { |
212 | if (relativename.isNull()) | 211 | if (relativename.isNull()) |
213 | return false; | 212 | return false; |
214 | 213 | ||
215 | QStringList *rels = relatives.find(type); | 214 | QStringList *rels = relatives.find(type); |
216 | if (!rels) { | 215 | if (!rels) { |
217 | rels = new QStringList(); | 216 | rels = new QStringList(); |
218 | relatives.insert(type, rels); | 217 | relatives.insert(type, rels); |
219 | } | 218 | } |
220 | QString copy = relativename; | 219 | QString copy = relativename; |
221 | if (copy.at(copy.length() - 1) != '/') | 220 | if (copy.at(copy.length() - 1) != '/') |
222 | copy += '/'; | 221 | copy += '/'; |
223 | if (!rels->contains(copy)) { | 222 | if (!rels->contains(copy)) { |
224 | rels->prepend(copy); | 223 | rels->prepend(copy); |
225 | dircache.remove(type); // clean the cache | 224 | dircache.remove(type); // clean the cache |
226 | return true; | 225 | return true; |
227 | } | 226 | } |
228 | return false; | 227 | return false; |
229 | } | 228 | } |
230 | 229 | ||
231 | bool KStandardDirs::addResourceDir( const char *type, | 230 | bool KStandardDirs::addResourceDir( const char *type, |
232 | const QString& absdir) | 231 | const QString& absdir) |
233 | { | 232 | { |
234 | QStringList *paths = absolutes.find(type); | 233 | QStringList *paths = absolutes.find(type); |
235 | if (!paths) { | 234 | if (!paths) { |
236 | paths = new QStringList(); | 235 | paths = new QStringList(); |
237 | absolutes.insert(type, paths); | 236 | absolutes.insert(type, paths); |
238 | } | 237 | } |
239 | QString copy = absdir; | 238 | QString copy = absdir; |
240 | if (copy.at(copy.length() - 1) != '/') | 239 | if (copy.at(copy.length() - 1) != '/') |
241 | copy += '/'; | 240 | copy += '/'; |
242 | 241 | ||
243 | if (!paths->contains(copy)) { | 242 | if (!paths->contains(copy)) { |
244 | paths->append(copy); | 243 | paths->append(copy); |
245 | dircache.remove(type); // clean the cache | 244 | dircache.remove(type); // clean the cache |
246 | return true; | 245 | return true; |
247 | } | 246 | } |
248 | return false; | 247 | return false; |
249 | } | 248 | } |
250 | 249 | ||
251 | QString KStandardDirs::findResource( const char *type, | 250 | QString KStandardDirs::findResource( const char *type, |
252 | const QString& filename ) const | 251 | const QString& filename ) const |
253 | { | 252 | { |
254 | if (filename.at(0) == '/') | 253 | if (filename.at(0) == '/') |
255 | return filename; // absolute dirs are absolute dirs, right? :-/ | 254 | return filename; // absolute dirs are absolute dirs, right? :-/ |
256 | 255 | ||
257 | #if 0 | 256 | #if 0 |
258 | kdDebug() << "Find resource: " << type << endl; | 257 | kdDebug() << "Find resource: " << type << endl; |
259 | for (QStringList::ConstIterator pit = prefixes.begin(); | 258 | for (QStringList::ConstIterator pit = prefixes.begin(); |
260 | pit != prefixes.end(); | 259 | pit != prefixes.end(); |
261 | pit++) | 260 | pit++) |
262 | { | 261 | { |
263 | kdDebug() << "Prefix: " << *pit << endl; | 262 | kdDebug() << "Prefix: " << *pit << endl; |
264 | } | 263 | } |
265 | #endif | 264 | #endif |
266 | 265 | ||
267 | QString dir = findResourceDir(type, filename); | 266 | QString dir = findResourceDir(type, filename); |
268 | if (dir.isNull()) | 267 | if (dir.isNull()) |
269 | return dir; | 268 | return dir; |
270 | else return dir + filename; | 269 | else return dir + filename; |
271 | } | 270 | } |
272 | /*US | 271 | /*US |
273 | static Q_UINT32 updateHash(const QString &file, Q_UINT32 hash) | 272 | static Q_UINT32 updateHash(const QString &file, Q_UINT32 hash) |
274 | { | 273 | { |
275 | QCString cFile = QFile::encodeName(file); | 274 | QCString cFile = QFile::encodeName(file); |
276 | //US struct stat buff; | 275 | //US struct stat buff; |
277 | //US if ((access(cFile, R_OK) == 0) && | 276 | //US if ((access(cFile, R_OK) == 0) && |
278 | //US (stat( cFile, &buff ) == 0) && | 277 | //US (stat( cFile, &buff ) == 0) && |
279 | //US (S_ISREG( buff.st_mode ))) | 278 | //US (S_ISREG( buff.st_mode ))) |
280 | QFileInfo pathfnInfo(cFile); | 279 | QFileInfo pathfnInfo(cFile); |
281 | if (( pathfnInfo.isReadable() == true ) && | 280 | if (( pathfnInfo.isReadable() == true ) && |
282 | ( pathfnInfo.isFile()) ) | 281 | ( pathfnInfo.isFile()) ) |
283 | { | 282 | { |
284 | //US hash = hash + (Q_UINT32) buff.st_ctime; | 283 | //US hash = hash + (Q_UINT32) buff.st_ctime; |
285 | hash = hash + (Q_UINT32) pathfnInfo.lastModified(); | 284 | hash = hash + (Q_UINT32) pathfnInfo.lastModified(); |
286 | } | 285 | } |
287 | return hash; | 286 | return hash; |
288 | } | 287 | } |
289 | */ | 288 | */ |
290 | /*US | 289 | /*US |
291 | Q_UINT32 KStandardDirs::calcResourceHash( const char *type, | 290 | Q_UINT32 KStandardDirs::calcResourceHash( const char *type, |
292 | const QString& filename, bool deep) const | 291 | const QString& filename, bool deep) const |
293 | { | 292 | { |
294 | Q_UINT32 hash = 0; | 293 | Q_UINT32 hash = 0; |
295 | 294 | ||
296 | if (filename.at(0) == '/') | 295 | if (filename.at(0) == '/') |
297 | { | 296 | { |
298 | // absolute dirs are absolute dirs, right? :-/ | 297 | // absolute dirs are absolute dirs, right? :-/ |
299 | return updateHash(filename, hash); | 298 | return updateHash(filename, hash); |
300 | } | 299 | } |
301 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) | 300 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) |
302 | applyDataRestrictions(filename); | 301 | applyDataRestrictions(filename); |
303 | QStringList candidates = resourceDirs(type); | 302 | QStringList candidates = resourceDirs(type); |
304 | QString fullPath; | 303 | QString fullPath; |
305 | 304 | ||
306 | for (QStringList::ConstIterator it = candidates.begin(); | 305 | for (QStringList::ConstIterator it = candidates.begin(); |
307 | it != candidates.end(); it++) | 306 | it != candidates.end(); it++) |
308 | { | 307 | { |
309 | hash = updateHash(*it + filename, hash); | 308 | hash = updateHash(*it + filename, hash); |
310 | if (!deep && hash) | 309 | if (!deep && hash) |
311 | return hash; | 310 | return hash; |
312 | } | 311 | } |
313 | return hash; | 312 | return hash; |
314 | } | 313 | } |
315 | */ | 314 | */ |
316 | 315 | ||
317 | QStringList KStandardDirs::findDirs( const char *type, | 316 | QStringList KStandardDirs::findDirs( const char *type, |
318 | const QString& reldir ) const | 317 | const QString& reldir ) const |
319 | { | 318 | { |
320 | QStringList list; | 319 | QStringList list; |
321 | 320 | ||
322 | checkConfig(); | 321 | checkConfig(); |
323 | 322 | ||
324 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) | 323 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) |
325 | applyDataRestrictions(reldir); | 324 | applyDataRestrictions(reldir); |
326 | QStringList candidates = resourceDirs(type); | 325 | QStringList candidates = resourceDirs(type); |
327 | QDir testdir; | 326 | QDir testdir; |
328 | 327 | ||
329 | for (QStringList::ConstIterator it = candidates.begin(); | 328 | for (QStringList::ConstIterator it = candidates.begin(); |
330 | it != candidates.end(); it++) { | 329 | it != candidates.end(); it++) { |
331 | testdir.setPath(*it + reldir); | 330 | testdir.setPath(*it + reldir); |
332 | if (testdir.exists()) | 331 | if (testdir.exists()) |
333 | list.append(testdir.absPath() + '/'); | 332 | list.append(testdir.absPath() + '/'); |
334 | } | 333 | } |
335 | 334 | ||
336 | return list; | 335 | return list; |
337 | } | 336 | } |
338 | 337 | ||
339 | QString KStandardDirs::findResourceDir( const char *type, | 338 | QString KStandardDirs::findResourceDir( const char *type, |
340 | const QString& filename) const | 339 | const QString& filename) const |
341 | { | 340 | { |
342 | #ifndef NDEBUG | 341 | #ifndef NDEBUG |
343 | if (filename.isEmpty()) { | 342 | if (filename.isEmpty()) { |
344 | kdWarning() << "filename for type " << type << " in KStandardDirs::findResourceDir is not supposed to be empty!!" << endl; | 343 | kdWarning() << "filename for type " << type << " in KStandardDirs::findResourceDir is not supposed to be empty!!" << endl; |
345 | return QString::null; | 344 | return QString::null; |
346 | } | 345 | } |
347 | #endif | 346 | #endif |
348 | 347 | ||
349 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) | 348 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) |
350 | applyDataRestrictions(filename); | 349 | applyDataRestrictions(filename); |
351 | QStringList candidates = resourceDirs(type); | 350 | QStringList candidates = resourceDirs(type); |
352 | QString fullPath; | 351 | QString fullPath; |
353 | 352 | ||
354 | for (QStringList::ConstIterator it = candidates.begin(); it != candidates.end(); it++) | 353 | for (QStringList::ConstIterator it = candidates.begin(); it != candidates.end(); it++) |
355 | { | 354 | { |
356 | if (exists(*it + filename)) | 355 | if (exists(*it + filename)) |
357 | return *it; | 356 | return *it; |
358 | } | 357 | } |
359 | 358 | ||
360 | #ifndef NDEBUG | 359 | #ifndef NDEBUG |
361 | if(false && type != "locale") | 360 | if(false && type != "locale") |
362 | kdDebug() << "KStdDirs::findResDir(): can't find \"" << filename << "\" in type \"" << type << "\"." << endl; | 361 | kdDebug() << "KStdDirs::findResDir(): can't find \"" << filename << "\" in type \"" << type << "\"." << endl; |
363 | #endif | 362 | #endif |
364 | 363 | ||
365 | return QString::null; | 364 | return QString::null; |
366 | } | 365 | } |
367 | 366 | ||
368 | bool KStandardDirs::exists(const QString &fullPath) | 367 | bool KStandardDirs::exists(const QString &fullPath) |
369 | { | 368 | { |
370 | //US struct stat buff; | 369 | //US struct stat buff; |
371 | QFileInfo fullPathInfo(QFile::encodeName(fullPath)); | 370 | QFileInfo fullPathInfo(QFile::encodeName(fullPath)); |
372 | 371 | ||
373 | //US if (access(QFile::encodeName(fullPath), R_OK) == 0 && fullPathInfo.isReadable()) | 372 | //US if (access(QFile::encodeName(fullPath), R_OK) == 0 && fullPathInfo.isReadable()) |
374 | if (fullPathInfo.isReadable()) | 373 | if (fullPathInfo.isReadable()) |
375 | { | 374 | { |
376 | if (fullPath.at(fullPath.length() - 1) != '/') { | 375 | if (fullPath.at(fullPath.length() - 1) != '/') { |
377 | //US if (S_ISREG( buff.st_mode )) | 376 | //US if (S_ISREG( buff.st_mode )) |
378 | if (fullPathInfo.isFile()) | 377 | if (fullPathInfo.isFile()) |
379 | return true; | 378 | return true; |
380 | } | 379 | } |
381 | else { | 380 | else { |
382 | //US if (S_ISDIR( buff.st_mode )) | 381 | //US if (S_ISDIR( buff.st_mode )) |
383 | if (fullPathInfo.isDir()) | 382 | if (fullPathInfo.isDir()) |
384 | return true; | 383 | return true; |
385 | } | 384 | } |
386 | } | 385 | } |
387 | return false; | 386 | return false; |
388 | } | 387 | } |
389 | 388 | ||
390 | static void lookupDirectory(const QString& path, const QString &relPart, | 389 | static void lookupDirectory(const QString& path, const QString &relPart, |
391 | const QRegExp ®exp, | 390 | const QRegExp ®exp, |
392 | QStringList& list, | 391 | QStringList& list, |
393 | QStringList& relList, | 392 | QStringList& relList, |
394 | bool recursive, bool uniq) | 393 | bool recursive, bool uniq) |
395 | { | 394 | { |
396 | QString pattern = regexp.pattern(); | 395 | QString pattern = regexp.pattern(); |
397 | if (recursive || pattern.contains('?') || pattern.contains('*')) | 396 | if (recursive || pattern.contains('?') || pattern.contains('*')) |
398 | { | 397 | { |
399 | // We look for a set of files. | 398 | // We look for a set of files. |
400 | //US DIR *dp = opendir( QFile::encodeName(path)); | 399 | //US DIR *dp = opendir( QFile::encodeName(path)); |
401 | QDir dp(QFile::encodeName(path)); | 400 | QDir dp(QFile::encodeName(path)); |
402 | 401 | ||
403 | if (!dp.exists()) | 402 | if (!dp.exists()) |
404 | return; | 403 | return; |
405 | static int iii = 0; | 404 | static int iii = 0; |
406 | ++iii; | 405 | ++iii; |
407 | if ( iii == 5 ) | 406 | if ( iii == 5 ) |
408 | abort(); | 407 | abort(); |
409 | assert(path.at(path.length() - 1) == '/'); | 408 | assert(path.at(path.length() - 1) == '/'); |
410 | 409 | ||
411 | //US struct dirent *ep; | 410 | //US struct dirent *ep; |
412 | //US struct stat buff; | 411 | //US struct stat buff; |
413 | 412 | ||
414 | QString _dot("."); | 413 | QString _dot("."); |
415 | QString _dotdot(".."); | 414 | QString _dotdot(".."); |
416 | 415 | ||
417 | //US while( ( ep = readdir( dp ) ) != 0L ) | 416 | //US while( ( ep = readdir( dp ) ) != 0L ) |
418 | QStringList direntries = dp.entryList(); | 417 | QStringList direntries = dp.entryList(); |
419 | QStringList::Iterator it = direntries.begin(); | 418 | QStringList::Iterator it = direntries.begin(); |
420 | 419 | ||
421 | while ( it != list.end() ) // for each file... | 420 | while ( it != list.end() ) // for each file... |
422 | { | 421 | { |
423 | 422 | ||
424 | //US QString fn( QFile::decodeName(ep->d_name)); | 423 | //US QString fn( QFile::decodeName(ep->d_name)); |
425 | QString fn = (*it); // dp.entryList already decodes | 424 | QString fn = (*it); // dp.entryList already decodes |
426 | it++; | 425 | it++; |
427 | if ( fn.isNull() ) | 426 | if ( fn.isNull() ) |
428 | break; | 427 | break; |
429 | 428 | ||
430 | if (fn == _dot || fn == _dotdot || fn.at(fn.length() - 1).latin1() == '~' ) | 429 | if (fn == _dot || fn == _dotdot || fn.at(fn.length() - 1).latin1() == '~' ) |
431 | continue; | 430 | continue; |
432 | 431 | ||
433 | /*US | 432 | /*US |
434 | if (!recursive && !regexp.exactMatch(fn)) | 433 | if (!recursive && !regexp.exactMatch(fn)) |
435 | continue; // No match | 434 | continue; // No match |
436 | */ | 435 | */ |
437 | //US this should do the same: | 436 | //US this should do the same: |
438 | int pos = regexp.match(fn); | 437 | int pos = regexp.match(fn); |
439 | if (!recursive && !pos == 0) | 438 | if (!recursive && !pos == 0) |
440 | continue; // No match | 439 | continue; // No match |
441 | 440 | ||
442 | QString pathfn = path + fn; | 441 | QString pathfn = path + fn; |
443 | /*US | 442 | /*US |
444 | if ( stat( QFile::encodeName(pathfn), &buff ) != 0 ) { | 443 | if ( stat( QFile::encodeName(pathfn), &buff ) != 0 ) { |
445 | kdDebug() << "Error stat'ing " << pathfn << " : " << perror << endl; | 444 | kdDebug() << "Error stat'ing " << pathfn << " : " << perror << endl; |
446 | continue; // Couldn't stat (e.g. no read permissions) | 445 | continue; // Couldn't stat (e.g. no read permissions) |
447 | } | 446 | } |
448 | 447 | ||
449 | if ( recursive ) | 448 | if ( recursive ) |
450 | { | 449 | { |
451 | if ( S_ISDIR( buff.st_mode )) { | 450 | if ( S_ISDIR( buff.st_mode )) { |
452 | lookupDirectory(pathfn + '/', relPart + fn + '/', regexp, list, relList, recursive, uniq); | 451 | lookupDirectory(pathfn + '/', relPart + fn + '/', regexp, list, relList, recursive, uniq); |
453 | } | 452 | } |
454 | */ | 453 | */ |
455 | //US replacement: | 454 | //US replacement: |
456 | QFileInfo pathfnInfo(QFile::encodeName(pathfn)); | 455 | QFileInfo pathfnInfo(QFile::encodeName(pathfn)); |
457 | if ( pathfnInfo.isReadable() == false ) | 456 | if ( pathfnInfo.isReadable() == false ) |
458 | { | 457 | { |
459 | //US kdDebug() << "Error stat'ing " << pathfn << " : " << perror << endl; | 458 | //US kdDebug() << "Error stat'ing " << pathfn << " : " << perror << endl; |
460 | continue; // Couldn't stat (e.g. no read permissions) | 459 | continue; // Couldn't stat (e.g. no read permissions) |
461 | } | 460 | } |
462 | 461 | ||
463 | if ( recursive ) | 462 | if ( recursive ) |
464 | { | 463 | { |
465 | if ( pathfnInfo.isDir()) { | 464 | if ( pathfnInfo.isDir()) { |
466 | lookupDirectory(pathfn + '/', relPart + fn + '/', regexp, list, relList, recursive, uniq); | 465 | lookupDirectory(pathfn + '/', relPart + fn + '/', regexp, list, relList, recursive, uniq); |
467 | } | 466 | } |
468 | 467 | ||
469 | 468 | ||
470 | /*US | 469 | /*US |
471 | if (!regexp.exactMatch(fn)) | 470 | if (!regexp.exactMatch(fn)) |
472 | continue; // No match | 471 | continue; // No match |
473 | */ | 472 | */ |
474 | //US this should do the same: | 473 | //US this should do the same: |
475 | pos = regexp.match(fn); | 474 | pos = regexp.match(fn); |
476 | if (!pos == 0) | 475 | if (!pos == 0) |
477 | continue; // No match | 476 | continue; // No match |
478 | } | 477 | } |
479 | 478 | ||
480 | //US if ( S_ISREG( buff.st_mode)) | 479 | //US if ( S_ISREG( buff.st_mode)) |
481 | if ( pathfnInfo.isFile()) | 480 | if ( pathfnInfo.isFile()) |
482 | { | 481 | { |
483 | if (!uniq || !relList.contains(relPart + fn)) | 482 | if (!uniq || !relList.contains(relPart + fn)) |
484 | { | 483 | { |
485 | list.append( pathfn ); | 484 | list.append( pathfn ); |
486 | relList.append( relPart + fn ); | 485 | relList.append( relPart + fn ); |
487 | } | 486 | } |
488 | } | 487 | } |
489 | } | 488 | } |
490 | //US closedir( dp ); | 489 | //US closedir( dp ); |
491 | } | 490 | } |
492 | else | 491 | else |
493 | { | 492 | { |
494 | // We look for a single file. | 493 | // We look for a single file. |
495 | QString fn = pattern; | 494 | QString fn = pattern; |
496 | QString pathfn = path + fn; | 495 | QString pathfn = path + fn; |
497 | //US struct stat buff; | 496 | //US struct stat buff; |
498 | QFileInfo pathfnInfo(QFile::encodeName(pathfn)); | 497 | QFileInfo pathfnInfo(QFile::encodeName(pathfn)); |
499 | 498 | ||
500 | 499 | ||
501 | //US if ( stat( QFile::encodeName(pathfn), &buff ) != 0 ) | 500 | //US if ( stat( QFile::encodeName(pathfn), &buff ) != 0 ) |
502 | if ( pathfnInfo.isReadable() == false ) | 501 | if ( pathfnInfo.isReadable() == false ) |
503 | return; // File not found | 502 | return; // File not found |
504 | 503 | ||
505 | //US if ( S_ISREG( buff.st_mode)) | 504 | //US if ( S_ISREG( buff.st_mode)) |
506 | if ( pathfnInfo.isFile()) | 505 | if ( pathfnInfo.isFile()) |
507 | { | 506 | { |
508 | if (!uniq || !relList.contains(relPart + fn)) | 507 | if (!uniq || !relList.contains(relPart + fn)) |
509 | { | 508 | { |
510 | list.append( pathfn ); | 509 | list.append( pathfn ); |
511 | relList.append( relPart + fn ); | 510 | relList.append( relPart + fn ); |
512 | } | 511 | } |
513 | } | 512 | } |
514 | } | 513 | } |
515 | } | 514 | } |
516 | 515 | ||
517 | static void lookupPrefix(const QString& prefix, const QString& relpath, | 516 | static void lookupPrefix(const QString& prefix, const QString& relpath, |
518 | const QString& relPart, | 517 | const QString& relPart, |
519 | const QRegExp ®exp, | 518 | const QRegExp ®exp, |
520 | QStringList& list, | 519 | QStringList& list, |
521 | QStringList& relList, | 520 | QStringList& relList, |
522 | bool recursive, bool uniq) | 521 | bool recursive, bool uniq) |
523 | { | 522 | { |
524 | if (relpath.isNull()) { | 523 | if (relpath.isNull()) { |
525 | lookupDirectory(prefix, relPart, regexp, list, | 524 | lookupDirectory(prefix, relPart, regexp, list, |
526 | relList, recursive, uniq); | 525 | relList, recursive, uniq); |
527 | return; | 526 | return; |
528 | } | 527 | } |
529 | QString path; | 528 | QString path; |
530 | QString rest; | 529 | QString rest; |
531 | 530 | ||
532 | if (relpath.length()) | 531 | if (relpath.length()) |
533 | { | 532 | { |
534 | int slash = relpath.find('/'); | 533 | int slash = relpath.find('/'); |
535 | if (slash < 0) | 534 | if (slash < 0) |
536 | rest = relpath.left(relpath.length() - 1); | 535 | rest = relpath.left(relpath.length() - 1); |
537 | else { | 536 | else { |
538 | path = relpath.left(slash); | 537 | path = relpath.left(slash); |
539 | rest = relpath.mid(slash + 1); | 538 | rest = relpath.mid(slash + 1); |
540 | } | 539 | } |
541 | } | 540 | } |
542 | assert(prefix.at(prefix.length() - 1) == '/'); | 541 | assert(prefix.at(prefix.length() - 1) == '/'); |
543 | 542 | ||
544 | //US struct stat buff; | 543 | //US struct stat buff; |
545 | 544 | ||
546 | if (path.contains('*') || path.contains('?')) { | 545 | if (path.contains('*') || path.contains('?')) { |
547 | QRegExp pathExp(path, true, true); | 546 | QRegExp pathExp(path, true, true); |
548 | //USDIR *dp = opendir( QFile::encodeName(prefix) ); | 547 | //USDIR *dp = opendir( QFile::encodeName(prefix) ); |
549 | QDir dp(QFile::encodeName(prefix)); | 548 | QDir dp(QFile::encodeName(prefix)); |
550 | 549 | ||
551 | //USif (!dp) | 550 | //USif (!dp) |
552 | if (!dp.exists()) | 551 | if (!dp.exists()) |
553 | { | 552 | { |
554 | return; | 553 | return; |
555 | } | 554 | } |
556 | 555 | ||
557 | //USstruct dirent *ep; | 556 | //USstruct dirent *ep; |
558 | 557 | ||
559 | QString _dot("."); | 558 | QString _dot("."); |
560 | QString _dotdot(".."); | 559 | QString _dotdot(".."); |
561 | 560 | ||
562 | //USwhile( ( ep = readdir( dp ) ) != 0L ) | 561 | //USwhile( ( ep = readdir( dp ) ) != 0L ) |
563 | QStringList direntries = dp.entryList(); | 562 | QStringList direntries = dp.entryList(); |
564 | QStringList::Iterator it = direntries.begin(); | 563 | QStringList::Iterator it = direntries.begin(); |
565 | 564 | ||
566 | while ( it != list.end() ) // for each file... | 565 | while ( it != list.end() ) // for each file... |
567 | { | 566 | { |
568 | //US QString fn( QFile::decodeName(ep->d_name)); | 567 | //US QString fn( QFile::decodeName(ep->d_name)); |
569 | QString fn = (*it); // dp.entryList() already encodes the strings | 568 | QString fn = (*it); // dp.entryList() already encodes the strings |
570 | it++; | 569 | it++; |
571 | 570 | ||
572 | if (fn == _dot || fn == _dotdot || fn.at(fn.length() - 1) == '~') | 571 | if (fn == _dot || fn == _dotdot || fn.at(fn.length() - 1) == '~') |
573 | continue; | 572 | continue; |
574 | 573 | ||
575 | #ifdef DESKTOP_VERSION | 574 | #ifdef DESKTOP_VERSION |
576 | 575 | ||
577 | if (pathExp.search(fn) == -1) | 576 | if (pathExp.search(fn) == -1) |
578 | continue; // No match | 577 | continue; // No match |
579 | 578 | ||
580 | #else | 579 | #else |
581 | //US this should do the same: | 580 | //US this should do the same: |
582 | if (pathExp.find(fn, 0) == -1) | 581 | if (pathExp.find(fn, 0) == -1) |
583 | continue; // No match | 582 | continue; // No match |
584 | #endif | 583 | #endif |
585 | QString rfn = relPart+fn; | 584 | QString rfn = relPart+fn; |
586 | fn = prefix + fn; | 585 | fn = prefix + fn; |
587 | //US if ( stat( QFile::encodeName(fn), &buff ) != 0 ) | 586 | //US if ( stat( QFile::encodeName(fn), &buff ) != 0 ) |
588 | QFileInfo fnInfo(QFile::encodeName(fn)); | 587 | QFileInfo fnInfo(QFile::encodeName(fn)); |
589 | if ( fnInfo.isReadable() == false ) | 588 | if ( fnInfo.isReadable() == false ) |
590 | { | 589 | { |
591 | //US kdDebug() << "Error statting " << fn << " : " << perror << endl; | 590 | //US kdDebug() << "Error statting " << fn << " : " << perror << endl; |
592 | continue; // Couldn't stat (e.g. no permissions) | 591 | continue; // Couldn't stat (e.g. no permissions) |
593 | } | 592 | } |
594 | //US if ( S_ISDIR( buff.st_mode )) | 593 | //US if ( S_ISDIR( buff.st_mode )) |
595 | if ( fnInfo.isDir() ) | 594 | if ( fnInfo.isDir() ) |
596 | 595 | ||
597 | lookupPrefix(fn + '/', rest, rfn + '/', regexp, list, relList, recursive, uniq); | 596 | lookupPrefix(fn + '/', rest, rfn + '/', regexp, list, relList, recursive, uniq); |
598 | } | 597 | } |
599 | 598 | ||
600 | //USclosedir( dp ); | 599 | //USclosedir( dp ); |
601 | } else { | 600 | } else { |
602 | // Don't stat, if the dir doesn't exist we will find out | 601 | // Don't stat, if the dir doesn't exist we will find out |
603 | // when we try to open it. | 602 | // when we try to open it. |
604 | lookupPrefix(prefix + path + '/', rest, | 603 | lookupPrefix(prefix + path + '/', rest, |
605 | relPart + path + '/', regexp, list, | 604 | relPart + path + '/', regexp, list, |
606 | relList, recursive, uniq); | 605 | relList, recursive, uniq); |
607 | } | 606 | } |
608 | } | 607 | } |
609 | 608 | ||
610 | QStringList | 609 | QStringList |
611 | KStandardDirs::findAllResources( const char *type, | 610 | KStandardDirs::findAllResources( const char *type, |
612 | const QString& filter, | 611 | const QString& filter, |
613 | bool recursive, | 612 | bool recursive, |
614 | bool uniq, | 613 | bool uniq, |
615 | QStringList &relList) const | 614 | QStringList &relList) const |
616 | { | 615 | { |
617 | QStringList list; | 616 | QStringList list; |
618 | if (filter.at(0) == '/') // absolute paths we return | 617 | if (filter.at(0) == '/') // absolute paths we return |
619 | { | 618 | { |
620 | list.append( filter); | 619 | list.append( filter); |
621 | return list; | 620 | return list; |
622 | } | 621 | } |
623 | 622 | ||
624 | QString filterPath; | 623 | QString filterPath; |
625 | QString filterFile; | 624 | QString filterFile; |
626 | 625 | ||
627 | if (filter.length()) | 626 | if (filter.length()) |
628 | { | 627 | { |
629 | int slash = filter.findRev('/'); | 628 | int slash = filter.findRev('/'); |
630 | if (slash < 0) | 629 | if (slash < 0) |
631 | filterFile = filter; | 630 | filterFile = filter; |
632 | else { | 631 | else { |
633 | filterPath = filter.left(slash + 1); | 632 | filterPath = filter.left(slash + 1); |
634 | filterFile = filter.mid(slash + 1); | 633 | filterFile = filter.mid(slash + 1); |
635 | } | 634 | } |
636 | } | 635 | } |
637 | checkConfig(); | 636 | checkConfig(); |
638 | 637 | ||
639 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) | 638 | if (d && d->restrictionsActive && (strcmp(type, "data")==0)) |
640 | applyDataRestrictions(filter); | 639 | applyDataRestrictions(filter); |
641 | QStringList candidates = resourceDirs(type); | 640 | QStringList candidates = resourceDirs(type); |
642 | if (filterFile.isEmpty()) | 641 | if (filterFile.isEmpty()) |
643 | filterFile = "*"; | 642 | filterFile = "*"; |
644 | 643 | ||
645 | QRegExp regExp(filterFile, true, true); | 644 | QRegExp regExp(filterFile, true, true); |
646 | for (QStringList::ConstIterator it = candidates.begin(); | 645 | for (QStringList::ConstIterator it = candidates.begin(); |
647 | it != candidates.end(); it++) | 646 | it != candidates.end(); it++) |
648 | { | 647 | { |
649 | lookupPrefix(*it, filterPath, "", regExp, list, | 648 | lookupPrefix(*it, filterPath, "", regExp, list, |
650 | relList, recursive, uniq); | 649 | relList, recursive, uniq); |
651 | } | 650 | } |
652 | return list; | 651 | return list; |
653 | } | 652 | } |
654 | 653 | ||
655 | QStringList | 654 | QStringList |
656 | KStandardDirs::findAllResources( const char *type, | 655 | KStandardDirs::findAllResources( const char *type, |
657 | const QString& filter, | 656 | const QString& filter, |
658 | bool recursive, | 657 | bool recursive, |
659 | bool uniq) const | 658 | bool uniq) const |
660 | { | 659 | { |
661 | QStringList relList; | 660 | QStringList relList; |
662 | return findAllResources(type, filter, recursive, uniq, relList); | 661 | return findAllResources(type, filter, recursive, uniq, relList); |
663 | } | 662 | } |
664 | 663 | ||
665 | QString | 664 | QString |
666 | KStandardDirs::realPath(const QString &dirname) | 665 | KStandardDirs::realPath(const QString &dirname) |
667 | { | 666 | { |
668 | #ifdef _WIN32_ | 667 | #ifdef _WIN32_ |
669 | return dirname; | 668 | return dirname; |
670 | #else | 669 | #else |
671 | //US char realpath_buffer[MAXPATHLEN + 1]; | 670 | //US char realpath_buffer[MAXPATHLEN + 1]; |
672 | //US memset(realpath_buffer, 0, MAXPATHLEN + 1); | 671 | //US memset(realpath_buffer, 0, MAXPATHLEN + 1); |
673 | char realpath_buffer[250 + 1]; | 672 | char realpath_buffer[250 + 1]; |
674 | memset(realpath_buffer, 0, 250 + 1); | 673 | memset(realpath_buffer, 0, 250 + 1); |
675 | 674 | ||
676 | /* If the path contains symlinks, get the real name */ | 675 | /* If the path contains symlinks, get the real name */ |
677 | if (realpath( QFile::encodeName(dirname).data(), realpath_buffer) != 0) { | 676 | if (realpath( QFile::encodeName(dirname).data(), realpath_buffer) != 0) { |
678 | // succes, use result from realpath | 677 | // succes, use result from realpath |
679 | int len = strlen(realpath_buffer); | 678 | int len = strlen(realpath_buffer); |
680 | realpath_buffer[len] = '/'; | 679 | realpath_buffer[len] = '/'; |
681 | realpath_buffer[len+1] = 0; | 680 | realpath_buffer[len+1] = 0; |
682 | return QFile::decodeName(realpath_buffer); | 681 | return QFile::decodeName(realpath_buffer); |
683 | } | 682 | } |
684 | 683 | ||
685 | return dirname; | 684 | return dirname; |
686 | #endif | 685 | #endif |
687 | } | 686 | } |
688 | /*US | 687 | /*US |
689 | void KStandardDirs::createSpecialResource(const char *type) | 688 | void KStandardDirs::createSpecialResource(const char *type) |
690 | { | 689 | { |
691 | char hostname[256]; | 690 | char hostname[256]; |
692 | hostname[0] = 0; | 691 | hostname[0] = 0; |
693 | gethostname(hostname, 255); | 692 | gethostname(hostname, 255); |
694 | QString dir = QString("%1%2-%3").arg(localkdedir()).arg(type).arg(hostname); | 693 | QString dir = QString("%1%2-%3").arg(localkdedir()).arg(type).arg(hostname); |
695 | char link[1024]; | 694 | char link[1024]; |
696 | link[1023] = 0; | 695 | link[1023] = 0; |
697 | int result = readlink(QFile::encodeName(dir).data(), link, 1023); | 696 | int result = readlink(QFile::encodeName(dir).data(), link, 1023); |
698 | if ((result == -1) && (errno == ENOENT)) | 697 | if ((result == -1) && (errno == ENOENT)) |
699 | { | 698 | { |
700 | QString srv = findExe(QString::fromLatin1("lnusertemp"), KDEDIR+QString::fromLatin1("/bin")); | 699 | QString srv = findExe(QString::fromLatin1("lnusertemp"), KDEDIR+QString::fromLatin1("/bin")); |
701 | if (srv.isEmpty()) | 700 | if (srv.isEmpty()) |
702 | srv = findExe(QString::fromLatin1("lnusertemp")); | 701 | srv = findExe(QString::fromLatin1("lnusertemp")); |
703 | if (!srv.isEmpty()) | 702 | if (!srv.isEmpty()) |
704 | { | 703 | { |
705 | system(QFile::encodeName(srv)+" "+type); | 704 | system(QFile::encodeName(srv)+" "+type); |
706 | result = readlink(QFile::encodeName(dir).data(), link, 1023); | 705 | result = readlink(QFile::encodeName(dir).data(), link, 1023); |
707 | } | 706 | } |
708 | } | 707 | } |
709 | if (result > 0) | 708 | if (result > 0) |
710 | { | 709 | { |
711 | link[result] = 0; | 710 | link[result] = 0; |
712 | if (link[0] == '/') | 711 | if (link[0] == '/') |
713 | dir = QFile::decodeName(link); | 712 | dir = QFile::decodeName(link); |
714 | else | 713 | else |
715 | dir = QDir::cleanDirPath(dir+QFile::decodeName(link)); | 714 | dir = QDir::cleanDirPath(dir+QFile::decodeName(link)); |
716 | } | 715 | } |
717 | addResourceDir(type, dir+'/'); | 716 | addResourceDir(type, dir+'/'); |
718 | } | 717 | } |
719 | */ | 718 | */ |
720 | 719 | ||
721 | QStringList KStandardDirs::resourceDirs(const char *type) const | 720 | QStringList KStandardDirs::resourceDirs(const char *type) const |
722 | { | 721 | { |
723 | QStringList *candidates = dircache.find(type); | 722 | QStringList *candidates = dircache.find(type); |
724 | 723 | ||
725 | if (!candidates) { // filling cache | 724 | if (!candidates) { // filling cache |
726 | /*US | 725 | /*US |
727 | if (strcmp(type, "socket") == 0) | 726 | if (strcmp(type, "socket") == 0) |
728 | const_cast<KStandardDirs *>(this)->createSpecialResource(type); | 727 | const_cast<KStandardDirs *>(this)->createSpecialResource(type); |
729 | else if (strcmp(type, "tmp") == 0) | 728 | else if (strcmp(type, "tmp") == 0) |
730 | const_cast<KStandardDirs *>(this)->createSpecialResource(type); | 729 | const_cast<KStandardDirs *>(this)->createSpecialResource(type); |
731 | else if (strcmp(type, "cache") == 0) | 730 | else if (strcmp(type, "cache") == 0) |
732 | const_cast<KStandardDirs *>(this)->createSpecialResource(type); | 731 | const_cast<KStandardDirs *>(this)->createSpecialResource(type); |
733 | */ | 732 | */ |
734 | QDir testdir; | 733 | QDir testdir; |
735 | 734 | ||
736 | candidates = new QStringList(); | 735 | candidates = new QStringList(); |
737 | QStringList *dirs; | 736 | QStringList *dirs; |
738 | 737 | ||
739 | bool restrictionActive = false; | 738 | bool restrictionActive = false; |
740 | if (d && d->restrictionsActive) | 739 | if (d && d->restrictionsActive) |
741 | { | 740 | { |
742 | if (d->dataRestrictionActive) | 741 | if (d->dataRestrictionActive) |
743 | restrictionActive = true; | 742 | restrictionActive = true; |
744 | else if (d->restrictions["all"]) | 743 | else if (d->restrictions["all"]) |
745 | restrictionActive = true; | 744 | restrictionActive = true; |
746 | else if (d->restrictions[type]) | 745 | else if (d->restrictions[type]) |
747 | restrictionActive = true; | 746 | restrictionActive = true; |
748 | d->dataRestrictionActive = false; // Reset | 747 | d->dataRestrictionActive = false; // Reset |
749 | } | 748 | } |
750 | 749 | ||
751 | dirs = relatives.find(type); | 750 | dirs = relatives.find(type); |
752 | if (dirs) | 751 | if (dirs) |
753 | { | 752 | { |
754 | bool local = true; | 753 | bool local = true; |
755 | const QStringList *prefixList = 0; | 754 | const QStringList *prefixList = 0; |
756 | if (strncmp(type, "xdgdata-", 8) == 0) | 755 | if (strncmp(type, "xdgdata-", 8) == 0) |
757 | prefixList = &(d->xdgdata_prefixes); | 756 | prefixList = &(d->xdgdata_prefixes); |
758 | else if (strncmp(type, "xdgconf-", 8) == 0) | 757 | else if (strncmp(type, "xdgconf-", 8) == 0) |
759 | prefixList = &(d->xdgconf_prefixes); | 758 | prefixList = &(d->xdgconf_prefixes); |
760 | else | 759 | else |
761 | prefixList = &prefixes; | 760 | prefixList = &prefixes; |
762 | 761 | ||
763 | for (QStringList::ConstIterator pit = prefixList->begin(); | 762 | for (QStringList::ConstIterator pit = prefixList->begin(); |
764 | pit != prefixList->end(); | 763 | pit != prefixList->end(); |
765 | pit++) | 764 | pit++) |
766 | { | 765 | { |
767 | for (QStringList::ConstIterator it = dirs->begin(); | 766 | for (QStringList::ConstIterator it = dirs->begin(); |
768 | it != dirs->end(); ++it) { | 767 | it != dirs->end(); ++it) { |
769 | QString path = realPath(*pit + *it); | 768 | QString path = realPath(*pit + *it); |
770 | testdir.setPath(path); | 769 | testdir.setPath(path); |
771 | if (local && restrictionActive) | 770 | if (local && restrictionActive) |
772 | continue; | 771 | continue; |
773 | if ((local || testdir.exists()) && !candidates->contains(path)) | 772 | if ((local || testdir.exists()) && !candidates->contains(path)) |
774 | candidates->append(path); | 773 | candidates->append(path); |
775 | } | 774 | } |
776 | local = false; | 775 | local = false; |
777 | } | 776 | } |
778 | } | 777 | } |
779 | dirs = absolutes.find(type); | 778 | dirs = absolutes.find(type); |
780 | if (dirs) | 779 | if (dirs) |
781 | for (QStringList::ConstIterator it = dirs->begin(); | 780 | for (QStringList::ConstIterator it = dirs->begin(); |
782 | it != dirs->end(); ++it) | 781 | it != dirs->end(); ++it) |
783 | { | 782 | { |
784 | testdir.setPath(*it); | 783 | testdir.setPath(*it); |
785 | if (testdir.exists()) | 784 | if (testdir.exists()) |
786 | { | 785 | { |
787 | QString filename = realPath(*it); | 786 | QString filename = realPath(*it); |
788 | if (!candidates->contains(filename)) | 787 | if (!candidates->contains(filename)) |
789 | candidates->append(filename); | 788 | candidates->append(filename); |
790 | } | 789 | } |
791 | } | 790 | } |
792 | dircache.insert(type, candidates); | 791 | dircache.insert(type, candidates); |
793 | } | 792 | } |
794 | 793 | ||
795 | #if 0 | 794 | #if 0 |
796 | kdDebug() << "found dirs for resource " << type << ":" << endl; | 795 | kdDebug() << "found dirs for resource " << type << ":" << endl; |
797 | for (QStringList::ConstIterator pit = candidates->begin(); | 796 | for (QStringList::ConstIterator pit = candidates->begin(); |
798 | pit != candidates->end(); | 797 | pit != candidates->end(); |
799 | pit++) | 798 | pit++) |
800 | { | 799 | { |
801 | fprintf(stderr, "%s\n", (*pit).latin1()); | 800 | fprintf(stderr, "%s\n", (*pit).latin1()); |
802 | } | 801 | } |
803 | #endif | 802 | #endif |
804 | 803 | ||
805 | 804 | ||
806 | return *candidates; | 805 | return *candidates; |
807 | } | 806 | } |
808 | 807 | ||
809 | /*US | 808 | /*US |
810 | QString KStandardDirs::findExe( const QString& appname, | 809 | QString KStandardDirs::findExe( const QString& appname, |
811 | const QString& pstr, bool ignore) | 810 | const QString& pstr, bool ignore) |
812 | { | 811 | { |
813 | QFileInfo info; | 812 | QFileInfo info; |
814 | 813 | ||
815 | // absolute path ? | 814 | // absolute path ? |
816 | if (appname.startsWith(QString::fromLatin1("/"))) | 815 | if (appname.startsWith(QString::fromLatin1("/"))) |
817 | { | 816 | { |
818 | info.setFile( appname ); | 817 | info.setFile( appname ); |
819 | if( info.exists() && ( ignore || info.isExecutable() ) | 818 | if( info.exists() && ( ignore || info.isExecutable() ) |
820 | && info.isFile() ) { | 819 | && info.isFile() ) { |
821 | return appname; | 820 | return appname; |
822 | } | 821 | } |
823 | return QString::null; | 822 | return QString::null; |
824 | } | 823 | } |
825 | 824 | ||
826 | //US QString p = QString("%1/%2").arg(__KDE_BINDIR).arg(appname); | 825 | //US QString p = QString("%1/%2").arg(__KDE_BINDIR).arg(appname); |
827 | QString p = QString("%1/%2").arg(appname).arg(appname); | 826 | QString p = QString("%1/%2").arg(appname).arg(appname); |
828 | qDebug("KStandardDirs::findExe this is probably wrong"); | 827 | qDebug("KStandardDirs::findExe this is probably wrong"); |
829 | 828 | ||
830 | info.setFile( p ); | 829 | info.setFile( p ); |
831 | if( info.exists() && ( ignore || info.isExecutable() ) | 830 | if( info.exists() && ( ignore || info.isExecutable() ) |
832 | && ( info.isFile() || info.isSymLink() ) ) { | 831 | && ( info.isFile() || info.isSymLink() ) ) { |
833 | return p; | 832 | return p; |
834 | } | 833 | } |
835 | 834 | ||
836 | QStringList tokens; | 835 | QStringList tokens; |
837 | p = pstr; | 836 | p = pstr; |
838 | 837 | ||
839 | if( p.isNull() ) { | 838 | if( p.isNull() ) { |
840 | p = getenv( "PATH" ); | 839 | p = getenv( "PATH" ); |
841 | } | 840 | } |
842 | 841 | ||
843 | tokenize( tokens, p, ":\b" ); | 842 | tokenize( tokens, p, ":\b" ); |
844 | 843 | ||
845 | // split path using : or \b as delimiters | 844 | // split path using : or \b as delimiters |
846 | for( unsigned i = 0; i < tokens.count(); i++ ) { | 845 | for( unsigned i = 0; i < tokens.count(); i++ ) { |
847 | p = tokens[ i ]; | 846 | p = tokens[ i ]; |
848 | 847 | ||
849 | if ( p[ 0 ] == '~' ) | 848 | if ( p[ 0 ] == '~' ) |
850 | { | 849 | { |
851 | int len = p.find( '/' ); | 850 | int len = p.find( '/' ); |
852 | if ( len == -1 ) | 851 | if ( len == -1 ) |
853 | len = p.length(); | 852 | len = p.length(); |
854 | if ( len == 1 ) | 853 | if ( len == 1 ) |
855 | p.replace( 0, 1, QDir::homeDirPath() ); | 854 | p.replace( 0, 1, QDir::homeDirPath() ); |
856 | else | 855 | else |
857 | { | 856 | { |
858 | QString user = p.mid( 1, len - 1 ); | 857 | QString user = p.mid( 1, len - 1 ); |
859 | struct passwd *dir = getpwnam( user.local8Bit().data() ); | 858 | struct passwd *dir = getpwnam( user.local8Bit().data() ); |
860 | if ( dir && strlen( dir->pw_dir ) ) | 859 | if ( dir && strlen( dir->pw_dir ) ) |
861 | p.replace( 0, len, QString::fromLocal8Bit( dir->pw_dir ) ); | 860 | p.replace( 0, len, QString::fromLocal8Bit( dir->pw_dir ) ); |
862 | } | 861 | } |
863 | } | 862 | } |
864 | 863 | ||
865 | p += "/"; | 864 | p += "/"; |
866 | p += appname; | 865 | p += appname; |
867 | 866 | ||
868 | // Check for executable in this tokenized path | 867 | // Check for executable in this tokenized path |
869 | info.setFile( p ); | 868 | info.setFile( p ); |
870 | 869 | ||
871 | if( info.exists() && ( ignore || info.isExecutable() ) | 870 | if( info.exists() && ( ignore || info.isExecutable() ) |
872 | && ( info.isFile() || info.isSymLink() ) ) { | 871 | && ( info.isFile() || info.isSymLink() ) ) { |
873 | return p; | 872 | return p; |
874 | } | 873 | } |
875 | } | 874 | } |
876 | 875 | ||
877 | // If we reach here, the executable wasn't found. | 876 | // If we reach here, the executable wasn't found. |
878 | // So return empty string. | 877 | // So return empty string. |
879 | 878 | ||
880 | return QString::null; | 879 | return QString::null; |
881 | } | 880 | } |
882 | 881 | ||
883 | int KStandardDirs::findAllExe( QStringList& list, const QString& appname, | 882 | int KStandardDirs::findAllExe( QStringList& list, const QString& appname, |
884 | const QString& pstr, bool ignore ) | 883 | const QString& pstr, bool ignore ) |
885 | { | 884 | { |
886 | QString p = pstr; | 885 | QString p = pstr; |
887 | QFileInfo info; | 886 | QFileInfo info; |
888 | QStringList tokens; | 887 | QStringList tokens; |
889 | 888 | ||
890 | if( p.isNull() ) { | 889 | if( p.isNull() ) { |
891 | p = getenv( "PATH" ); | 890 | p = getenv( "PATH" ); |
892 | } | 891 | } |
893 | 892 | ||
894 | list.clear(); | 893 | list.clear(); |
895 | tokenize( tokens, p, ":\b" ); | 894 | tokenize( tokens, p, ":\b" ); |
896 | 895 | ||
897 | for ( unsigned i = 0; i < tokens.count(); i++ ) { | 896 | for ( unsigned i = 0; i < tokens.count(); i++ ) { |
898 | p = tokens[ i ]; | 897 | p = tokens[ i ]; |
899 | p += "/"; | 898 | p += "/"; |
900 | p += appname; | 899 | p += appname; |
901 | 900 | ||
902 | info.setFile( p ); | 901 | info.setFile( p ); |
903 | 902 | ||
904 | if( info.exists() && (ignore || info.isExecutable()) | 903 | if( info.exists() && (ignore || info.isExecutable()) |
905 | && info.isFile() ) { | 904 | && info.isFile() ) { |
906 | list.append( p ); | 905 | list.append( p ); |
907 | } | 906 | } |
908 | 907 | ||
909 | } | 908 | } |
910 | 909 | ||
911 | return list.count(); | 910 | return list.count(); |
912 | } | 911 | } |
913 | */ | 912 | */ |
914 | 913 | ||
915 | static int tokenize( QStringList& tokens, const QString& str, | 914 | static int tokenize( QStringList& tokens, const QString& str, |
916 | const QString& delim ) | 915 | const QString& delim ) |
917 | { | 916 | { |
918 | int len = str.length(); | 917 | int len = str.length(); |
919 | QString token = ""; | 918 | QString token = ""; |
920 | 919 | ||
921 | for( int index = 0; index < len; index++) | 920 | for( int index = 0; index < len; index++) |
922 | { | 921 | { |
923 | if ( delim.find( str[ index ] ) >= 0 ) | 922 | if ( delim.find( str[ index ] ) >= 0 ) |
924 | { | 923 | { |
925 | tokens.append( token ); | 924 | tokens.append( token ); |
926 | token = ""; | 925 | token = ""; |
927 | } | 926 | } |
928 | else | 927 | else |
929 | { | 928 | { |
930 | token += str[ index ]; | 929 | token += str[ index ]; |
931 | } | 930 | } |
932 | } | 931 | } |
933 | if ( token.length() > 0 ) | 932 | if ( token.length() > 0 ) |
934 | { | 933 | { |
935 | tokens.append( token ); | 934 | tokens.append( token ); |
936 | } | 935 | } |
937 | 936 | ||
938 | return tokens.count(); | 937 | return tokens.count(); |
939 | } | 938 | } |
940 | 939 | ||
941 | QString KStandardDirs::kde_default(const char *type) { | 940 | QString KStandardDirs::kde_default(const char *type) { |
942 | if (!strcmp(type, "data")) | 941 | if (!strcmp(type, "data")) |
943 | return "apps/"; | 942 | return "apps/"; |
944 | if (!strcmp(type, "html")) | 943 | if (!strcmp(type, "html")) |
945 | return "share/doc/HTML/"; | 944 | return "share/doc/HTML/"; |
946 | if (!strcmp(type, "icon")) | 945 | if (!strcmp(type, "icon")) |
947 | return "share/icons/"; | 946 | return "share/icons/"; |
948 | if (!strcmp(type, "config")) | 947 | if (!strcmp(type, "config")) |
949 | return "config/"; | 948 | return "config/"; |
950 | if (!strcmp(type, "pixmap")) | 949 | if (!strcmp(type, "pixmap")) |
951 | return "share/pixmaps/"; | 950 | return "share/pixmaps/"; |
952 | if (!strcmp(type, "apps")) | 951 | if (!strcmp(type, "apps")) |
953 | return "share/applnk/"; | 952 | return "share/applnk/"; |
954 | if (!strcmp(type, "sound")) | 953 | if (!strcmp(type, "sound")) |
955 | return "share/sounds/"; | 954 | return "share/sounds/"; |
956 | if (!strcmp(type, "locale")) | 955 | if (!strcmp(type, "locale")) |
957 | return "share/locale/"; | 956 | return "share/locale/"; |
958 | if (!strcmp(type, "services")) | 957 | if (!strcmp(type, "services")) |
959 | return "share/services/"; | 958 | return "share/services/"; |
960 | if (!strcmp(type, "servicetypes")) | 959 | if (!strcmp(type, "servicetypes")) |
961 | return "share/servicetypes/"; | 960 | return "share/servicetypes/"; |
962 | if (!strcmp(type, "mime")) | 961 | if (!strcmp(type, "mime")) |
963 | return "share/mimelnk/"; | 962 | return "share/mimelnk/"; |
964 | if (!strcmp(type, "cgi")) | 963 | if (!strcmp(type, "cgi")) |
965 | return "cgi-bin/"; | 964 | return "cgi-bin/"; |
966 | if (!strcmp(type, "wallpaper")) | 965 | if (!strcmp(type, "wallpaper")) |
967 | return "share/wallpapers/"; | 966 | return "share/wallpapers/"; |
968 | if (!strcmp(type, "templates")) | 967 | if (!strcmp(type, "templates")) |
969 | return "share/templates/"; | 968 | return "share/templates/"; |
970 | if (!strcmp(type, "exe")) | 969 | if (!strcmp(type, "exe")) |
971 | return "bin/"; | 970 | return "bin/"; |
972 | if (!strcmp(type, "lib")) | 971 | if (!strcmp(type, "lib")) |
973 | return "lib/"; | 972 | return "lib/"; |
974 | if (!strcmp(type, "module")) | 973 | if (!strcmp(type, "module")) |
975 | return "lib/kde3/"; | 974 | return "lib/kde3/"; |
976 | if (!strcmp(type, "qtplugins")) | 975 | if (!strcmp(type, "qtplugins")) |
977 | return "lib/kde3/plugins"; | 976 | return "lib/kde3/plugins"; |
978 | if (!strcmp(type, "xdgdata-apps")) | 977 | if (!strcmp(type, "xdgdata-apps")) |
979 | return "applications/"; | 978 | return "applications/"; |
980 | if (!strcmp(type, "xdgdata-dirs")) | 979 | if (!strcmp(type, "xdgdata-dirs")) |
981 | return "desktop-directories/"; | 980 | return "desktop-directories/"; |
982 | if (!strcmp(type, "xdgconf-menu")) | 981 | if (!strcmp(type, "xdgconf-menu")) |
983 | return "menus/"; | 982 | return "menus/"; |
984 | qFatal("unknown resource type %s", type); | 983 | qFatal("unknown resource type %s", type); |
985 | return QString::null; | 984 | return QString::null; |
986 | } | 985 | } |
987 | 986 | ||
988 | QString KStandardDirs::saveLocation(const char *type, | 987 | QString KStandardDirs::saveLocation(const char *type, |
989 | const QString& suffix, | 988 | const QString& suffix, |
990 | bool create) const | 989 | bool create) const |
991 | { | 990 | { |
992 | //qDebug("KStandardDirs::saveLocation called %s %s", type,suffix.latin1() ); | 991 | //qDebug("KStandardDirs::saveLocation called %s %s", type,suffix.latin1() ); |
993 | //return ""; | 992 | //return ""; |
994 | checkConfig(); | 993 | checkConfig(); |
995 | 994 | ||
996 | QString *pPath = savelocations.find(type); | 995 | QString *pPath = savelocations.find(type); |
997 | if (!pPath) | 996 | if (!pPath) |
998 | { | 997 | { |
999 | QStringList *dirs = relatives.find(type); | 998 | QStringList *dirs = relatives.find(type); |
1000 | if (!dirs && ( | 999 | if (!dirs && ( |
1001 | (strcmp(type, "socket") == 0) || | 1000 | (strcmp(type, "socket") == 0) || |
1002 | (strcmp(type, "tmp") == 0) || | 1001 | (strcmp(type, "tmp") == 0) || |
1003 | (strcmp(type, "cache") == 0) )) | 1002 | (strcmp(type, "cache") == 0) )) |
1004 | { | 1003 | { |
1005 | (void) resourceDirs(type); // Generate socket|tmp|cache resource. | 1004 | (void) resourceDirs(type); // Generate socket|tmp|cache resource. |
1006 | dirs = relatives.find(type); // Search again. | 1005 | dirs = relatives.find(type); // Search again. |
1007 | } | 1006 | } |
1008 | if (dirs) | 1007 | if (dirs) |
1009 | { | 1008 | { |
1010 | // Check for existance of typed directory + suffix | 1009 | // Check for existance of typed directory + suffix |
1011 | if (strncmp(type, "xdgdata-", 8) == 0) | 1010 | if (strncmp(type, "xdgdata-", 8) == 0) |
1012 | pPath = new QString(realPath(localxdgdatadir() + dirs->last())); | 1011 | pPath = new QString(realPath(localxdgdatadir() + dirs->last())); |
1013 | else if (strncmp(type, "xdgconf-", 8) == 0) | 1012 | else if (strncmp(type, "xdgconf-", 8) == 0) |
1014 | pPath = new QString(realPath(localxdgconfdir() + dirs->last())); | 1013 | pPath = new QString(realPath(localxdgconfdir() + dirs->last())); |
1015 | else | 1014 | else |
1016 | pPath = new QString(realPath(localkdedir() + dirs->last())); | 1015 | pPath = new QString(realPath(localkdedir() + dirs->last())); |
1017 | } | 1016 | } |
1018 | else { | 1017 | else { |
1019 | dirs = absolutes.find(type); | 1018 | dirs = absolutes.find(type); |
1020 | if (!dirs) | 1019 | if (!dirs) |
1021 | qFatal("KStandardDirs: The resource type %s is not registered", type); | 1020 | qFatal("KStandardDirs: The resource type %s is not registered", type); |
1022 | pPath = new QString(realPath(dirs->last())); | 1021 | pPath = new QString(realPath(dirs->last())); |
1023 | } | 1022 | } |
1024 | 1023 | ||
1025 | savelocations.insert(type, pPath); | 1024 | savelocations.insert(type, pPath); |
1026 | } | 1025 | } |
1027 | 1026 | ||
1028 | QString fullPath = *pPath + suffix; | 1027 | QString fullPath = *pPath + suffix; |
1029 | //US struct stat st; | 1028 | //US struct stat st; |
1030 | //US if (stat(QFile::encodeName(fullPath), &st) != 0 || !(S_ISDIR(st.st_mode))) | 1029 | //US if (stat(QFile::encodeName(fullPath), &st) != 0 || !(S_ISDIR(st.st_mode))) |
1031 | QFileInfo fullPathInfo(QFile::encodeName(fullPath)); | 1030 | QFileInfo fullPathInfo(QFile::encodeName(fullPath)); |
1032 | if (fullPathInfo.isReadable() || !fullPathInfo.isDir()) | 1031 | if (fullPathInfo.isReadable() || !fullPathInfo.isDir()) |
1033 | 1032 | ||
1034 | 1033 | ||
1035 | { | 1034 | { |
1036 | if(!create) { | 1035 | if(!create) { |
1037 | #ifndef NDEBUG | 1036 | #ifndef NDEBUG |
1038 | qDebug("save location %s doesn't exist", fullPath.latin1()); | 1037 | qDebug("save location %s doesn't exist", fullPath.latin1()); |
1039 | #endif | 1038 | #endif |
1040 | return fullPath; | 1039 | return fullPath; |
1041 | } | 1040 | } |
1042 | if(!makeDir(fullPath, 0700)) { | 1041 | if(!makeDir(fullPath, 0700)) { |
1043 | qWarning("failed to create %s", fullPath.latin1()); | 1042 | qWarning("failed to create %s", fullPath.latin1()); |
1044 | return fullPath; | 1043 | return fullPath; |
1045 | } | 1044 | } |
1046 | dircache.remove(type); | 1045 | dircache.remove(type); |
1047 | } | 1046 | } |
1048 | return fullPath; | 1047 | return fullPath; |
1049 | } | 1048 | } |
1050 | 1049 | ||
1051 | QString KStandardDirs::relativeLocation(const char *type, const QString &absPath) | 1050 | QString KStandardDirs::relativeLocation(const char *type, const QString &absPath) |
1052 | { | 1051 | { |
1053 | QString fullPath = absPath; | 1052 | QString fullPath = absPath; |
1054 | int i = absPath.findRev('/'); | 1053 | int i = absPath.findRev('/'); |
1055 | if (i != -1) | 1054 | if (i != -1) |
1056 | { | 1055 | { |
1057 | fullPath = realPath(absPath.left(i+1))+absPath.mid(i+1); // Normalize | 1056 | fullPath = realPath(absPath.left(i+1))+absPath.mid(i+1); // Normalize |
1058 | } | 1057 | } |
1059 | 1058 | ||
1060 | QStringList candidates = resourceDirs(type); | 1059 | QStringList candidates = resourceDirs(type); |
1061 | 1060 | ||
1062 | for (QStringList::ConstIterator it = candidates.begin(); | 1061 | for (QStringList::ConstIterator it = candidates.begin(); |
1063 | it != candidates.end(); it++) | 1062 | it != candidates.end(); it++) |
1064 | if (fullPath.startsWith(*it)) | 1063 | if (fullPath.startsWith(*it)) |
1065 | { | 1064 | { |
1066 | return fullPath.mid((*it).length()); | 1065 | return fullPath.mid((*it).length()); |
1067 | } | 1066 | } |
1068 | 1067 | ||
1069 | return absPath; | 1068 | return absPath; |
1070 | } | 1069 | } |
1071 | 1070 | ||
1072 | 1071 | ||
1073 | bool KStandardDirs::makeDir(const QString& dir2, int mode) | 1072 | bool KStandardDirs::makeDir(const QString& dir2, int mode) |
1074 | { | 1073 | { |
1075 | QString dir = QDir::convertSeparators( dir2 ); | 1074 | QString dir = QDir::convertSeparators( dir2 ); |
1076 | #if 0 | 1075 | #if 0 |
1077 | //LR | 1076 | //LR |
1078 | 1077 | ||
1079 | // we want an absolute path | 1078 | // we want an absolute path |
1080 | if (dir.at(0) != '/') | 1079 | if (dir.at(0) != '/') |
1081 | return false; | 1080 | return false; |
1082 | 1081 | ||
1083 | QString target = dir; | 1082 | QString target = dir; |
1084 | uint len = target.length(); | 1083 | uint len = target.length(); |
1085 | 1084 | ||
1086 | // append trailing slash if missing | 1085 | // append trailing slash if missing |
1087 | if (dir.at(len - 1) != '/') | 1086 | if (dir.at(len - 1) != '/') |
1088 | target += '/'; | 1087 | target += '/'; |
1089 | 1088 | ||
1090 | QString base(""); | 1089 | QString base(""); |
1091 | uint i = 1; | 1090 | uint i = 1; |
1092 | 1091 | ||
1093 | while( i < len ) | 1092 | while( i < len ) |
1094 | { | 1093 | { |
1095 | //US struct stat st; | 1094 | //US struct stat st; |
1096 | int pos = target.find('/', i); | 1095 | int pos = target.find('/', i); |
1097 | base += target.mid(i - 1, pos - i + 1); | 1096 | base += target.mid(i - 1, pos - i + 1); |
1098 | QCString baseEncoded = QFile::encodeName(base); | 1097 | QCString baseEncoded = QFile::encodeName(base); |
1099 | // bail out if we encountered a problem | 1098 | // bail out if we encountered a problem |
1100 | //US if (stat(baseEncoded, &st) != 0) | 1099 | //US if (stat(baseEncoded, &st) != 0) |
1101 | QFileInfo baseEncodedInfo(baseEncoded); | 1100 | QFileInfo baseEncodedInfo(baseEncoded); |
1102 | if (!baseEncodedInfo.exists()) | 1101 | if (!baseEncodedInfo.exists()) |
1103 | { | 1102 | { |
1104 | // Directory does not exist.... | 1103 | // Directory does not exist.... |
1105 | // Or maybe a dangling symlink ? | 1104 | // Or maybe a dangling symlink ? |
1106 | //US if (lstat(baseEncoded, &st) == 0) | 1105 | //US if (lstat(baseEncoded, &st) == 0) |
1107 | if (baseEncodedInfo.isSymLink()) { | 1106 | if (baseEncodedInfo.isSymLink()) { |
1108 | //US (void)unlink(baseEncoded); // try removing | 1107 | //US (void)unlink(baseEncoded); // try removing |
1109 | QFile(baseEncoded).remove(); | 1108 | QFile(baseEncoded).remove(); |
1110 | } | 1109 | } |
1111 | 1110 | ||
1112 | //US if ( mkdir(baseEncoded, (mode_t) mode) != 0) | 1111 | //US if ( mkdir(baseEncoded, (mode_t) mode) != 0) |
1113 | QDir dirObj; | 1112 | QDir dirObj; |
1114 | if ( dirObj.mkdir(baseEncoded) != true ) | 1113 | if ( dirObj.mkdir(baseEncoded) != true ) |
1115 | { | 1114 | { |
1116 | //US perror("trying to create local folder"); | 1115 | //US perror("trying to create local folder"); |
1117 | return false; // Couldn't create it :-( | 1116 | return false; // Couldn't create it :-( |
1118 | } | 1117 | } |
1119 | } | 1118 | } |
1120 | i = pos + 1; | 1119 | i = pos + 1; |
1121 | } | 1120 | } |
1122 | return true; | 1121 | return true; |
1123 | #endif | 1122 | #endif |
1124 | 1123 | ||
1125 | // ******************************************** | 1124 | // ******************************************** |
1126 | // new code for WIN32 | 1125 | // new code for WIN32 |
1127 | QDir dirObj; | 1126 | QDir dirObj; |
1128 | 1127 | ||
1129 | 1128 | ||
1130 | // we want an absolute path | 1129 | // we want an absolute path |
1131 | #ifndef _WIN32_ | 1130 | #ifndef _WIN32_ |
1132 | if (dir.at(0) != '/') | 1131 | if (dir.at(0) != '/') |
1133 | return false; | 1132 | return false; |
1134 | #endif | 1133 | #endif |
1135 | 1134 | ||
1136 | QString target = dir; | 1135 | QString target = dir; |
1137 | uint len = target.length(); | 1136 | uint len = target.length(); |
1138 | #ifndef _WIN32_ | 1137 | #ifndef _WIN32_ |
1139 | // append trailing slash if missing | 1138 | // append trailing slash if missing |
1140 | if (dir.at(len - 1) != '/') | 1139 | if (dir.at(len - 1) != '/') |
1141 | target += '/'; | 1140 | target += '/'; |
1142 | #endif | 1141 | #endif |
1143 | 1142 | ||
1144 | QString base(""); | 1143 | QString base(""); |
1145 | uint i = 1; | 1144 | uint i = 1; |
1146 | 1145 | ||
1147 | while( i < len ) | 1146 | while( i < len ) |
1148 | { | 1147 | { |
1149 | //US struct stat st; | 1148 | //US struct stat st; |
1150 | #ifndef _WIN32_ | 1149 | #ifndef _WIN32_ |
1151 | int pos = target.find('/', i); | 1150 | int pos = target.find('/', i); |
1152 | #else | 1151 | #else |
1153 | int pos = target.find('\\', i); | 1152 | int pos = target.find('\\', i); |
1154 | #endif | 1153 | #endif |
1155 | if ( pos < 0 ) | 1154 | if ( pos < 0 ) |
1156 | return true; | 1155 | return true; |
1157 | base += target.mid(i - 1, pos - i + 1); | 1156 | base += target.mid(i - 1, pos - i + 1); |
1158 | //QMessageBox::information( 0,"cap111", base, 1 ); | 1157 | //QMessageBox::information( 0,"cap111", base, 1 ); |
1159 | /*US | 1158 | /*US |
1160 | QCString baseEncoded = QFile::encodeName(base); | 1159 | QCString baseEncoded = QFile::encodeName(base); |
1161 | // bail out if we encountered a problem | 1160 | // bail out if we encountered a problem |
1162 | if (stat(baseEncoded, &st) != 0) | 1161 | if (stat(baseEncoded, &st) != 0) |
1163 | { | 1162 | { |
1164 | // Directory does not exist.... | 1163 | // Directory does not exist.... |
1165 | // Or maybe a dangling symlink ? | 1164 | // Or maybe a dangling symlink ? |
1166 | if (lstat(baseEncoded, &st) == 0) | 1165 | if (lstat(baseEncoded, &st) == 0) |
1167 | (void)unlink(baseEncoded); // try removing | 1166 | (void)unlink(baseEncoded); // try removing |
1168 | 1167 | ||
1169 | 1168 | ||
1170 | if ( mkdir(baseEncoded, (mode_t) mode) != 0) { | 1169 | if ( mkdir(baseEncoded, (mode_t) mode) != 0) { |
1171 | perror("trying to create local folder"); | 1170 | perror("trying to create local folder"); |
1172 | return false; // Couldn't create it :-( | 1171 | return false; // Couldn't create it :-( |
1173 | } | 1172 | } |
1174 | } | 1173 | } |
1175 | */ | 1174 | */ |
1176 | 1175 | ||
1177 | if (dirObj.exists(base) == false) | 1176 | if (dirObj.exists(base) == false) |
1178 | { | 1177 | { |
1179 | //qDebug("KStandardDirs::makeDir try to create : %s" , base.latin1()); | 1178 | //qDebug("KStandardDirs::makeDir try to create : %s" , base.latin1()); |
1180 | if (dirObj.mkdir(base) != true) | 1179 | if (dirObj.mkdir(base) != true) |
1181 | { | 1180 | { |
1182 | qDebug("KStandardDirs::makeDir could not create: %s" , base.latin1()); | 1181 | qDebug("KStandardDirs::makeDir could not create: %s" , base.latin1()); |
1183 | return false; | 1182 | return false; |
1184 | } | 1183 | } |
1185 | } | 1184 | } |
1186 | 1185 | ||
1187 | i = pos + 1; | 1186 | i = pos + 1; |
1188 | } | 1187 | } |
1189 | return true; | 1188 | return true; |
1190 | 1189 | ||
1191 | } | 1190 | } |
1192 | 1191 | ||
1193 | static QString readEnvPath(const char *env) | 1192 | static QString readEnvPath(const char *env) |
1194 | { | 1193 | { |
1195 | #ifdef _WIN32_ | 1194 | #ifdef _WIN32_ |
1196 | return ""; | 1195 | return ""; |
1197 | #else | 1196 | #else |
1198 | QCString c_path = getenv(env); | 1197 | QCString c_path = getenv(env); |
1199 | if (c_path.isEmpty()) | 1198 | if (c_path.isEmpty()) |
1200 | return QString::null; | 1199 | return QString::null; |
1201 | return QFile::decodeName(c_path); | 1200 | return QFile::decodeName(c_path); |
1202 | #endif | 1201 | #endif |
1203 | } | 1202 | } |
1204 | 1203 | ||
1205 | void KStandardDirs::addKDEDefaults() | 1204 | void KStandardDirs::addKDEDefaults() |
1206 | { | 1205 | { |
1207 | //qDebug("ERROR: KStandardDirs::addKDEDefaults() called "); | 1206 | //qDebug("ERROR: KStandardDirs::addKDEDefaults() called "); |
1208 | //return; | 1207 | //return; |
1209 | QStringList kdedirList; | 1208 | QStringList kdedirList; |
1210 | 1209 | ||
1211 | // begin KDEDIRS | 1210 | // begin KDEDIRS |
1212 | QString kdedirs = readEnvPath("MICROKDEDIRS"); | 1211 | QString kdedirs = readEnvPath("MICROKDEDIRS"); |
1213 | if (!kdedirs.isEmpty()) | 1212 | if (!kdedirs.isEmpty()) |
1214 | { | 1213 | { |
1215 | tokenize(kdedirList, kdedirs, ":"); | 1214 | tokenize(kdedirList, kdedirs, ":"); |
1216 | } | 1215 | } |
1217 | else | 1216 | else |
1218 | { | 1217 | { |
1219 | QString kdedir = readEnvPath("MICROKDEDIR"); | 1218 | QString kdedir = readEnvPath("MICROKDEDIR"); |
1220 | if (!kdedir.isEmpty()) | 1219 | if (!kdedir.isEmpty()) |
1221 | { | 1220 | { |
1222 | kdedir = KShell::tildeExpand(kdedir); | 1221 | kdedir = KShell::tildeExpand(kdedir); |
1223 | kdedirList.append(kdedir); | 1222 | kdedirList.append(kdedir); |
1224 | } | 1223 | } |
1225 | } | 1224 | } |
1226 | //US kdedirList.append(KDEDIR); | 1225 | //US kdedirList.append(KDEDIR); |
1227 | //US for embedded, add qtopia dir as kdedir | 1226 | //US for embedded, add qtopia dir as kdedir |
1228 | kdedirList.append(QPEApplication::qpeDir()); | 1227 | kdedirList.append(readEnvPath("QPEDIR" )); |
1229 | 1228 | ||
1230 | #ifdef __KDE_EXECPREFIX | 1229 | #ifdef __KDE_EXECPREFIX |
1231 | QString execPrefix(__KDE_EXECPREFIX); | 1230 | QString execPrefix(__KDE_EXECPREFIX); |
1232 | if (execPrefix!="NONE") | 1231 | if (execPrefix!="NONE") |
1233 | kdedirList.append(execPrefix); | 1232 | kdedirList.append(execPrefix); |
1234 | #endif | 1233 | #endif |
1235 | 1234 | ||
1236 | QString localKdeDir; | 1235 | QString localKdeDir; |
1237 | 1236 | ||
1238 | //US if (getuid()) | 1237 | //US if (getuid()) |
1239 | if (true) | 1238 | if (true) |
1240 | { | 1239 | { |
1241 | localKdeDir = readEnvPath("MICROKDEHOME"); | 1240 | localKdeDir = readEnvPath("MICROKDEHOME"); |
1242 | if (!localKdeDir.isEmpty()) | 1241 | if (!localKdeDir.isEmpty()) |
1243 | { | 1242 | { |
1244 | if (localKdeDir.at(localKdeDir.length()-1) != '/') | 1243 | if (localKdeDir.at(localKdeDir.length()-1) != '/') |
1245 | localKdeDir += '/'; | 1244 | localKdeDir += '/'; |
1246 | } | 1245 | } |
1247 | else | 1246 | else |
1248 | { | 1247 | { |
1249 | localKdeDir = QDir::homeDirPath() + "/kdepim/"; | 1248 | localKdeDir = QDir::homeDirPath() + "/kdepim/"; |
1250 | } | 1249 | } |
1251 | } | 1250 | } |
1252 | else | 1251 | else |
1253 | { | 1252 | { |
1254 | // We treat root different to prevent root messing up the | 1253 | // We treat root different to prevent root messing up the |
1255 | // file permissions in the users home directory. | 1254 | // file permissions in the users home directory. |
1256 | localKdeDir = readEnvPath("MICROKDEROOTHOME"); | 1255 | localKdeDir = readEnvPath("MICROKDEROOTHOME"); |
1257 | if (!localKdeDir.isEmpty()) | 1256 | if (!localKdeDir.isEmpty()) |
1258 | { | 1257 | { |
1259 | if (localKdeDir.at(localKdeDir.length()-1) != '/') | 1258 | if (localKdeDir.at(localKdeDir.length()-1) != '/') |
1260 | localKdeDir += '/'; | 1259 | localKdeDir += '/'; |
1261 | } | 1260 | } |
1262 | else | 1261 | else |
1263 | { | 1262 | { |
1264 | //US struct passwd *pw = getpwuid(0); | 1263 | //US struct passwd *pw = getpwuid(0); |
1265 | //US localKdeDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.microkde/"; | 1264 | //US localKdeDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.microkde/"; |
1266 | qDebug("KStandardDirs::addKDEDefaults: 1 has to be fixed"); | 1265 | qDebug("KStandardDirs::addKDEDefaults: 1 has to be fixed"); |
1267 | } | 1266 | } |
1268 | 1267 | ||
1269 | } | 1268 | } |
1270 | 1269 | ||
1271 | //US localKdeDir = appDir(); | 1270 | //US localKdeDir = appDir(); |
1272 | 1271 | ||
1273 | //US | 1272 | //US |
1274 | // qDebug("KStandardDirs::addKDEDefaults: localKdeDir=%s", localKdeDir.latin1()); | 1273 | // qDebug("KStandardDirs::addKDEDefaults: localKdeDir=%s", localKdeDir.latin1()); |
1275 | if (localKdeDir != "-/") | 1274 | if (localKdeDir != "-/") |
1276 | { | 1275 | { |
1277 | localKdeDir = KShell::tildeExpand(localKdeDir); | 1276 | localKdeDir = KShell::tildeExpand(localKdeDir); |
1278 | addPrefix(localKdeDir); | 1277 | addPrefix(localKdeDir); |
1279 | } | 1278 | } |
1280 | 1279 | ||
1281 | for (QStringList::ConstIterator it = kdedirList.begin(); | 1280 | for (QStringList::ConstIterator it = kdedirList.begin(); |
1282 | it != kdedirList.end(); it++) | 1281 | it != kdedirList.end(); it++) |
1283 | { | 1282 | { |
1284 | QString dir = KShell::tildeExpand(*it); | 1283 | QString dir = KShell::tildeExpand(*it); |
1285 | addPrefix(dir); | 1284 | addPrefix(dir); |
1286 | } | 1285 | } |
1287 | // end KDEDIRS | 1286 | // end KDEDIRS |
1288 | 1287 | ||
1289 | // begin XDG_CONFIG_XXX | 1288 | // begin XDG_CONFIG_XXX |
1290 | QStringList xdgdirList; | 1289 | QStringList xdgdirList; |
1291 | QString xdgdirs = readEnvPath("XDG_CONFIG_DIRS"); | 1290 | QString xdgdirs = readEnvPath("XDG_CONFIG_DIRS"); |
1292 | if (!xdgdirs.isEmpty()) | 1291 | if (!xdgdirs.isEmpty()) |
1293 | { | 1292 | { |
1294 | tokenize(xdgdirList, xdgdirs, ":"); | 1293 | tokenize(xdgdirList, xdgdirs, ":"); |
1295 | } | 1294 | } |
1296 | else | 1295 | else |
1297 | { | 1296 | { |
1298 | xdgdirList.clear(); | 1297 | xdgdirList.clear(); |
1299 | xdgdirList.append("/etc/xdg"); | 1298 | xdgdirList.append("/etc/xdg"); |
1300 | } | 1299 | } |
1301 | 1300 | ||
1302 | QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); | 1301 | QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); |
1303 | if (!localXdgDir.isEmpty()) | 1302 | if (!localXdgDir.isEmpty()) |
1304 | { | 1303 | { |
1305 | if (localXdgDir.at(localXdgDir.length()-1) != '/') | 1304 | if (localXdgDir.at(localXdgDir.length()-1) != '/') |
1306 | localXdgDir += '/'; | 1305 | localXdgDir += '/'; |
1307 | } | 1306 | } |
1308 | else | 1307 | else |
1309 | { | 1308 | { |
1310 | //US if (getuid()) | 1309 | //US if (getuid()) |
1311 | if (true) | 1310 | if (true) |
1312 | { | 1311 | { |
1313 | localXdgDir = QDir::homeDirPath() + "/.config/"; | 1312 | localXdgDir = QDir::homeDirPath() + "/.config/"; |
1314 | } | 1313 | } |
1315 | else | 1314 | else |
1316 | { | 1315 | { |
1317 | //US struct passwd *pw = getpwuid(0); | 1316 | //US struct passwd *pw = getpwuid(0); |
1318 | //US localXdgDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.config/"; | 1317 | //US localXdgDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.config/"; |
1319 | qDebug("KStandardDirs::addKDEDefaults: 2 has to be fixed"); | 1318 | qDebug("KStandardDirs::addKDEDefaults: 2 has to be fixed"); |
1320 | } | 1319 | } |
1321 | } | 1320 | } |
1322 | 1321 | ||
1323 | localXdgDir = KShell::tildeExpand(localXdgDir); | 1322 | localXdgDir = KShell::tildeExpand(localXdgDir); |
1324 | addXdgConfigPrefix(localXdgDir); | 1323 | addXdgConfigPrefix(localXdgDir); |
1325 | 1324 | ||
1326 | for (QStringList::ConstIterator it = xdgdirList.begin(); | 1325 | for (QStringList::ConstIterator it = xdgdirList.begin(); |
1327 | it != xdgdirList.end(); it++) | 1326 | it != xdgdirList.end(); it++) |
1328 | { | 1327 | { |
1329 | QString dir = KShell::tildeExpand(*it); | 1328 | QString dir = KShell::tildeExpand(*it); |
1330 | addXdgConfigPrefix(dir); | 1329 | addXdgConfigPrefix(dir); |
1331 | } | 1330 | } |
1332 | // end XDG_CONFIG_XXX | 1331 | // end XDG_CONFIG_XXX |
1333 | 1332 | ||
1334 | // begin XDG_DATA_XXX | 1333 | // begin XDG_DATA_XXX |
1335 | xdgdirs = readEnvPath("XDG_DATA_DIRS"); | 1334 | xdgdirs = readEnvPath("XDG_DATA_DIRS"); |
1336 | if (!xdgdirs.isEmpty()) | 1335 | if (!xdgdirs.isEmpty()) |
1337 | { | 1336 | { |
1338 | tokenize(xdgdirList, xdgdirs, ":"); | 1337 | tokenize(xdgdirList, xdgdirs, ":"); |
1339 | } | 1338 | } |
1340 | else | 1339 | else |
1341 | { | 1340 | { |
1342 | xdgdirList.clear(); | 1341 | xdgdirList.clear(); |
1343 | for (QStringList::ConstIterator it = kdedirList.begin(); | 1342 | for (QStringList::ConstIterator it = kdedirList.begin(); |
1344 | it != kdedirList.end(); it++) | 1343 | it != kdedirList.end(); it++) |
1345 | { | 1344 | { |
1346 | QString dir = *it; | 1345 | QString dir = *it; |
1347 | if (dir.at(dir.length()-1) != '/') | 1346 | if (dir.at(dir.length()-1) != '/') |
1348 | dir += '/'; | 1347 | dir += '/'; |
1349 | xdgdirList.append(dir+"share/"); | 1348 | xdgdirList.append(dir+"share/"); |
1350 | } | 1349 | } |
1351 | 1350 | ||
1352 | xdgdirList.append("/usr/local/share/"); | 1351 | xdgdirList.append("/usr/local/share/"); |
1353 | xdgdirList.append("/usr/share/"); | 1352 | xdgdirList.append("/usr/share/"); |
1354 | } | 1353 | } |
1355 | 1354 | ||
1356 | localXdgDir = readEnvPath("XDG_DATA_HOME"); | 1355 | localXdgDir = readEnvPath("XDG_DATA_HOME"); |
1357 | if (!localXdgDir.isEmpty()) | 1356 | if (!localXdgDir.isEmpty()) |
1358 | { | 1357 | { |
1359 | if (localXdgDir.at(localXdgDir.length()-1) != '/') | 1358 | if (localXdgDir.at(localXdgDir.length()-1) != '/') |
1360 | localXdgDir += '/'; | 1359 | localXdgDir += '/'; |
1361 | } | 1360 | } |
1362 | else | 1361 | else |
1363 | { | 1362 | { |
1364 | //US if (getuid()) | 1363 | //US if (getuid()) |
1365 | if (true) | 1364 | if (true) |
1366 | { | 1365 | { |
1367 | localXdgDir = QDir::homeDirPath() + "/.local/share/"; | 1366 | localXdgDir = QDir::homeDirPath() + "/.local/share/"; |
1368 | } | 1367 | } |
1369 | else | 1368 | else |
1370 | { | 1369 | { |
1371 | //US struct passwd *pw = getpwuid(0); | 1370 | //US struct passwd *pw = getpwuid(0); |
1372 | //US localXdgDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.local/share/"; | 1371 | //US localXdgDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.local/share/"; |
1373 | qDebug("KStandardDirs::addKDEDefaults: 3 has to be fixed"); | 1372 | qDebug("KStandardDirs::addKDEDefaults: 3 has to be fixed"); |
1374 | } | 1373 | } |
1375 | } | 1374 | } |
1376 | 1375 | ||
1377 | localXdgDir = KShell::tildeExpand(localXdgDir); | 1376 | localXdgDir = KShell::tildeExpand(localXdgDir); |
1378 | addXdgDataPrefix(localXdgDir); | 1377 | addXdgDataPrefix(localXdgDir); |
1379 | 1378 | ||
1380 | for (QStringList::ConstIterator it = xdgdirList.begin(); | 1379 | for (QStringList::ConstIterator it = xdgdirList.begin(); |
1381 | it != xdgdirList.end(); it++) | 1380 | it != xdgdirList.end(); it++) |
1382 | { | 1381 | { |
1383 | QString dir = KShell::tildeExpand(*it); | 1382 | QString dir = KShell::tildeExpand(*it); |
1384 | 1383 | ||
1385 | addXdgDataPrefix(dir); | 1384 | addXdgDataPrefix(dir); |
1386 | } | 1385 | } |
1387 | // end XDG_DATA_XXX | 1386 | // end XDG_DATA_XXX |
1388 | 1387 | ||
1389 | 1388 | ||
1390 | uint index = 0; | 1389 | uint index = 0; |
1391 | while (types[index] != 0) { | 1390 | while (types[index] != 0) { |
1392 | addResourceType(types[index], kde_default(types[index])); | 1391 | addResourceType(types[index], kde_default(types[index])); |
1393 | index++; | 1392 | index++; |
1394 | } | 1393 | } |
1395 | 1394 | ||
1396 | addResourceDir("home", QDir::homeDirPath()); | 1395 | addResourceDir("home", QDir::homeDirPath()); |
1397 | } | 1396 | } |
1398 | 1397 | ||
1399 | void KStandardDirs::checkConfig() const | 1398 | void KStandardDirs::checkConfig() const |
1400 | { | 1399 | { |
1401 | /*US | 1400 | /*US |
1402 | if (!addedCustoms && KGlobal::_instance && KGlobal::_instance->_config) | 1401 | if (!addedCustoms && KGlobal::_instance && KGlobal::_instance->_config) |
1403 | const_cast<KStandardDirs*>(this)->addCustomized(KGlobal::_instance->_config); | 1402 | const_cast<KStandardDirs*>(this)->addCustomized(KGlobal::_instance->_config); |
1404 | */ | 1403 | */ |
1405 | if (!addedCustoms && KGlobal::config()) | 1404 | if (!addedCustoms && KGlobal::config()) |
1406 | const_cast<KStandardDirs*>(this)->addCustomized(KGlobal::config()); | 1405 | const_cast<KStandardDirs*>(this)->addCustomized(KGlobal::config()); |
1407 | } | 1406 | } |
1408 | 1407 | ||
1409 | bool KStandardDirs::addCustomized(KConfig *config) | 1408 | bool KStandardDirs::addCustomized(KConfig *config) |
1410 | { | 1409 | { |
1411 | if (addedCustoms) // there are already customized entries | 1410 | if (addedCustoms) // there are already customized entries |
1412 | return false; // we just quite and hope they are the right ones | 1411 | return false; // we just quite and hope they are the right ones |
1413 | 1412 | ||
1414 | // save the numbers of config directories. If this changes, | 1413 | // save the numbers of config directories. If this changes, |
1415 | // we will return true to give KConfig a chance to reparse | 1414 | // we will return true to give KConfig a chance to reparse |
1416 | uint configdirs = resourceDirs("config").count(); | 1415 | uint configdirs = resourceDirs("config").count(); |
1417 | 1416 | ||
1418 | // reading the prefixes in | 1417 | // reading the prefixes in |
1419 | QString oldGroup = config->group(); | 1418 | QString oldGroup = config->group(); |
1420 | config->setGroup("Directories"); | 1419 | config->setGroup("Directories"); |
1421 | 1420 | ||
1422 | QStringList list; | 1421 | QStringList list; |
1423 | QStringList::ConstIterator it; | 1422 | QStringList::ConstIterator it; |
1424 | list = config->readListEntry("prefixes"); | 1423 | list = config->readListEntry("prefixes"); |
1425 | for (it = list.begin(); it != list.end(); it++) | 1424 | for (it = list.begin(); it != list.end(); it++) |
1426 | addPrefix(*it); | 1425 | addPrefix(*it); |
1427 | 1426 | ||
1428 | // iterating over all entries in the group Directories | 1427 | // iterating over all entries in the group Directories |
1429 | // to find entries that start with dir_$type | 1428 | // to find entries that start with dir_$type |
1430 | /*US | 1429 | /*US |
1431 | QMap<QString, QString> entries = config->entryMap("Directories"); | 1430 | QMap<QString, QString> entries = config->entryMap("Directories"); |
1432 | 1431 | ||
1433 | QMap<QString, QString>::ConstIterator it2; | 1432 | QMap<QString, QString>::ConstIterator it2; |
1434 | for (it2 = entries.begin(); it2 != entries.end(); it2++) | 1433 | for (it2 = entries.begin(); it2 != entries.end(); it2++) |
1435 | { | 1434 | { |
1436 | QString key = it2.key(); | 1435 | QString key = it2.key(); |
1437 | if (key.left(4) == "dir_") { | 1436 | if (key.left(4) == "dir_") { |
1438 | // generate directory list, there may be more than 1. | 1437 | // generate directory list, there may be more than 1. |
1439 | QStringList dirs = QStringList::split(',', *it2); | 1438 | QStringList dirs = QStringList::split(',', *it2); |
1440 | QStringList::Iterator sIt(dirs.begin()); | 1439 | QStringList::Iterator sIt(dirs.begin()); |
1441 | QString resType = key.mid(4, key.length()); | 1440 | QString resType = key.mid(4, key.length()); |
1442 | for (; sIt != dirs.end(); ++sIt) { | 1441 | for (; sIt != dirs.end(); ++sIt) { |
1443 | addResourceDir(resType.latin1(), *sIt); | 1442 | addResourceDir(resType.latin1(), *sIt); |
1444 | } | 1443 | } |
1445 | } | 1444 | } |
1446 | } | 1445 | } |
1447 | 1446 | ||
1448 | // Process KIOSK restrictions. | 1447 | // Process KIOSK restrictions. |
1449 | config->setGroup("KDE Resource Restrictions"); | 1448 | config->setGroup("KDE Resource Restrictions"); |
1450 | entries = config->entryMap("KDE Resource Restrictions"); | 1449 | entries = config->entryMap("KDE Resource Restrictions"); |
1451 | for (it2 = entries.begin(); it2 != entries.end(); it2++) | 1450 | for (it2 = entries.begin(); it2 != entries.end(); it2++) |
1452 | { | 1451 | { |
1453 | QString key = it2.key(); | 1452 | QString key = it2.key(); |
1454 | if (!config->readBoolEntry(key, true)) | 1453 | if (!config->readBoolEntry(key, true)) |
1455 | { | 1454 | { |
1456 | d->restrictionsActive = true; | 1455 | d->restrictionsActive = true; |
1457 | d->restrictions.insert(key.latin1(), &d->restrictionsActive); // Anything will do | 1456 | d->restrictions.insert(key.latin1(), &d->restrictionsActive); // Anything will do |
1458 | dircache.remove(key.latin1()); | 1457 | dircache.remove(key.latin1()); |
1459 | } | 1458 | } |
1460 | } | 1459 | } |
1461 | */ | 1460 | */ |
1462 | // save it for future calls - that will return | 1461 | // save it for future calls - that will return |
1463 | addedCustoms = true; | 1462 | addedCustoms = true; |
1464 | config->setGroup(oldGroup); | 1463 | config->setGroup(oldGroup); |
1465 | 1464 | ||
1466 | // return true if the number of config dirs changed | 1465 | // return true if the number of config dirs changed |
1467 | return (resourceDirs("config").count() != configdirs); | 1466 | return (resourceDirs("config").count() != configdirs); |
1468 | } | 1467 | } |
1469 | 1468 | ||
1470 | QString KStandardDirs::localkdedir() const | 1469 | QString KStandardDirs::localkdedir() const |
1471 | { | 1470 | { |
1472 | // Return the prefix to use for saving | 1471 | // Return the prefix to use for saving |
1473 | return prefixes.first(); | 1472 | return prefixes.first(); |
1474 | } | 1473 | } |
1475 | 1474 | ||
1476 | QString KStandardDirs::localxdgdatadir() const | 1475 | QString KStandardDirs::localxdgdatadir() const |
1477 | { | 1476 | { |
1478 | // Return the prefix to use for saving | 1477 | // Return the prefix to use for saving |
1479 | return d->xdgdata_prefixes.first(); | 1478 | return d->xdgdata_prefixes.first(); |
1480 | } | 1479 | } |
1481 | 1480 | ||
1482 | QString KStandardDirs::localxdgconfdir() const | 1481 | QString KStandardDirs::localxdgconfdir() const |
1483 | { | 1482 | { |
1484 | // Return the prefix to use for saving | 1483 | // Return the prefix to use for saving |
1485 | return d->xdgconf_prefixes.first(); | 1484 | return d->xdgconf_prefixes.first(); |
1486 | } | 1485 | } |
1487 | 1486 | ||
1488 | void KStandardDirs::setAppDir( const QString &appDir ) | 1487 | void KStandardDirs::setAppDir( const QString &appDir ) |
1489 | { | 1488 | { |
1490 | mAppDir = appDir; | 1489 | mAppDir = appDir; |
1491 | 1490 | ||
1492 | if ( mAppDir.right( 1 ) != "/" ) | 1491 | if ( mAppDir.right( 1 ) != "/" ) |
1493 | mAppDir += "/"; | 1492 | mAppDir += "/"; |
1494 | } | 1493 | } |
1495 | 1494 | ||
1496 | QString KStandardDirs::appDir() | 1495 | QString KStandardDirs::appDir() |
1497 | { | 1496 | { |
1498 | return mAppDir; | 1497 | return mAppDir; |
1499 | } | 1498 | } |
1500 | 1499 | ||
1501 | // just to make code more readable without macros | 1500 | // just to make code more readable without macros |
1502 | QString locate( const char *type, | 1501 | QString locate( const char *type, |
1503 | const QString& filename/*US , const KInstance* inst*/ ) | 1502 | const QString& filename/*US , const KInstance* inst*/ ) |
1504 | { | 1503 | { |
1505 | //US return inst->dirs()->findResource(type, filename); | 1504 | //US return inst->dirs()->findResource(type, filename); |
1506 | return KGlobal::dirs()->findResource(type, filename); | 1505 | return KGlobal::dirs()->findResource(type, filename); |
1507 | } | 1506 | } |
1508 | 1507 | ||
1509 | QString locateLocal( const char *type, | 1508 | QString locateLocal( const char *type, |
1510 | const QString& filename/*US , const KInstance* inst*/ ) | 1509 | const QString& filename/*US , const KInstance* inst*/ ) |
1511 | { | 1510 | { |
1512 | 1511 | ||
1513 | QString path = locateLocal(type, filename, true /*US, inst*/); | 1512 | QString path = locateLocal(type, filename, true /*US, inst*/); |
1514 | 1513 | ||
1515 | 1514 | ||
1516 | /* | 1515 | /* |
1517 | static int ccc = 0; | 1516 | static int ccc = 0; |
1518 | ++ccc; | 1517 | ++ccc; |
1519 | if ( ccc > 13 ) | 1518 | if ( ccc > 13 ) |
1520 | abort(); | 1519 | abort(); |
1521 | */ | 1520 | */ |
1522 | qDebug("locatelocal: %s" , path.latin1()); | 1521 | qDebug("locatelocal: %s" , path.latin1()); |
1523 | return path; | 1522 | return path; |
1524 | 1523 | ||
1525 | /*US why do we put all files into one directory. It is quit complicated. | 1524 | /*US why do we put all files into one directory. It is quit complicated. |
1526 | why not staying with the original directorystructure ? | 1525 | why not staying with the original directorystructure ? |
1527 | 1526 | ||
1528 | 1527 | ||
1529 | QString escapedFilename = filename; | 1528 | QString escapedFilename = filename; |
1530 | escapedFilename.replace( QRegExp( "/" ), "_" ); | 1529 | escapedFilename.replace( QRegExp( "/" ), "_" ); |
1531 | 1530 | ||
1532 | QString path = KStandardDirs::appDir() + type + "_" + escapedFilename; | 1531 | QString path = KStandardDirs::appDir() + type + "_" + escapedFilename; |
1533 | 1532 | ||
1534 | kdDebug() << "locate: '" << path << "'" << endl; | 1533 | kdDebug() << "locate: '" << path << "'" << endl; |
1535 | qDebug("locate: %s" , path.latin1()); | 1534 | qDebug("locate: %s" , path.latin1()); |
1536 | return path; | 1535 | return path; |
1537 | */ | 1536 | */ |
1538 | //US so my proposal is this: | 1537 | //US so my proposal is this: |
1539 | 1538 | ||
1540 | // QString escapedFilename = filename; | 1539 | // QString escapedFilename = filename; |
1541 | // escapedFilename.replace( QRegExp( "/" ), "_" ); | 1540 | // escapedFilename.replace( QRegExp( "/" ), "_" ); |
1542 | 1541 | ||
1543 | #if 0 | 1542 | #if 0 |
1544 | #ifdef _WIN32_ | 1543 | #ifdef _WIN32_ |
1545 | QString path = QDir::convertSeparators(KStandardDirs::appDir() + type + "/" + filename); | 1544 | QString path = QDir::convertSeparators(KStandardDirs::appDir() + type + "/" + filename); |
1546 | #else | 1545 | #else |
1547 | QString path = KStandardDirs::appDir() + type + "/" + filename; | 1546 | QString path = KStandardDirs::appDir() + type + "/" + filename; |
1548 | #endif | 1547 | #endif |
1549 | 1548 | ||
1550 | //US Create the containing dir if needed | 1549 | //US Create the containing dir if needed |
1551 | QFileInfo fi ( path ); | 1550 | QFileInfo fi ( path ); |
1552 | 1551 | ||
1553 | // QString dir=pathurl.directory(); | 1552 | // QString dir=pathurl.directory(); |
1554 | //QMessageBox::information( 0,"path", path, 1 ); | 1553 | //QMessageBox::information( 0,"path", path, 1 ); |
1555 | 1554 | ||
1556 | #ifdef _WIN32_ | 1555 | #ifdef _WIN32_ |
1557 | KStandardDirs::makeDir(path); | 1556 | KStandardDirs::makeDir(path); |
1558 | #else | 1557 | #else |
1559 | KStandardDirs::makeDir(fi.dirPath( true )); | 1558 | KStandardDirs::makeDir(fi.dirPath( true )); |
1560 | #endif | 1559 | #endif |
1561 | 1560 | ||
1562 | qDebug("locate22: %s" , path.latin1()); | 1561 | qDebug("locate22: %s" , path.latin1()); |
1563 | return path; | 1562 | return path; |
1564 | 1563 | ||
1565 | #endif | 1564 | #endif |
1566 | 1565 | ||
1567 | } | 1566 | } |
1568 | 1567 | ||
1569 | QString locateLocal( const char *type, | 1568 | QString locateLocal( const char *type, |
1570 | const QString& filename, bool createDir/*US , const KInstance* inst*/ ) | 1569 | const QString& filename, bool createDir/*US , const KInstance* inst*/ ) |
1571 | { | 1570 | { |
1572 | // try to find slashes. If there are some, we have to | 1571 | // try to find slashes. If there are some, we have to |
1573 | // create the subdir first | 1572 | // create the subdir first |
1574 | int slash = filename.findRev('/')+1; | 1573 | int slash = filename.findRev('/')+1; |
1575 | if (!slash) // only one filename | 1574 | if (!slash) // only one filename |
1576 | //USreturn inst->dirs()->saveLocation(type, QString::null, createDir) + filename; | 1575 | //USreturn inst->dirs()->saveLocation(type, QString::null, createDir) + filename; |
1577 | return KGlobal::dirs()->saveLocation(type, QString::null, createDir) + filename; | 1576 | return KGlobal::dirs()->saveLocation(type, QString::null, createDir) + filename; |
1578 | 1577 | ||
1579 | // split path from filename | 1578 | // split path from filename |
1580 | QString dir = filename.left(slash); | 1579 | QString dir = filename.left(slash); |
1581 | QString file = filename.mid(slash); | 1580 | QString file = filename.mid(slash); |
1582 | //US return inst->dirs()->saveLocation(type, dir, createDir) + file; | 1581 | //US return inst->dirs()->saveLocation(type, dir, createDir) + file; |
1583 | return KGlobal::dirs()->saveLocation(type, dir, createDir) + file; | 1582 | return KGlobal::dirs()->saveLocation(type, dir, createDir) + file; |
1584 | 1583 | ||
1585 | // *************************************************************** | 1584 | // *************************************************************** |
1586 | #if 0 | 1585 | #if 0 |
1587 | 1586 | ||
1588 | /*US why do we put all files into one directory. It is quit complicated. | 1587 | /*US why do we put all files into one directory. It is quit complicated. |
1589 | why not staying with the original directorystructure ? | 1588 | why not staying with the original directorystructure ? |
1590 | 1589 | ||
1591 | 1590 | ||
1592 | QString escapedFilename = filename; | 1591 | QString escapedFilename = filename; |
1593 | escapedFilename.replace( QRegExp( "/" ), "_" ); | 1592 | escapedFilename.replace( QRegExp( "/" ), "_" ); |
1594 | 1593 | ||
1595 | QString path = KStandardDirs::appDir() + type + "_" + escapedFilename; | 1594 | QString path = KStandardDirs::appDir() + type + "_" + escapedFilename; |
1596 | 1595 | ||
1597 | kdDebug() << "locate: '" << path << "'" << endl; | 1596 | kdDebug() << "locate: '" << path << "'" << endl; |
1598 | qDebug("locate: %s" , path.latin1()); | 1597 | qDebug("locate: %s" , path.latin1()); |
1599 | return path; | 1598 | return path; |
1600 | */ | 1599 | */ |
1601 | //US so my proposal is this: | 1600 | //US so my proposal is this: |
1602 | 1601 | ||
1603 | // QString escapedFilename = filename; | 1602 | // QString escapedFilename = filename; |
1604 | // escapedFilename.replace( QRegExp( "/" ), "_" ); | 1603 | // escapedFilename.replace( QRegExp( "/" ), "_" ); |
1605 | 1604 | ||
1606 | #ifdef _WIN32_ | 1605 | #ifdef _WIN32_ |
1607 | QString path = QDir::convertSeparators(KStandardDirs::appDir() + type + "/" + filename); | 1606 | QString path = QDir::convertSeparators(KStandardDirs::appDir() + type + "/" + filename); |
1608 | #else | 1607 | #else |
1609 | QString path = KStandardDirs::appDir() + type + "/" + filename; | 1608 | QString path = KStandardDirs::appDir() + type + "/" + filename; |
1610 | #endif | 1609 | #endif |
1611 | 1610 | ||
1612 | //US Create the containing dir if needed | 1611 | //US Create the containing dir if needed |
1613 | KURL pathurl; | 1612 | KURL pathurl; |
1614 | pathurl.setPath(path); | 1613 | pathurl.setPath(path); |
1615 | QString dir=pathurl.directory(); | 1614 | QString dir=pathurl.directory(); |
1616 | //QMessageBox::information( 0,"path", path, 1 ); | 1615 | //QMessageBox::information( 0,"path", path, 1 ); |
1617 | #ifdef _WIN32_ | 1616 | #ifdef _WIN32_ |
1618 | KStandardDirs::makeDir(path); | 1617 | KStandardDirs::makeDir(path); |
1619 | #else | 1618 | #else |
1620 | KStandardDirs::makeDir(dir); | 1619 | KStandardDirs::makeDir(dir); |
1621 | #endif | 1620 | #endif |
1622 | 1621 | ||
1623 | return path; | 1622 | return path; |
1624 | #endif | 1623 | #endif |
1625 | } | 1624 | } |
diff --git a/microkde/kdeui/ktoolbar.cpp b/microkde/kdeui/ktoolbar.cpp index 92cb8d2..79b0f9d 100644 --- a/microkde/kdeui/ktoolbar.cpp +++ b/microkde/kdeui/ktoolbar.cpp | |||
@@ -259,1537 +259,1537 @@ void KToolBar::init( bool readConfig, bool honorStyle ) | |||
259 | d = new KToolBarPrivate; | 259 | d = new KToolBarPrivate; |
260 | setFullSize( TRUE ); | 260 | setFullSize( TRUE ); |
261 | d->m_honorStyle = honorStyle; | 261 | d->m_honorStyle = honorStyle; |
262 | context = 0; | 262 | context = 0; |
263 | layoutTimer = new QTimer( this ); | 263 | layoutTimer = new QTimer( this ); |
264 | connect( layoutTimer, SIGNAL( timeout() ), | 264 | connect( layoutTimer, SIGNAL( timeout() ), |
265 | this, SLOT( rebuildLayout() ) ); | 265 | this, SLOT( rebuildLayout() ) ); |
266 | connect( &(d->repaintTimer), SIGNAL( timeout() ), | 266 | connect( &(d->repaintTimer), SIGNAL( timeout() ), |
267 | this, SLOT( slotRepaint() ) ); | 267 | this, SLOT( slotRepaint() ) ); |
268 | /*US | 268 | /*US |
269 | if ( kapp ) { // may be null when started inside designer | 269 | if ( kapp ) { // may be null when started inside designer |
270 | connect(kapp, SIGNAL(toolbarAppearanceChanged(int)), this, SLOT(slotAppearanceChanged())); | 270 | connect(kapp, SIGNAL(toolbarAppearanceChanged(int)), this, SLOT(slotAppearanceChanged())); |
271 | // request notification of changes in icon style | 271 | // request notification of changes in icon style |
272 | kapp->addKipcEventMask(KIPC::IconChanged); | 272 | kapp->addKipcEventMask(KIPC::IconChanged); |
273 | connect(kapp, SIGNAL(iconChanged(int)), this, SLOT(slotIconChanged(int))); | 273 | connect(kapp, SIGNAL(iconChanged(int)), this, SLOT(slotIconChanged(int))); |
274 | } | 274 | } |
275 | */ | 275 | */ |
276 | // finally, read in our configurable settings | 276 | // finally, read in our configurable settings |
277 | if ( readConfig ) | 277 | if ( readConfig ) |
278 | slotReadConfig(); | 278 | slotReadConfig(); |
279 | 279 | ||
280 | if ( mainWindow() ) | 280 | if ( mainWindow() ) |
281 | connect( mainWindow(), SIGNAL( toolBarPositionChanged( QToolBar * ) ), | 281 | connect( mainWindow(), SIGNAL( toolBarPositionChanged( QToolBar * ) ), |
282 | this, SLOT( toolBarPosChanged( QToolBar * ) ) ); | 282 | this, SLOT( toolBarPosChanged( QToolBar * ) ) ); |
283 | 283 | ||
284 | // Hack to make sure we recalculate our size when we dock. | 284 | // Hack to make sure we recalculate our size when we dock. |
285 | //US connect( this, SIGNAL(placeChanged(QDockWindow::Place)), SLOT(rebuildLayout()) ); | 285 | //US connect( this, SIGNAL(placeChanged(QDockWindow::Place)), SLOT(rebuildLayout()) ); |
286 | } | 286 | } |
287 | 287 | ||
288 | int KToolBar::insertButton(const QString& icon, int id, bool enabled, | 288 | int KToolBar::insertButton(const QString& icon, int id, bool enabled, |
289 | const QString& text, int index/*US, KInstance *_instance*/ ) | 289 | const QString& text, int index/*US, KInstance *_instance*/ ) |
290 | { | 290 | { |
291 | KToolBarButton *button = new KToolBarButton( icon, id, this, 0, text/*US, _instance*/ ); | 291 | KToolBarButton *button = new KToolBarButton( icon, id, this, 0, text/*US, _instance*/ ); |
292 | 292 | ||
293 | insertWidgetInternal( button, index, id ); | 293 | insertWidgetInternal( button, index, id ); |
294 | button->setEnabled( enabled ); | 294 | button->setEnabled( enabled ); |
295 | doConnections( button ); | 295 | doConnections( button ); |
296 | return index; | 296 | return index; |
297 | } | 297 | } |
298 | 298 | ||
299 | 299 | ||
300 | int KToolBar::insertButton(const QString& icon, int id, const char *signal, | 300 | int KToolBar::insertButton(const QString& icon, int id, const char *signal, |
301 | const QObject *receiver, const char *slot, | 301 | const QObject *receiver, const char *slot, |
302 | bool enabled, const QString& text, int index/*US, KInstance *_instance*/ ) | 302 | bool enabled, const QString& text, int index/*US, KInstance *_instance*/ ) |
303 | { | 303 | { |
304 | KToolBarButton *button = new KToolBarButton( icon, id, this, 0, text/*US, _instance*/); | 304 | KToolBarButton *button = new KToolBarButton( icon, id, this, 0, text/*US, _instance*/); |
305 | insertWidgetInternal( button, index, id ); | 305 | insertWidgetInternal( button, index, id ); |
306 | button->setEnabled( enabled ); | 306 | button->setEnabled( enabled ); |
307 | connect( button, signal, receiver, slot ); | 307 | connect( button, signal, receiver, slot ); |
308 | doConnections( button ); | 308 | doConnections( button ); |
309 | return index; | 309 | return index; |
310 | } | 310 | } |
311 | 311 | ||
312 | 312 | ||
313 | int KToolBar::insertButton(const QPixmap& pixmap, int id, bool enabled, | 313 | int KToolBar::insertButton(const QPixmap& pixmap, int id, bool enabled, |
314 | const QString& text, int index ) | 314 | const QString& text, int index ) |
315 | { | 315 | { |
316 | KToolBarButton *button = new KToolBarButton( pixmap, id, this, 0, text); | 316 | KToolBarButton *button = new KToolBarButton( pixmap, id, this, 0, text); |
317 | insertWidgetInternal( button, index, id ); | 317 | insertWidgetInternal( button, index, id ); |
318 | button->setEnabled( enabled ); | 318 | button->setEnabled( enabled ); |
319 | doConnections( button ); | 319 | doConnections( button ); |
320 | return index; | 320 | return index; |
321 | } | 321 | } |
322 | #if 0 | 322 | #if 0 |
323 | bar->insertButton( icon, id_, SIGNAL( clicked() ), this, | 323 | bar->insertButton( icon, id_, SIGNAL( clicked() ), this, |
324 | SLOT( slotActivated() ), | 324 | SLOT( slotActivated() ), |
325 | d->isEnabled(), d->plainText(), index/*US, instance*/ ); | 325 | d->isEnabled(), d->plainText(), index/*US, instance*/ ); |
326 | #endif | 326 | #endif |
327 | 327 | ||
328 | int KToolBar::insertButton(const QPixmap& pixmap, int id, const char *signal, | 328 | int KToolBar::insertButton(const QPixmap& pixmap, int id, const char *signal, |
329 | const QObject *receiver, const char *slot, | 329 | const QObject *receiver, const char *slot, |
330 | bool enabled, const QString& text, | 330 | bool enabled, const QString& text, |
331 | int index ) | 331 | int index ) |
332 | { | 332 | { |
333 | KToolBarButton *button = new KToolBarButton( pixmap, id, this, 0, text); | 333 | KToolBarButton *button = new KToolBarButton( pixmap, id, this, 0, text); |
334 | insertWidgetInternal( button, index, id ); | 334 | insertWidgetInternal( button, index, id ); |
335 | button->setEnabled( enabled ); | 335 | button->setEnabled( enabled ); |
336 | connect( button, signal, receiver, slot ); | 336 | connect( button, signal, receiver, slot ); |
337 | doConnections( button ); | 337 | doConnections( button ); |
338 | return index; | 338 | return index; |
339 | } | 339 | } |
340 | 340 | ||
341 | 341 | ||
342 | int KToolBar::insertButton(const QString& icon, int id, QPopupMenu *popup, | 342 | int KToolBar::insertButton(const QString& icon, int id, QPopupMenu *popup, |
343 | bool enabled, const QString &text, int index ) | 343 | bool enabled, const QString &text, int index ) |
344 | { | 344 | { |
345 | KToolBarButton *button = new KToolBarButton( icon, id, this, 0, text ); | 345 | KToolBarButton *button = new KToolBarButton( icon, id, this, 0, text ); |
346 | insertWidgetInternal( button, index, id ); | 346 | insertWidgetInternal( button, index, id ); |
347 | button->setEnabled( enabled ); | 347 | button->setEnabled( enabled ); |
348 | button->setPopup( popup ); | 348 | button->setPopup( popup ); |
349 | doConnections( button ); | 349 | doConnections( button ); |
350 | return index; | 350 | return index; |
351 | } | 351 | } |
352 | 352 | ||
353 | 353 | ||
354 | int KToolBar::insertButton(const QPixmap& pixmap, int id, QPopupMenu *popup, | 354 | int KToolBar::insertButton(const QPixmap& pixmap, int id, QPopupMenu *popup, |
355 | bool enabled, const QString &text, int index ) | 355 | bool enabled, const QString &text, int index ) |
356 | { | 356 | { |
357 | KToolBarButton *button = new KToolBarButton( pixmap, id, this, 0, text ); | 357 | KToolBarButton *button = new KToolBarButton( pixmap, id, this, 0, text ); |
358 | insertWidgetInternal( button, index, id ); | 358 | insertWidgetInternal( button, index, id ); |
359 | button->setEnabled( enabled ); | 359 | button->setEnabled( enabled ); |
360 | button->setPopup( popup ); | 360 | button->setPopup( popup ); |
361 | doConnections( button ); | 361 | doConnections( button ); |
362 | return index; | 362 | return index; |
363 | } | 363 | } |
364 | 364 | ||
365 | 365 | ||
366 | int KToolBar::insertLined (const QString& text, int id, | 366 | int KToolBar::insertLined (const QString& text, int id, |
367 | const char *signal, | 367 | const char *signal, |
368 | const QObject *receiver, const char *slot, | 368 | const QObject *receiver, const char *slot, |
369 | bool enabled , | 369 | bool enabled , |
370 | const QString& toolTipText, | 370 | const QString& toolTipText, |
371 | int size, int index ) | 371 | int size, int index ) |
372 | { | 372 | { |
373 | KLineEdit *lined = new KLineEdit ( this, 0 ); | 373 | KLineEdit *lined = new KLineEdit ( this, 0 ); |
374 | if ( !toolTipText.isEmpty() ) | 374 | if ( !toolTipText.isEmpty() ) |
375 | QToolTip::add( lined, toolTipText ); | 375 | QToolTip::add( lined, toolTipText ); |
376 | if ( size > 0 ) | 376 | if ( size > 0 ) |
377 | lined->setMinimumWidth( size ); | 377 | lined->setMinimumWidth( size ); |
378 | insertWidgetInternal( lined, index, id ); | 378 | insertWidgetInternal( lined, index, id ); |
379 | connect( lined, signal, receiver, slot ); | 379 | connect( lined, signal, receiver, slot ); |
380 | lined->setText(text); | 380 | lined->setText(text); |
381 | lined->setEnabled( enabled ); | 381 | lined->setEnabled( enabled ); |
382 | return index; | 382 | return index; |
383 | } | 383 | } |
384 | 384 | ||
385 | int KToolBar::insertCombo (const QStringList &list, int id, bool writable, | 385 | int KToolBar::insertCombo (const QStringList &list, int id, bool writable, |
386 | const char *signal, const QObject *receiver, | 386 | const char *signal, const QObject *receiver, |
387 | const char *slot, bool enabled, | 387 | const char *slot, bool enabled, |
388 | const QString& tooltiptext, | 388 | const QString& tooltiptext, |
389 | int size, int index, | 389 | int size, int index, |
390 | QComboBox::Policy policy ) | 390 | QComboBox::Policy policy ) |
391 | { | 391 | { |
392 | //US KComboBox *combo = new KComboBox ( writable, this ); | 392 | //US KComboBox *combo = new KComboBox ( writable, this ); |
393 | KComboBox *combo = new KComboBox ( this ); | 393 | KComboBox *combo = new KComboBox ( this ); |
394 | combo->setEditable(writable); | 394 | combo->setEditable(writable); |
395 | 395 | ||
396 | insertWidgetInternal( combo, index, id ); | 396 | insertWidgetInternal( combo, index, id ); |
397 | combo->insertStringList (list); | 397 | combo->insertStringList (list); |
398 | combo->setInsertionPolicy(policy); | 398 | combo->setInsertionPolicy(policy); |
399 | combo->setEnabled( enabled ); | 399 | combo->setEnabled( enabled ); |
400 | if ( !tooltiptext.isEmpty() ) | 400 | if ( !tooltiptext.isEmpty() ) |
401 | QToolTip::add( combo, tooltiptext ); | 401 | QToolTip::add( combo, tooltiptext ); |
402 | if ( size > 0 ) | 402 | if ( size > 0 ) |
403 | combo->setMinimumWidth( size ); | 403 | combo->setMinimumWidth( size ); |
404 | if (!tooltiptext.isNull()) | 404 | if (!tooltiptext.isNull()) |
405 | QToolTip::add( combo, tooltiptext ); | 405 | QToolTip::add( combo, tooltiptext ); |
406 | 406 | ||
407 | if ( signal && receiver && slot ) | 407 | if ( signal && receiver && slot ) |
408 | connect ( combo, signal, receiver, slot ); | 408 | connect ( combo, signal, receiver, slot ); |
409 | return index; | 409 | return index; |
410 | } | 410 | } |
411 | 411 | ||
412 | 412 | ||
413 | int KToolBar::insertCombo (const QString& text, int id, bool writable, | 413 | int KToolBar::insertCombo (const QString& text, int id, bool writable, |
414 | const char *signal, QObject *receiver, | 414 | const char *signal, QObject *receiver, |
415 | const char *slot, bool enabled, | 415 | const char *slot, bool enabled, |
416 | const QString& tooltiptext, | 416 | const QString& tooltiptext, |
417 | int size, int index, | 417 | int size, int index, |
418 | QComboBox::Policy policy ) | 418 | QComboBox::Policy policy ) |
419 | { | 419 | { |
420 | //US KComboBox *combo = new KComboBox ( writable, this ); | 420 | //US KComboBox *combo = new KComboBox ( writable, this ); |
421 | KComboBox *combo = new KComboBox ( this ); | 421 | KComboBox *combo = new KComboBox ( this ); |
422 | combo->setEditable(writable); | 422 | combo->setEditable(writable); |
423 | 423 | ||
424 | insertWidgetInternal( combo, index, id ); | 424 | insertWidgetInternal( combo, index, id ); |
425 | combo->insertItem (text); | 425 | combo->insertItem (text); |
426 | combo->setInsertionPolicy(policy); | 426 | combo->setInsertionPolicy(policy); |
427 | combo->setEnabled( enabled ); | 427 | combo->setEnabled( enabled ); |
428 | if ( !tooltiptext.isEmpty() ) | 428 | if ( !tooltiptext.isEmpty() ) |
429 | QToolTip::add( combo, tooltiptext ); | 429 | QToolTip::add( combo, tooltiptext ); |
430 | if ( size > 0 ) | 430 | if ( size > 0 ) |
431 | combo->setMinimumWidth( size ); | 431 | combo->setMinimumWidth( size ); |
432 | if (!tooltiptext.isNull()) | 432 | if (!tooltiptext.isNull()) |
433 | QToolTip::add( combo, tooltiptext ); | 433 | QToolTip::add( combo, tooltiptext ); |
434 | connect (combo, signal, receiver, slot); | 434 | connect (combo, signal, receiver, slot); |
435 | return index; | 435 | return index; |
436 | } | 436 | } |
437 | 437 | ||
438 | int KToolBar::insertSeparator(int index, int id) | 438 | int KToolBar::insertSeparator(int index, int id) |
439 | { | 439 | { |
440 | QWidget *w = new KToolBarSeparator( orientation(), FALSE, this, "tool bar separator" ); | 440 | QWidget *w = new KToolBarSeparator( orientation(), FALSE, this, "tool bar separator" ); |
441 | insertWidgetInternal( w, index, id ); | 441 | insertWidgetInternal( w, index, id ); |
442 | return index; | 442 | return index; |
443 | } | 443 | } |
444 | 444 | ||
445 | int KToolBar::insertLineSeparator(int index, int id) | 445 | int KToolBar::insertLineSeparator(int index, int id) |
446 | { | 446 | { |
447 | QWidget *w = new KToolBarSeparator( orientation(), TRUE, this, "tool bar separator" ); | 447 | QWidget *w = new KToolBarSeparator( orientation(), TRUE, this, "tool bar separator" ); |
448 | insertWidgetInternal( w, index, id ); | 448 | insertWidgetInternal( w, index, id ); |
449 | return index; | 449 | return index; |
450 | } | 450 | } |
451 | 451 | ||
452 | 452 | ||
453 | int KToolBar::insertWidget(int id, int /*width*/, QWidget *widget, int index) | 453 | int KToolBar::insertWidget(int id, int /*width*/, QWidget *widget, int index) |
454 | { | 454 | { |
455 | // removeWidgetInternal( widget ); // in case we already have it ? | 455 | // removeWidgetInternal( widget ); // in case we already have it ? |
456 | insertWidgetInternal( widget, index, id ); | 456 | insertWidgetInternal( widget, index, id ); |
457 | return index; | 457 | return index; |
458 | } | 458 | } |
459 | /*US | 459 | /*US |
460 | int KToolBar::insertAnimatedWidget(int id, QObject *receiver, const char *slot, | 460 | int KToolBar::insertAnimatedWidget(int id, QObject *receiver, const char *slot, |
461 | const QString& icons, int index ) | 461 | const QString& icons, int index ) |
462 | { | 462 | { |
463 | KAnimWidget *anim = new KAnimWidget( icons, d->m_iconSize, this ); | 463 | KAnimWidget *anim = new KAnimWidget( icons, d->m_iconSize, this ); |
464 | insertWidgetInternal( anim, index, id ); | 464 | insertWidgetInternal( anim, index, id ); |
465 | 465 | ||
466 | if ( receiver ) | 466 | if ( receiver ) |
467 | connect( anim, SIGNAL(clicked()), receiver, slot); | 467 | connect( anim, SIGNAL(clicked()), receiver, slot); |
468 | 468 | ||
469 | return index; | 469 | return index; |
470 | } | 470 | } |
471 | 471 | ||
472 | KAnimWidget *KToolBar::animatedWidget( int id ) | 472 | KAnimWidget *KToolBar::animatedWidget( int id ) |
473 | { | 473 | { |
474 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 474 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
475 | if ( it == id2widget.end() ) | 475 | if ( it == id2widget.end() ) |
476 | return 0; | 476 | return 0; |
477 | if ( (*it) && (*it)->inherits( "KAnimWidget" ) ) | 477 | if ( (*it) && (*it)->inherits( "KAnimWidget" ) ) |
478 | return (KAnimWidget*)(*it); | 478 | return (KAnimWidget*)(*it); |
479 | QObjectList *l = queryList( "KAnimWidget" ); | 479 | QObjectList *l = queryList( "KAnimWidget" ); |
480 | if ( !l || !l->first() ) { | 480 | if ( !l || !l->first() ) { |
481 | delete l; | 481 | delete l; |
482 | return 0; | 482 | return 0; |
483 | } | 483 | } |
484 | 484 | ||
485 | for ( QObject *o = l->first(); o; o = l->next() ) { | 485 | for ( QObject *o = l->first(); o; o = l->next() ) { |
486 | if ( o->inherits( "KAnimWidget" ) ) | 486 | if ( o->inherits( "KAnimWidget" ) ) |
487 | { | 487 | { |
488 | delete l; | 488 | delete l; |
489 | return (KAnimWidget*)o; | 489 | return (KAnimWidget*)o; |
490 | } | 490 | } |
491 | } | 491 | } |
492 | 492 | ||
493 | delete l; | 493 | delete l; |
494 | return 0; | 494 | return 0; |
495 | } | 495 | } |
496 | */ | 496 | */ |
497 | 497 | ||
498 | void KToolBar::addConnection (int id, const char *signal, | 498 | void KToolBar::addConnection (int id, const char *signal, |
499 | const QObject *receiver, const char *slot) | 499 | const QObject *receiver, const char *slot) |
500 | { | 500 | { |
501 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 501 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
502 | if ( it == id2widget.end() ) | 502 | if ( it == id2widget.end() ) |
503 | return; | 503 | return; |
504 | if ( (*it) ) | 504 | if ( (*it) ) |
505 | connect( (*it), signal, receiver, slot ); | 505 | connect( (*it), signal, receiver, slot ); |
506 | } | 506 | } |
507 | 507 | ||
508 | void KToolBar::setItemEnabled( int id, bool enabled ) | 508 | void KToolBar::setItemEnabled( int id, bool enabled ) |
509 | { | 509 | { |
510 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 510 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
511 | if ( it == id2widget.end() ) | 511 | if ( it == id2widget.end() ) |
512 | return; | 512 | return; |
513 | if ( (*it) ) | 513 | if ( (*it) ) |
514 | (*it)->setEnabled( enabled ); | 514 | (*it)->setEnabled( enabled ); |
515 | } | 515 | } |
516 | 516 | ||
517 | 517 | ||
518 | void KToolBar::setButtonPixmap( int id, const QPixmap& _pixmap ) | 518 | void KToolBar::setButtonPixmap( int id, const QPixmap& _pixmap ) |
519 | { | 519 | { |
520 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 520 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
521 | if ( it == id2widget.end() ) | 521 | if ( it == id2widget.end() ) |
522 | return; | 522 | return; |
523 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 523 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
524 | KToolBarButton * button = (KToolBarButton *)( *it ); | 524 | KToolBarButton * button = (KToolBarButton *)( *it ); |
525 | if ( button ) | 525 | if ( button ) |
526 | button->setPixmap( _pixmap ); | 526 | button->setPixmap( _pixmap ); |
527 | } | 527 | } |
528 | 528 | ||
529 | 529 | ||
530 | void KToolBar::setButtonIcon( int id, const QString& _icon ) | 530 | void KToolBar::setButtonIcon( int id, const QString& _icon ) |
531 | { | 531 | { |
532 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 532 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
533 | if ( it == id2widget.end() ) | 533 | if ( it == id2widget.end() ) |
534 | return; | 534 | return; |
535 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 535 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
536 | KToolBarButton * button = (KToolBarButton *)( *it ); | 536 | KToolBarButton * button = (KToolBarButton *)( *it ); |
537 | if ( button ) | 537 | if ( button ) |
538 | button->setIcon( _icon ); | 538 | button->setIcon( _icon ); |
539 | } | 539 | } |
540 | 540 | ||
541 | void KToolBar::setButtonIconSet( int id, const QIconSet& iconset ) | 541 | void KToolBar::setButtonIconSet( int id, const QIconSet& iconset ) |
542 | { | 542 | { |
543 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 543 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
544 | if ( it == id2widget.end() ) | 544 | if ( it == id2widget.end() ) |
545 | return; | 545 | return; |
546 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 546 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
547 | KToolBarButton * button = (KToolBarButton *)( *it ); | 547 | KToolBarButton * button = (KToolBarButton *)( *it ); |
548 | if ( button ) | 548 | if ( button ) |
549 | button->setIconSet( iconset ); | 549 | button->setIconSet( iconset ); |
550 | } | 550 | } |
551 | 551 | ||
552 | 552 | ||
553 | void KToolBar::setDelayedPopup (int id , QPopupMenu *_popup, bool toggle ) | 553 | void KToolBar::setDelayedPopup (int id , QPopupMenu *_popup, bool toggle ) |
554 | { | 554 | { |
555 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 555 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
556 | if ( it == id2widget.end() ) | 556 | if ( it == id2widget.end() ) |
557 | return; | 557 | return; |
558 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 558 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
559 | KToolBarButton * button = (KToolBarButton *)( *it ); | 559 | KToolBarButton * button = (KToolBarButton *)( *it ); |
560 | if ( button ) | 560 | if ( button ) |
561 | button->setDelayedPopup( _popup, toggle ); | 561 | button->setDelayedPopup( _popup, toggle ); |
562 | } | 562 | } |
563 | 563 | ||
564 | 564 | ||
565 | void KToolBar::setAutoRepeat (int id, bool flag) | 565 | void KToolBar::setAutoRepeat (int id, bool flag) |
566 | { | 566 | { |
567 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 567 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
568 | if ( it == id2widget.end() ) | 568 | if ( it == id2widget.end() ) |
569 | return; | 569 | return; |
570 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 570 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
571 | KToolBarButton * button = (KToolBarButton *)( *it ); | 571 | KToolBarButton * button = (KToolBarButton *)( *it ); |
572 | if ( button ) | 572 | if ( button ) |
573 | button->setAutoRepeat( flag ); | 573 | button->setAutoRepeat( flag ); |
574 | } | 574 | } |
575 | 575 | ||
576 | 576 | ||
577 | void KToolBar::setToggle (int id, bool flag ) | 577 | void KToolBar::setToggle (int id, bool flag ) |
578 | { | 578 | { |
579 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 579 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
580 | if ( it == id2widget.end() ) | 580 | if ( it == id2widget.end() ) |
581 | return; | 581 | return; |
582 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 582 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
583 | KToolBarButton * button = (KToolBarButton *)( *it ); | 583 | KToolBarButton * button = (KToolBarButton *)( *it ); |
584 | if ( button ) | 584 | if ( button ) |
585 | button->setToggle( flag ); | 585 | button->setToggle( flag ); |
586 | } | 586 | } |
587 | 587 | ||
588 | 588 | ||
589 | void KToolBar::toggleButton (int id) | 589 | void KToolBar::toggleButton (int id) |
590 | { | 590 | { |
591 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 591 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
592 | if ( it == id2widget.end() ) | 592 | if ( it == id2widget.end() ) |
593 | return; | 593 | return; |
594 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 594 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
595 | KToolBarButton * button = (KToolBarButton *)( *it ); | 595 | KToolBarButton * button = (KToolBarButton *)( *it ); |
596 | if ( button ) | 596 | if ( button ) |
597 | button->toggle(); | 597 | button->toggle(); |
598 | } | 598 | } |
599 | 599 | ||
600 | 600 | ||
601 | void KToolBar::setButton (int id, bool flag) | 601 | void KToolBar::setButton (int id, bool flag) |
602 | { | 602 | { |
603 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 603 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
604 | if ( it == id2widget.end() ) | 604 | if ( it == id2widget.end() ) |
605 | return; | 605 | return; |
606 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 606 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
607 | KToolBarButton * button = (KToolBarButton *)( *it ); | 607 | KToolBarButton * button = (KToolBarButton *)( *it ); |
608 | if ( button ) | 608 | if ( button ) |
609 | button->on( flag ); | 609 | button->on( flag ); |
610 | } | 610 | } |
611 | 611 | ||
612 | 612 | ||
613 | bool KToolBar::isButtonOn (int id) const | 613 | bool KToolBar::isButtonOn (int id) const |
614 | { | 614 | { |
615 | Id2WidgetMap::ConstIterator it = id2widget.find( id ); | 615 | Id2WidgetMap::ConstIterator it = id2widget.find( id ); |
616 | if ( it == id2widget.end() ) | 616 | if ( it == id2widget.end() ) |
617 | return false; | 617 | return false; |
618 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 618 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
619 | KToolBarButton * button = (KToolBarButton *)( *it ); | 619 | KToolBarButton * button = (KToolBarButton *)( *it ); |
620 | return button ? button->isOn() : false; | 620 | return button ? button->isOn() : false; |
621 | } | 621 | } |
622 | 622 | ||
623 | 623 | ||
624 | void KToolBar::setLinedText (int id, const QString& text) | 624 | void KToolBar::setLinedText (int id, const QString& text) |
625 | { | 625 | { |
626 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 626 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
627 | if ( it == id2widget.end() ) | 627 | if ( it == id2widget.end() ) |
628 | return; | 628 | return; |
629 | //US QLineEdit * lineEdit = dynamic_cast<QLineEdit *>( *it ); | 629 | //US QLineEdit * lineEdit = dynamic_cast<QLineEdit *>( *it ); |
630 | QLineEdit * lineEdit = (QLineEdit *)( *it ); | 630 | QLineEdit * lineEdit = (QLineEdit *)( *it ); |
631 | if ( lineEdit ) | 631 | if ( lineEdit ) |
632 | lineEdit->setText( text ); | 632 | lineEdit->setText( text ); |
633 | } | 633 | } |
634 | 634 | ||
635 | 635 | ||
636 | QString KToolBar::getLinedText (int id) const | 636 | QString KToolBar::getLinedText (int id) const |
637 | { | 637 | { |
638 | Id2WidgetMap::ConstIterator it = id2widget.find( id ); | 638 | Id2WidgetMap::ConstIterator it = id2widget.find( id ); |
639 | if ( it == id2widget.end() ) | 639 | if ( it == id2widget.end() ) |
640 | return QString::null; | 640 | return QString::null; |
641 | //US QLineEdit * lineEdit = dynamic_cast<QLineEdit *>( *it ); | 641 | //US QLineEdit * lineEdit = dynamic_cast<QLineEdit *>( *it ); |
642 | QLineEdit * lineEdit = (QLineEdit *)( *it ); | 642 | QLineEdit * lineEdit = (QLineEdit *)( *it ); |
643 | return lineEdit ? lineEdit->text() : QString::null; | 643 | return lineEdit ? lineEdit->text() : QString::null; |
644 | } | 644 | } |
645 | 645 | ||
646 | 646 | ||
647 | void KToolBar::insertComboItem (int id, const QString& text, int index) | 647 | void KToolBar::insertComboItem (int id, const QString& text, int index) |
648 | { | 648 | { |
649 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 649 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
650 | if ( it == id2widget.end() ) | 650 | if ( it == id2widget.end() ) |
651 | return; | 651 | return; |
652 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 652 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
653 | QComboBox * comboBox = (QComboBox *)( *it ); | 653 | QComboBox * comboBox = (QComboBox *)( *it ); |
654 | if (comboBox) | 654 | if (comboBox) |
655 | comboBox->insertItem( text, index ); | 655 | comboBox->insertItem( text, index ); |
656 | } | 656 | } |
657 | 657 | ||
658 | void KToolBar::insertComboList (int id, const QStringList &list, int index) | 658 | void KToolBar::insertComboList (int id, const QStringList &list, int index) |
659 | { | 659 | { |
660 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 660 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
661 | if ( it == id2widget.end() ) | 661 | if ( it == id2widget.end() ) |
662 | return; | 662 | return; |
663 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 663 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
664 | QComboBox * comboBox = (QComboBox *)( *it ); | 664 | QComboBox * comboBox = (QComboBox *)( *it ); |
665 | if (comboBox) | 665 | if (comboBox) |
666 | comboBox->insertStringList( list, index ); | 666 | comboBox->insertStringList( list, index ); |
667 | } | 667 | } |
668 | 668 | ||
669 | 669 | ||
670 | void KToolBar::removeComboItem (int id, int index) | 670 | void KToolBar::removeComboItem (int id, int index) |
671 | { | 671 | { |
672 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 672 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
673 | if ( it == id2widget.end() ) | 673 | if ( it == id2widget.end() ) |
674 | return; | 674 | return; |
675 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 675 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
676 | QComboBox * comboBox = (QComboBox *)( *it ); | 676 | QComboBox * comboBox = (QComboBox *)( *it ); |
677 | if (comboBox) | 677 | if (comboBox) |
678 | comboBox->removeItem( index ); | 678 | comboBox->removeItem( index ); |
679 | } | 679 | } |
680 | 680 | ||
681 | 681 | ||
682 | void KToolBar::setCurrentComboItem (int id, int index) | 682 | void KToolBar::setCurrentComboItem (int id, int index) |
683 | { | 683 | { |
684 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 684 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
685 | if ( it == id2widget.end() ) | 685 | if ( it == id2widget.end() ) |
686 | return; | 686 | return; |
687 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 687 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
688 | QComboBox * comboBox = (QComboBox *)( *it ); | 688 | QComboBox * comboBox = (QComboBox *)( *it ); |
689 | if (comboBox) | 689 | if (comboBox) |
690 | comboBox->setCurrentItem( index ); | 690 | comboBox->setCurrentItem( index ); |
691 | } | 691 | } |
692 | 692 | ||
693 | 693 | ||
694 | void KToolBar::changeComboItem (int id, const QString& text, int index) | 694 | void KToolBar::changeComboItem (int id, const QString& text, int index) |
695 | { | 695 | { |
696 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 696 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
697 | if ( it == id2widget.end() ) | 697 | if ( it == id2widget.end() ) |
698 | return; | 698 | return; |
699 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 699 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
700 | QComboBox * comboBox = (QComboBox *)( *it ); | 700 | QComboBox * comboBox = (QComboBox *)( *it ); |
701 | if (comboBox) | 701 | if (comboBox) |
702 | comboBox->changeItem( text, index ); | 702 | comboBox->changeItem( text, index ); |
703 | } | 703 | } |
704 | 704 | ||
705 | 705 | ||
706 | void KToolBar::clearCombo (int id) | 706 | void KToolBar::clearCombo (int id) |
707 | { | 707 | { |
708 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 708 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
709 | if ( it == id2widget.end() ) | 709 | if ( it == id2widget.end() ) |
710 | return; | 710 | return; |
711 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 711 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
712 | QComboBox * comboBox = (QComboBox *)( *it ); | 712 | QComboBox * comboBox = (QComboBox *)( *it ); |
713 | if (comboBox) | 713 | if (comboBox) |
714 | comboBox->clear(); | 714 | comboBox->clear(); |
715 | } | 715 | } |
716 | 716 | ||
717 | 717 | ||
718 | QString KToolBar::getComboItem (int id, int index) const | 718 | QString KToolBar::getComboItem (int id, int index) const |
719 | { | 719 | { |
720 | Id2WidgetMap::ConstIterator it = id2widget.find( id ); | 720 | Id2WidgetMap::ConstIterator it = id2widget.find( id ); |
721 | if ( it == id2widget.end() ) | 721 | if ( it == id2widget.end() ) |
722 | return QString::null; | 722 | return QString::null; |
723 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); | 723 | //US QComboBox * comboBox = dynamic_cast<QComboBox *>( *it ); |
724 | QComboBox * comboBox = (QComboBox *)( *it ); | 724 | QComboBox * comboBox = (QComboBox *)( *it ); |
725 | return comboBox ? comboBox->text( index ) : QString::null; | 725 | return comboBox ? comboBox->text( index ) : QString::null; |
726 | } | 726 | } |
727 | 727 | ||
728 | 728 | ||
729 | KComboBox * KToolBar::getCombo(int id) | 729 | KComboBox * KToolBar::getCombo(int id) |
730 | { | 730 | { |
731 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 731 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
732 | if ( it == id2widget.end() ) | 732 | if ( it == id2widget.end() ) |
733 | return 0; | 733 | return 0; |
734 | //US return dynamic_cast<KComboBox *>( *it ); | 734 | //US return dynamic_cast<KComboBox *>( *it ); |
735 | return (KComboBox *)( *it ); | 735 | return (KComboBox *)( *it ); |
736 | } | 736 | } |
737 | 737 | ||
738 | 738 | ||
739 | KLineEdit * KToolBar::getLined (int id) | 739 | KLineEdit * KToolBar::getLined (int id) |
740 | { | 740 | { |
741 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 741 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
742 | if ( it == id2widget.end() ) | 742 | if ( it == id2widget.end() ) |
743 | return 0; | 743 | return 0; |
744 | //US return dynamic_cast<KLineEdit *>( *it ); | 744 | //US return dynamic_cast<KLineEdit *>( *it ); |
745 | return (KLineEdit *)( *it ); | 745 | return (KLineEdit *)( *it ); |
746 | } | 746 | } |
747 | 747 | ||
748 | 748 | ||
749 | KToolBarButton * KToolBar::getButton (int id) | 749 | KToolBarButton * KToolBar::getButton (int id) |
750 | { | 750 | { |
751 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 751 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
752 | if ( it == id2widget.end() ) | 752 | if ( it == id2widget.end() ) |
753 | return 0; | 753 | return 0; |
754 | //US return dynamic_cast<KToolBarButton *>( *it ); | 754 | //US return dynamic_cast<KToolBarButton *>( *it ); |
755 | return (KToolBarButton *)( *it ); | 755 | return (KToolBarButton *)( *it ); |
756 | } | 756 | } |
757 | 757 | ||
758 | 758 | ||
759 | void KToolBar::alignItemRight (int id, bool right ) | 759 | void KToolBar::alignItemRight (int id, bool right ) |
760 | { | 760 | { |
761 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 761 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
762 | if ( it == id2widget.end() ) | 762 | if ( it == id2widget.end() ) |
763 | return; | 763 | return; |
764 | if ( rightAligned && !right && (*it) == rightAligned ) | 764 | if ( rightAligned && !right && (*it) == rightAligned ) |
765 | rightAligned = 0; | 765 | rightAligned = 0; |
766 | if ( (*it) && right ) | 766 | if ( (*it) && right ) |
767 | rightAligned = (*it); | 767 | rightAligned = (*it); |
768 | } | 768 | } |
769 | 769 | ||
770 | 770 | ||
771 | QWidget *KToolBar::getWidget (int id) | 771 | QWidget *KToolBar::getWidget (int id) |
772 | { | 772 | { |
773 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 773 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
774 | return ( it == id2widget.end() ) ? 0 : (*it); | 774 | return ( it == id2widget.end() ) ? 0 : (*it); |
775 | } | 775 | } |
776 | 776 | ||
777 | 777 | ||
778 | void KToolBar::setItemAutoSized (int id, bool yes ) | 778 | void KToolBar::setItemAutoSized (int id, bool yes ) |
779 | { | 779 | { |
780 | QWidget *w = getWidget(id); | 780 | QWidget *w = getWidget(id); |
781 | if ( w && yes ) | 781 | if ( w && yes ) |
782 | setStretchableWidget( w ); | 782 | setStretchableWidget( w ); |
783 | } | 783 | } |
784 | 784 | ||
785 | 785 | ||
786 | void KToolBar::clear () | 786 | void KToolBar::clear () |
787 | { | 787 | { |
788 | QToolBar::clear(); | 788 | QToolBar::clear(); |
789 | widget2id.clear(); | 789 | widget2id.clear(); |
790 | id2widget.clear(); | 790 | id2widget.clear(); |
791 | } | 791 | } |
792 | 792 | ||
793 | 793 | ||
794 | void KToolBar::removeItem(int id) | 794 | void KToolBar::removeItem(int id) |
795 | { | 795 | { |
796 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 796 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
797 | if ( it == id2widget.end() ) | 797 | if ( it == id2widget.end() ) |
798 | { | 798 | { |
799 | kdDebug(220) << "KToolBar::removeItem item " << id << " not found" << endl; | 799 | kdDebug(220) << "KToolBar::removeItem item " << id << " not found" << endl; |
800 | return; | 800 | return; |
801 | } | 801 | } |
802 | QWidget * w = (*it); | 802 | QWidget * w = (*it); |
803 | id2widget.remove( id ); | 803 | id2widget.remove( id ); |
804 | widget2id.remove( w ); | 804 | widget2id.remove( w ); |
805 | widgets.removeRef( w ); | 805 | widgets.removeRef( w ); |
806 | delete w; | 806 | delete w; |
807 | } | 807 | } |
808 | 808 | ||
809 | 809 | ||
810 | void KToolBar::removeItemDelayed(int id) | 810 | void KToolBar::removeItemDelayed(int id) |
811 | { | 811 | { |
812 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 812 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
813 | if ( it == id2widget.end() ) | 813 | if ( it == id2widget.end() ) |
814 | { | 814 | { |
815 | kdDebug(220) << "KToolBar::removeItem item " << id << " not found" << endl; | 815 | kdDebug(220) << "KToolBar::removeItem item " << id << " not found" << endl; |
816 | return; | 816 | return; |
817 | } | 817 | } |
818 | QWidget * w = (*it); | 818 | QWidget * w = (*it); |
819 | id2widget.remove( id ); | 819 | id2widget.remove( id ); |
820 | widget2id.remove( w ); | 820 | widget2id.remove( w ); |
821 | widgets.removeRef( w ); | 821 | widgets.removeRef( w ); |
822 | 822 | ||
823 | w->blockSignals(true); | 823 | w->blockSignals(true); |
824 | d->idleButtons.append(w); | 824 | d->idleButtons.append(w); |
825 | layoutTimer->start( 50, TRUE ); | 825 | layoutTimer->start( 50, TRUE ); |
826 | } | 826 | } |
827 | 827 | ||
828 | 828 | ||
829 | void KToolBar::hideItem (int id) | 829 | void KToolBar::hideItem (int id) |
830 | { | 830 | { |
831 | QWidget *w = getWidget(id); | 831 | QWidget *w = getWidget(id); |
832 | if ( w ) | 832 | if ( w ) |
833 | w->hide(); | 833 | w->hide(); |
834 | } | 834 | } |
835 | 835 | ||
836 | 836 | ||
837 | void KToolBar::showItem (int id) | 837 | void KToolBar::showItem (int id) |
838 | { | 838 | { |
839 | QWidget *w = getWidget(id); | 839 | QWidget *w = getWidget(id); |
840 | if ( w ) | 840 | if ( w ) |
841 | w->show(); | 841 | w->show(); |
842 | } | 842 | } |
843 | 843 | ||
844 | 844 | ||
845 | int KToolBar::itemIndex (int id) | 845 | int KToolBar::itemIndex (int id) |
846 | { | 846 | { |
847 | QWidget *w = getWidget(id); | 847 | QWidget *w = getWidget(id); |
848 | return w ? widgets.findRef(w) : -1; | 848 | return w ? widgets.findRef(w) : -1; |
849 | } | 849 | } |
850 | 850 | ||
851 | 851 | ||
852 | void KToolBar::setFullSize(bool flag ) | 852 | void KToolBar::setFullSize(bool flag ) |
853 | { | 853 | { |
854 | setHorizontalStretchable( flag ); | 854 | setHorizontalStretchable( flag ); |
855 | setVerticalStretchable( flag ); | 855 | setVerticalStretchable( flag ); |
856 | } | 856 | } |
857 | 857 | ||
858 | 858 | ||
859 | bool KToolBar::fullSize() const | 859 | bool KToolBar::fullSize() const |
860 | { | 860 | { |
861 | return isHorizontalStretchable() || isVerticalStretchable(); | 861 | return isHorizontalStretchable() || isVerticalStretchable(); |
862 | } | 862 | } |
863 | 863 | ||
864 | 864 | ||
865 | void KToolBar::enableMoving(bool flag ) | 865 | void KToolBar::enableMoving(bool flag ) |
866 | { | 866 | { |
867 | //US setMovingEnabled(flag); | 867 | //US setMovingEnabled(flag); |
868 | this->mainWindow()->setToolBarsMovable(flag); | 868 | this->mainWindow()->setToolBarsMovable(flag); |
869 | } | 869 | } |
870 | 870 | ||
871 | 871 | ||
872 | void KToolBar::setBarPos (BarPosition bpos) | 872 | void KToolBar::setBarPos (BarPosition bpos) |
873 | { | 873 | { |
874 | if ( !mainWindow() ) | 874 | if ( !mainWindow() ) |
875 | return; | 875 | return; |
876 | //US mainWindow()->moveDockWindow( this, (Dock)bpos ); | 876 | //US mainWindow()->moveDockWindow( this, (Dock)bpos ); |
877 | mainWindow()->moveToolBar( this, (QMainWindow::ToolBarDock)bpos ); | 877 | mainWindow()->moveToolBar( this, (QMainWindow::ToolBarDock)bpos ); |
878 | } | 878 | } |
879 | 879 | ||
880 | 880 | ||
881 | KToolBar::BarPosition KToolBar::barPos() | 881 | KToolBar::BarPosition KToolBar::barPos() |
882 | { | 882 | { |
883 | if ( !(QMainWindow*)mainWindow() ) | 883 | if ( !(QMainWindow*)mainWindow() ) |
884 | return KToolBar::Top; | 884 | return KToolBar::Top; |
885 | //US Dock dock; | 885 | //US Dock dock; |
886 | QMainWindow::ToolBarDock dock; | 886 | QMainWindow::ToolBarDock dock; |
887 | int dm1, dm2; | 887 | int dm1, dm2; |
888 | bool dm3; | 888 | bool dm3; |
889 | ((QMainWindow*)mainWindow())->getLocation( (QToolBar*)this, dock, dm1, dm3, dm2 ); | 889 | ((QMainWindow*)mainWindow())->getLocation( (QToolBar*)this, dock, dm1, dm3, dm2 ); |
890 | //US if ( dock == DockUnmanaged ) { | 890 | //US if ( dock == DockUnmanaged ) { |
891 | if ( dock == QMainWindow::Unmanaged ) { | 891 | if ( dock == QMainWindow::Unmanaged ) { |
892 | return (KToolBar::BarPosition)Top; | 892 | return (KToolBar::BarPosition)Top; |
893 | } | 893 | } |
894 | return (BarPosition)dock; | 894 | return (BarPosition)dock; |
895 | } | 895 | } |
896 | 896 | ||
897 | 897 | ||
898 | bool KToolBar::enable(BarStatus stat) | 898 | bool KToolBar::enable(BarStatus stat) |
899 | { | 899 | { |
900 | bool mystat = isVisible(); | 900 | bool mystat = isVisible(); |
901 | 901 | ||
902 | if ( (stat == Toggle && mystat) || stat == Hide ) | 902 | if ( (stat == Toggle && mystat) || stat == Hide ) |
903 | hide(); | 903 | hide(); |
904 | else | 904 | else |
905 | show(); | 905 | show(); |
906 | 906 | ||
907 | return isVisible() == mystat; | 907 | return isVisible() == mystat; |
908 | } | 908 | } |
909 | 909 | ||
910 | 910 | ||
911 | void KToolBar::setMaxHeight ( int h ) | 911 | void KToolBar::setMaxHeight ( int h ) |
912 | { | 912 | { |
913 | setMaximumHeight( h ); | 913 | setMaximumHeight( h ); |
914 | } | 914 | } |
915 | 915 | ||
916 | int KToolBar::maxHeight() | 916 | int KToolBar::maxHeight() |
917 | { | 917 | { |
918 | return maximumHeight(); | 918 | return maximumHeight(); |
919 | } | 919 | } |
920 | 920 | ||
921 | 921 | ||
922 | void KToolBar::setMaxWidth (int dw) | 922 | void KToolBar::setMaxWidth (int dw) |
923 | { | 923 | { |
924 | setMaximumWidth( dw ); | 924 | setMaximumWidth( dw ); |
925 | } | 925 | } |
926 | 926 | ||
927 | 927 | ||
928 | int KToolBar::maxWidth() | 928 | int KToolBar::maxWidth() |
929 | { | 929 | { |
930 | return maximumWidth(); | 930 | return maximumWidth(); |
931 | } | 931 | } |
932 | 932 | ||
933 | 933 | ||
934 | void KToolBar::setTitle (const QString& _title) | 934 | void KToolBar::setTitle (const QString& _title) |
935 | { | 935 | { |
936 | setLabel( _title ); | 936 | setLabel( _title ); |
937 | } | 937 | } |
938 | 938 | ||
939 | 939 | ||
940 | void KToolBar::enableFloating (bool ) | 940 | void KToolBar::enableFloating (bool ) |
941 | { | 941 | { |
942 | } | 942 | } |
943 | 943 | ||
944 | 944 | ||
945 | void KToolBar::setIconText(IconText it) | 945 | void KToolBar::setIconText(IconText it) |
946 | { | 946 | { |
947 | setIconText( it, true ); | 947 | setIconText( it, true ); |
948 | } | 948 | } |
949 | 949 | ||
950 | 950 | ||
951 | void KToolBar::setIconText(IconText icontext, bool update) | 951 | void KToolBar::setIconText(IconText icontext, bool update) |
952 | { | 952 | { |
953 | bool doUpdate=false; | 953 | bool doUpdate=false; |
954 | 954 | ||
955 | if (icontext != d->m_iconText) { | 955 | if (icontext != d->m_iconText) { |
956 | d->m_iconText = icontext; | 956 | d->m_iconText = icontext; |
957 | doUpdate=true; | 957 | doUpdate=true; |
958 | } | 958 | } |
959 | 959 | ||
960 | if (update == false) | 960 | if (update == false) |
961 | return; | 961 | return; |
962 | 962 | ||
963 | if (doUpdate) | 963 | if (doUpdate) |
964 | emit modechange(); // tell buttons what happened | 964 | emit modechange(); // tell buttons what happened |
965 | 965 | ||
966 | // ugly hack to force a QMainWindow::triggerLayout( TRUE ) | 966 | // ugly hack to force a QMainWindow::triggerLayout( TRUE ) |
967 | if ( mainWindow() ) { | 967 | if ( mainWindow() ) { |
968 | QMainWindow *mw = mainWindow(); | 968 | QMainWindow *mw = mainWindow(); |
969 | mw->setUpdatesEnabled( FALSE ); | 969 | mw->setUpdatesEnabled( FALSE ); |
970 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); | 970 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); |
971 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); | 971 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); |
972 | mw->setUpdatesEnabled( TRUE ); | 972 | mw->setUpdatesEnabled( TRUE ); |
973 | } | 973 | } |
974 | } | 974 | } |
975 | 975 | ||
976 | 976 | ||
977 | KToolBar::IconText KToolBar::iconText() const | 977 | KToolBar::IconText KToolBar::iconText() const |
978 | { | 978 | { |
979 | return d->m_iconText; | 979 | return d->m_iconText; |
980 | } | 980 | } |
981 | 981 | ||
982 | 982 | ||
983 | void KToolBar::setIconSize(int size) | 983 | void KToolBar::setIconSize(int size) |
984 | { | 984 | { |
985 | setIconSize( size, true ); | 985 | setIconSize( size, true ); |
986 | } | 986 | } |
987 | 987 | ||
988 | void KToolBar::setIconSize(int size, bool update) | 988 | void KToolBar::setIconSize(int size, bool update) |
989 | { | 989 | { |
990 | bool doUpdate=false; | 990 | bool doUpdate=false; |
991 | 991 | ||
992 | if ( size != d->m_iconSize ) { | 992 | if ( size != d->m_iconSize ) { |
993 | d->m_iconSize = size; | 993 | d->m_iconSize = size; |
994 | doUpdate=true; | 994 | doUpdate=true; |
995 | } | 995 | } |
996 | 996 | ||
997 | if (update == false) | 997 | if (update == false) |
998 | return; | 998 | return; |
999 | 999 | ||
1000 | if (doUpdate) | 1000 | if (doUpdate) |
1001 | emit modechange(); // tell buttons what happened | 1001 | emit modechange(); // tell buttons what happened |
1002 | 1002 | ||
1003 | // ugly hack to force a QMainWindow::triggerLayout( TRUE ) | 1003 | // ugly hack to force a QMainWindow::triggerLayout( TRUE ) |
1004 | if ( mainWindow() ) { | 1004 | if ( mainWindow() ) { |
1005 | QMainWindow *mw = mainWindow(); | 1005 | QMainWindow *mw = mainWindow(); |
1006 | mw->setUpdatesEnabled( FALSE ); | 1006 | mw->setUpdatesEnabled( FALSE ); |
1007 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); | 1007 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); |
1008 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); | 1008 | mw->setToolBarsMovable( !mw->toolBarsMovable() ); |
1009 | mw->setUpdatesEnabled( TRUE ); | 1009 | mw->setUpdatesEnabled( TRUE ); |
1010 | } | 1010 | } |
1011 | } | 1011 | } |
1012 | 1012 | ||
1013 | 1013 | ||
1014 | int KToolBar::iconSize() const | 1014 | int KToolBar::iconSize() const |
1015 | { | 1015 | { |
1016 | /*US | 1016 | /*US |
1017 | if ( !d->m_iconSize ) // default value? | 1017 | if ( !d->m_iconSize ) // default value? |
1018 | { | 1018 | { |
1019 | if (!::qstrcmp(QObject::name(), "mainToolBar")) | 1019 | if (!::qstrcmp(QObject::name(), "mainToolBar")) |
1020 | return KGlobal::iconLoader()->currentSize(KIcon::MainToolbar); | 1020 | return KGlobal::iconLoader()->currentSize(KIcon::MainToolbar); |
1021 | else | 1021 | else |
1022 | return KGlobal::iconLoader()->currentSize(KIcon::Toolbar); | 1022 | return KGlobal::iconLoader()->currentSize(KIcon::Toolbar); |
1023 | } | 1023 | } |
1024 | return d->m_iconSize; | 1024 | return d->m_iconSize; |
1025 | */ | 1025 | */ |
1026 | int ret = 18; | 1026 | int ret = 18; |
1027 | if ( QApplication::desktop()->width() > 320 && QApplication::desktop()->width() < 650 ) | 1027 | if ( QApplication::desktop()->width() > 320 ) |
1028 | ret = 30; | 1028 | ret = 30; |
1029 | return ret; | 1029 | return ret; |
1030 | } | 1030 | } |
1031 | 1031 | ||
1032 | 1032 | ||
1033 | void KToolBar::setEnableContextMenu(bool enable ) | 1033 | void KToolBar::setEnableContextMenu(bool enable ) |
1034 | { | 1034 | { |
1035 | d->m_enableContext = enable; | 1035 | d->m_enableContext = enable; |
1036 | } | 1036 | } |
1037 | 1037 | ||
1038 | 1038 | ||
1039 | bool KToolBar::contextMenuEnabled() const | 1039 | bool KToolBar::contextMenuEnabled() const |
1040 | { | 1040 | { |
1041 | return d->m_enableContext; | 1041 | return d->m_enableContext; |
1042 | } | 1042 | } |
1043 | 1043 | ||
1044 | 1044 | ||
1045 | void KToolBar::setItemNoStyle(int id, bool no_style ) | 1045 | void KToolBar::setItemNoStyle(int id, bool no_style ) |
1046 | { | 1046 | { |
1047 | Id2WidgetMap::Iterator it = id2widget.find( id ); | 1047 | Id2WidgetMap::Iterator it = id2widget.find( id ); |
1048 | if ( it == id2widget.end() ) | 1048 | if ( it == id2widget.end() ) |
1049 | return; | 1049 | return; |
1050 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); | 1050 | //US KToolBarButton * button = dynamic_cast<KToolBarButton *>( *it ); |
1051 | KToolBarButton * button = (KToolBarButton *)( *it ); | 1051 | KToolBarButton * button = (KToolBarButton *)( *it ); |
1052 | if (button) | 1052 | if (button) |
1053 | button->setNoStyle( no_style ); | 1053 | button->setNoStyle( no_style ); |
1054 | } | 1054 | } |
1055 | 1055 | ||
1056 | 1056 | ||
1057 | void KToolBar::setFlat (bool flag) | 1057 | void KToolBar::setFlat (bool flag) |
1058 | { | 1058 | { |
1059 | if ( !mainWindow() ) | 1059 | if ( !mainWindow() ) |
1060 | return; | 1060 | return; |
1061 | if ( flag ) | 1061 | if ( flag ) |
1062 | //US mainWindow()->moveDockWindow( this, DockMinimized ); | 1062 | //US mainWindow()->moveDockWindow( this, DockMinimized ); |
1063 | mainWindow()->moveToolBar( this, QMainWindow::Minimized ); | 1063 | mainWindow()->moveToolBar( this, QMainWindow::Minimized ); |
1064 | else | 1064 | else |
1065 | //US mainWindow()->moveDockWindow( this, DockTop ); | 1065 | //US mainWindow()->moveDockWindow( this, DockTop ); |
1066 | mainWindow()->moveToolBar( this, QMainWindow::Top ); | 1066 | mainWindow()->moveToolBar( this, QMainWindow::Top ); |
1067 | // And remember to save the new look later | 1067 | // And remember to save the new look later |
1068 | /*US | 1068 | /*US |
1069 | if ( mainWindow()->inherits( "KMainWindow" ) ) | 1069 | if ( mainWindow()->inherits( "KMainWindow" ) ) |
1070 | static_cast<KMainWindow *>(mainWindow())->setSettingsDirty(); | 1070 | static_cast<KMainWindow *>(mainWindow())->setSettingsDirty(); |
1071 | */ | 1071 | */ |
1072 | } | 1072 | } |
1073 | 1073 | ||
1074 | 1074 | ||
1075 | int KToolBar::count() const | 1075 | int KToolBar::count() const |
1076 | { | 1076 | { |
1077 | return id2widget.count(); | 1077 | return id2widget.count(); |
1078 | } | 1078 | } |
1079 | 1079 | ||
1080 | 1080 | ||
1081 | void KToolBar::saveState() | 1081 | void KToolBar::saveState() |
1082 | { | 1082 | { |
1083 | /*US | 1083 | /*US |
1084 | // first, try to save to the xml file | 1084 | // first, try to save to the xml file |
1085 | if ( d->m_xmlguiClient && !d->m_xmlguiClient->xmlFile().isEmpty() ) { | 1085 | if ( d->m_xmlguiClient && !d->m_xmlguiClient->xmlFile().isEmpty() ) { |
1086 | // go down one level to get to the right tags | 1086 | // go down one level to get to the right tags |
1087 | QDomElement elem = d->m_xmlguiClient->domDocument().documentElement().toElement(); | 1087 | QDomElement elem = d->m_xmlguiClient->domDocument().documentElement().toElement(); |
1088 | elem = elem.firstChild().toElement(); | 1088 | elem = elem.firstChild().toElement(); |
1089 | QString barname(!::qstrcmp(name(), "unnamed") ? "mainToolBar" : name()); | 1089 | QString barname(!::qstrcmp(name(), "unnamed") ? "mainToolBar" : name()); |
1090 | QDomElement current; | 1090 | QDomElement current; |
1091 | // now try to find our toolbar | 1091 | // now try to find our toolbar |
1092 | d->modified = false; | 1092 | d->modified = false; |
1093 | for( ; !elem.isNull(); elem = elem.nextSibling().toElement() ) { | 1093 | for( ; !elem.isNull(); elem = elem.nextSibling().toElement() ) { |
1094 | current = elem; | 1094 | current = elem; |
1095 | 1095 | ||
1096 | if ( current.tagName().lower() != "toolbar" ) | 1096 | if ( current.tagName().lower() != "toolbar" ) |
1097 | continue; | 1097 | continue; |
1098 | 1098 | ||
1099 | QString curname(current.attribute( "name" )); | 1099 | QString curname(current.attribute( "name" )); |
1100 | 1100 | ||
1101 | if ( curname == barname ) { | 1101 | if ( curname == barname ) { |
1102 | saveState( current ); | 1102 | saveState( current ); |
1103 | break; | 1103 | break; |
1104 | } | 1104 | } |
1105 | } | 1105 | } |
1106 | // if we didn't make changes, then just return | 1106 | // if we didn't make changes, then just return |
1107 | if ( !d->modified ) | 1107 | if ( !d->modified ) |
1108 | return; | 1108 | return; |
1109 | 1109 | ||
1110 | // now we load in the (non-merged) local file | 1110 | // now we load in the (non-merged) local file |
1111 | QString local_xml(KXMLGUIFactory::readConfigFile(d->m_xmlguiClient->xmlFile(), true, d->m_xmlguiClient->instance())); | 1111 | QString local_xml(KXMLGUIFactory::readConfigFile(d->m_xmlguiClient->xmlFile(), true, d->m_xmlguiClient->instance())); |
1112 | QDomDocument local; | 1112 | QDomDocument local; |
1113 | local.setContent(local_xml); | 1113 | local.setContent(local_xml); |
1114 | 1114 | ||
1115 | // make sure we don't append if this toolbar already exists locally | 1115 | // make sure we don't append if this toolbar already exists locally |
1116 | bool just_append = true; | 1116 | bool just_append = true; |
1117 | elem = local.documentElement().toElement(); | 1117 | elem = local.documentElement().toElement(); |
1118 | KXMLGUIFactory::removeDOMComments( elem ); | 1118 | KXMLGUIFactory::removeDOMComments( elem ); |
1119 | elem = elem.firstChild().toElement(); | 1119 | elem = elem.firstChild().toElement(); |
1120 | for( ; !elem.isNull(); elem = elem.nextSibling().toElement() ) { | 1120 | for( ; !elem.isNull(); elem = elem.nextSibling().toElement() ) { |
1121 | if ( elem.tagName().lower() != "toolbar" ) | 1121 | if ( elem.tagName().lower() != "toolbar" ) |
1122 | continue; | 1122 | continue; |
1123 | 1123 | ||
1124 | QString curname(elem.attribute( "name" )); | 1124 | QString curname(elem.attribute( "name" )); |
1125 | 1125 | ||
1126 | if ( curname == barname ) { | 1126 | if ( curname == barname ) { |
1127 | just_append = false; | 1127 | just_append = false; |
1128 | local.documentElement().replaceChild( current, elem ); | 1128 | local.documentElement().replaceChild( current, elem ); |
1129 | break; | 1129 | break; |
1130 | } | 1130 | } |
1131 | } | 1131 | } |
1132 | 1132 | ||
1133 | if (just_append) | 1133 | if (just_append) |
1134 | local.documentElement().appendChild( current ); | 1134 | local.documentElement().appendChild( current ); |
1135 | 1135 | ||
1136 | KXMLGUIFactory::saveConfigFile(local, d->m_xmlguiClient->localXMLFile(), d->m_xmlguiClient->instance() ); | 1136 | KXMLGUIFactory::saveConfigFile(local, d->m_xmlguiClient->localXMLFile(), d->m_xmlguiClient->instance() ); |
1137 | 1137 | ||
1138 | return; | 1138 | return; |
1139 | } | 1139 | } |
1140 | */ | 1140 | */ |
1141 | // if that didn't work, we save to the config file | 1141 | // if that didn't work, we save to the config file |
1142 | KConfig *config = KGlobal::config(); | 1142 | KConfig *config = KGlobal::config(); |
1143 | saveSettings(config, QString::null); | 1143 | saveSettings(config, QString::null); |
1144 | config->sync(); | 1144 | config->sync(); |
1145 | } | 1145 | } |
1146 | 1146 | ||
1147 | QString KToolBar::settingsGroup() | 1147 | QString KToolBar::settingsGroup() |
1148 | { | 1148 | { |
1149 | QString configGroup; | 1149 | QString configGroup; |
1150 | if (!::qstrcmp(name(), "unnamed") || !::qstrcmp(name(), "mainToolBar")) | 1150 | if (!::qstrcmp(name(), "unnamed") || !::qstrcmp(name(), "mainToolBar")) |
1151 | configGroup = "Toolbar style"; | 1151 | configGroup = "Toolbar style"; |
1152 | else | 1152 | else |
1153 | configGroup = QString(name()) + " Toolbar style"; | 1153 | configGroup = QString(name()) + " Toolbar style"; |
1154 | if ( this->mainWindow() ) | 1154 | if ( this->mainWindow() ) |
1155 | { | 1155 | { |
1156 | configGroup.prepend(" "); | 1156 | configGroup.prepend(" "); |
1157 | configGroup.prepend( this->mainWindow()->name() ); | 1157 | configGroup.prepend( this->mainWindow()->name() ); |
1158 | } | 1158 | } |
1159 | return configGroup; | 1159 | return configGroup; |
1160 | } | 1160 | } |
1161 | 1161 | ||
1162 | void KToolBar::saveSettings(KConfig *config, const QString &_configGroup) | 1162 | void KToolBar::saveSettings(KConfig *config, const QString &_configGroup) |
1163 | { | 1163 | { |
1164 | QString configGroup = _configGroup; | 1164 | QString configGroup = _configGroup; |
1165 | if (configGroup.isEmpty()) | 1165 | if (configGroup.isEmpty()) |
1166 | configGroup = settingsGroup(); | 1166 | configGroup = settingsGroup(); |
1167 | //kdDebug(220) << "KToolBar::saveSettings group=" << _configGroup << " -> " << configGroup << endl; | 1167 | //kdDebug(220) << "KToolBar::saveSettings group=" << _configGroup << " -> " << configGroup << endl; |
1168 | 1168 | ||
1169 | QString position, icontext; | 1169 | QString position, icontext; |
1170 | int index; | 1170 | int index; |
1171 | getAttributes( position, icontext, index ); | 1171 | getAttributes( position, icontext, index ); |
1172 | 1172 | ||
1173 | //kdDebug(220) << "KToolBar::saveSettings " << name() << " newLine=" << newLine << endl; | 1173 | //kdDebug(220) << "KToolBar::saveSettings " << name() << " newLine=" << newLine << endl; |
1174 | 1174 | ||
1175 | KConfigGroupSaver saver(config, configGroup); | 1175 | KConfigGroupSaver saver(config, configGroup); |
1176 | 1176 | ||
1177 | if ( position != d->PositionDefault ) | 1177 | if ( position != d->PositionDefault ) |
1178 | config->writeEntry("Position", position); | 1178 | config->writeEntry("Position", position); |
1179 | else | 1179 | else |
1180 | config->deleteEntry("Position"); | 1180 | config->deleteEntry("Position"); |
1181 | 1181 | ||
1182 | if ( icontext != d->IconTextDefault ) | 1182 | if ( icontext != d->IconTextDefault ) |
1183 | config->writeEntry("IconText", icontext); | 1183 | config->writeEntry("IconText", icontext); |
1184 | else | 1184 | else |
1185 | config->deleteEntry("IconText"); | 1185 | config->deleteEntry("IconText"); |
1186 | 1186 | ||
1187 | if ( iconSize() != d->IconSizeDefault ) | 1187 | if ( iconSize() != d->IconSizeDefault ) |
1188 | config->writeEntry("IconSize", iconSize()); | 1188 | config->writeEntry("IconSize", iconSize()); |
1189 | else | 1189 | else |
1190 | config->deleteEntry("IconSize"); | 1190 | config->deleteEntry("IconSize"); |
1191 | 1191 | ||
1192 | if ( isHidden() != d->HiddenDefault ) | 1192 | if ( isHidden() != d->HiddenDefault ) |
1193 | config->writeEntry("Hidden", isHidden()); | 1193 | config->writeEntry("Hidden", isHidden()); |
1194 | else | 1194 | else |
1195 | config->deleteEntry("Hidden"); | 1195 | config->deleteEntry("Hidden"); |
1196 | 1196 | ||
1197 | if ( index != d->IndexDefault ) | 1197 | if ( index != d->IndexDefault ) |
1198 | config->writeEntry( "Index", index ); | 1198 | config->writeEntry( "Index", index ); |
1199 | else | 1199 | else |
1200 | config->deleteEntry("Index"); | 1200 | config->deleteEntry("Index"); |
1201 | //US the older version of KDE (used on the Zaurus) has no Offset property | 1201 | //US the older version of KDE (used on the Zaurus) has no Offset property |
1202 | /* if ( offset() != d->OffsetDefault ) | 1202 | /* if ( offset() != d->OffsetDefault ) |
1203 | config->writeEntry( "Offset", offset() ); | 1203 | config->writeEntry( "Offset", offset() ); |
1204 | else | 1204 | else |
1205 | */ | 1205 | */ |
1206 | config->deleteEntry("Offset"); | 1206 | config->deleteEntry("Offset"); |
1207 | 1207 | ||
1208 | //US the older version of KDE (used on the Zaurus) has no NewLine property | 1208 | //US the older version of KDE (used on the Zaurus) has no NewLine property |
1209 | /* | 1209 | /* |
1210 | if ( newLine() != d->NewLineDefault ) | 1210 | if ( newLine() != d->NewLineDefault ) |
1211 | config->writeEntry( "NewLine", newLine() ); | 1211 | config->writeEntry( "NewLine", newLine() ); |
1212 | else | 1212 | else |
1213 | */ | 1213 | */ |
1214 | config->deleteEntry("NewLine"); | 1214 | config->deleteEntry("NewLine"); |
1215 | } | 1215 | } |
1216 | 1216 | ||
1217 | void KToolBar::setXMLGUIClient( KXMLGUIClient *client ) | 1217 | void KToolBar::setXMLGUIClient( KXMLGUIClient *client ) |
1218 | { | 1218 | { |
1219 | d->m_xmlguiClient = client; | 1219 | d->m_xmlguiClient = client; |
1220 | } | 1220 | } |
1221 | 1221 | ||
1222 | void KToolBar::setText( const QString & txt ) | 1222 | void KToolBar::setText( const QString & txt ) |
1223 | { | 1223 | { |
1224 | //US setLabel( txt + " ( " + kapp->caption() + " ) " ); | 1224 | //US setLabel( txt + " ( " + kapp->caption() + " ) " ); |
1225 | setLabel( txt + " ( " + KGlobal::getAppName() + " ) " ); | 1225 | setLabel( txt + " ( " + KGlobal::getAppName() + " ) " ); |
1226 | } | 1226 | } |
1227 | 1227 | ||
1228 | 1228 | ||
1229 | QString KToolBar::text() const | 1229 | QString KToolBar::text() const |
1230 | { | 1230 | { |
1231 | return label(); | 1231 | return label(); |
1232 | } | 1232 | } |
1233 | 1233 | ||
1234 | 1234 | ||
1235 | void KToolBar::doConnections( KToolBarButton *button ) | 1235 | void KToolBar::doConnections( KToolBarButton *button ) |
1236 | { | 1236 | { |
1237 | connect(button, SIGNAL(clicked(int)), this, SIGNAL( clicked( int ) ) ); | 1237 | connect(button, SIGNAL(clicked(int)), this, SIGNAL( clicked( int ) ) ); |
1238 | connect(button, SIGNAL(doubleClicked(int)), this, SIGNAL( doubleClicked( int ) ) ); | 1238 | connect(button, SIGNAL(doubleClicked(int)), this, SIGNAL( doubleClicked( int ) ) ); |
1239 | connect(button, SIGNAL(released(int)), this, SIGNAL( released( int ) ) ); | 1239 | connect(button, SIGNAL(released(int)), this, SIGNAL( released( int ) ) ); |
1240 | connect(button, SIGNAL(pressed(int)), this, SIGNAL( pressed( int ) ) ); | 1240 | connect(button, SIGNAL(pressed(int)), this, SIGNAL( pressed( int ) ) ); |
1241 | connect(button, SIGNAL(toggled(int)), this, SIGNAL( toggled( int ) ) ); | 1241 | connect(button, SIGNAL(toggled(int)), this, SIGNAL( toggled( int ) ) ); |
1242 | connect(button, SIGNAL(highlighted(int, bool)), this, SIGNAL( highlighted( int, bool ) ) ); | 1242 | connect(button, SIGNAL(highlighted(int, bool)), this, SIGNAL( highlighted( int, bool ) ) ); |
1243 | } | 1243 | } |
1244 | 1244 | ||
1245 | void KToolBar::mousePressEvent ( QMouseEvent *m ) | 1245 | void KToolBar::mousePressEvent ( QMouseEvent *m ) |
1246 | { | 1246 | { |
1247 | if ( !mainWindow() ) | 1247 | if ( !mainWindow() ) |
1248 | return; | 1248 | return; |
1249 | QMainWindow *mw = mainWindow(); | 1249 | QMainWindow *mw = mainWindow(); |
1250 | if ( mw->toolBarsMovable() && d->m_enableContext ) { | 1250 | if ( mw->toolBarsMovable() && d->m_enableContext ) { |
1251 | if ( m->button() == RightButton ) { | 1251 | if ( m->button() == RightButton ) { |
1252 | int i = contextMenu()->exec( m->globalPos(), 0 ); | 1252 | int i = contextMenu()->exec( m->globalPos(), 0 ); |
1253 | switch ( i ) { | 1253 | switch ( i ) { |
1254 | case -1: | 1254 | case -1: |
1255 | return; // popup cancelled | 1255 | return; // popup cancelled |
1256 | case CONTEXT_LEFT: | 1256 | case CONTEXT_LEFT: |
1257 | //US mw->moveDockWindow( this, DockLeft ); | 1257 | //US mw->moveDockWindow( this, DockLeft ); |
1258 | mw->moveToolBar( this, QMainWindow::Left ); | 1258 | mw->moveToolBar( this, QMainWindow::Left ); |
1259 | break; | 1259 | break; |
1260 | case CONTEXT_RIGHT: | 1260 | case CONTEXT_RIGHT: |
1261 | //US mw->moveDockWindow( this, DockRight ); | 1261 | //US mw->moveDockWindow( this, DockRight ); |
1262 | mw->moveToolBar( this, QMainWindow::Right ); | 1262 | mw->moveToolBar( this, QMainWindow::Right ); |
1263 | break; | 1263 | break; |
1264 | case CONTEXT_TOP: | 1264 | case CONTEXT_TOP: |
1265 | //US mw->moveDockWindow( this, DockTop ); | 1265 | //US mw->moveDockWindow( this, DockTop ); |
1266 | mw->moveToolBar( this, QMainWindow::Top ); | 1266 | mw->moveToolBar( this, QMainWindow::Top ); |
1267 | break; | 1267 | break; |
1268 | case CONTEXT_BOTTOM: | 1268 | case CONTEXT_BOTTOM: |
1269 | //US mw->moveDockWindow( this, DockBottom ); | 1269 | //US mw->moveDockWindow( this, DockBottom ); |
1270 | mw->moveToolBar( this, QMainWindow::Bottom ); | 1270 | mw->moveToolBar( this, QMainWindow::Bottom ); |
1271 | break; | 1271 | break; |
1272 | case CONTEXT_FLOAT: | 1272 | case CONTEXT_FLOAT: |
1273 | break; | 1273 | break; |
1274 | case CONTEXT_FLAT: | 1274 | case CONTEXT_FLAT: |
1275 | //US mw->moveDockWindow( this, DockMinimized ); | 1275 | //US mw->moveDockWindow( this, DockMinimized ); |
1276 | mw->moveToolBar( this, QMainWindow::Minimized ); | 1276 | mw->moveToolBar( this, QMainWindow::Minimized ); |
1277 | break; | 1277 | break; |
1278 | case CONTEXT_ICONS: | 1278 | case CONTEXT_ICONS: |
1279 | setIconText( IconOnly ); | 1279 | setIconText( IconOnly ); |
1280 | break; | 1280 | break; |
1281 | case CONTEXT_TEXTRIGHT: | 1281 | case CONTEXT_TEXTRIGHT: |
1282 | setIconText( IconTextRight ); | 1282 | setIconText( IconTextRight ); |
1283 | break; | 1283 | break; |
1284 | case CONTEXT_TEXT: | 1284 | case CONTEXT_TEXT: |
1285 | setIconText( TextOnly ); | 1285 | setIconText( TextOnly ); |
1286 | break; | 1286 | break; |
1287 | case CONTEXT_TEXTUNDER: | 1287 | case CONTEXT_TEXTUNDER: |
1288 | setIconText( IconTextBottom ); | 1288 | setIconText( IconTextBottom ); |
1289 | break; | 1289 | break; |
1290 | default: | 1290 | default: |
1291 | if ( i >= CONTEXT_ICONSIZES ) | 1291 | if ( i >= CONTEXT_ICONSIZES ) |
1292 | setIconSize( i - CONTEXT_ICONSIZES ); | 1292 | setIconSize( i - CONTEXT_ICONSIZES ); |
1293 | else | 1293 | else |
1294 | return; // assume this was an action handled elsewhere, no need for setSettingsDirty() | 1294 | return; // assume this was an action handled elsewhere, no need for setSettingsDirty() |
1295 | } | 1295 | } |
1296 | /*US | 1296 | /*US |
1297 | if ( mw->inherits("KMainWindow") ) | 1297 | if ( mw->inherits("KMainWindow") ) |
1298 | static_cast<KMainWindow *>(mw)->setSettingsDirty(); | 1298 | static_cast<KMainWindow *>(mw)->setSettingsDirty(); |
1299 | */ | 1299 | */ |
1300 | } | 1300 | } |
1301 | } | 1301 | } |
1302 | } | 1302 | } |
1303 | 1303 | ||
1304 | 1304 | ||
1305 | void KToolBar::rebuildLayout() | 1305 | void KToolBar::rebuildLayout() |
1306 | { | 1306 | { |
1307 | 1307 | ||
1308 | for(QWidget *w=d->idleButtons.first(); w; w=d->idleButtons.next()) | 1308 | for(QWidget *w=d->idleButtons.first(); w; w=d->idleButtons.next()) |
1309 | w->blockSignals(false); | 1309 | w->blockSignals(false); |
1310 | d->idleButtons.clear(); | 1310 | d->idleButtons.clear(); |
1311 | 1311 | ||
1312 | layoutTimer->stop(); | 1312 | layoutTimer->stop(); |
1313 | QApplication::sendPostedEvents( this, QEvent::ChildInserted ); | 1313 | QApplication::sendPostedEvents( this, QEvent::ChildInserted ); |
1314 | QBoxLayout *l = boxLayout(); | 1314 | QBoxLayout *l = boxLayout(); |
1315 | l->setMargin( 1 ); | 1315 | l->setMargin( 1 ); |
1316 | // clear the old layout | 1316 | // clear the old layout |
1317 | QLayoutIterator it = l->iterator(); | 1317 | QLayoutIterator it = l->iterator(); |
1318 | 1318 | ||
1319 | while ( it.current() ) { | 1319 | while ( it.current() ) { |
1320 | it.deleteCurrent(); | 1320 | it.deleteCurrent(); |
1321 | } | 1321 | } |
1322 | for ( QWidget *w = widgets.first(); w; w = widgets.next() ) { | 1322 | for ( QWidget *w = widgets.first(); w; w = widgets.next() ) { |
1323 | if ( w == rightAligned ) { | 1323 | if ( w == rightAligned ) { |
1324 | continue; | 1324 | continue; |
1325 | } | 1325 | } |
1326 | if ( w->inherits( "KToolBarSeparator" ) && | 1326 | if ( w->inherits( "KToolBarSeparator" ) && |
1327 | !( (KToolBarSeparator*)w )->showLine() ) { | 1327 | !( (KToolBarSeparator*)w )->showLine() ) { |
1328 | l->addSpacing( 6 ); | 1328 | l->addSpacing( 6 ); |
1329 | w->hide(); | 1329 | w->hide(); |
1330 | continue; | 1330 | continue; |
1331 | } | 1331 | } |
1332 | if ( w->inherits( "QPopupMenu" ) ) | 1332 | if ( w->inherits( "QPopupMenu" ) ) |
1333 | continue; | 1333 | continue; |
1334 | l->addWidget( w ); | 1334 | l->addWidget( w ); |
1335 | w->show(); | 1335 | w->show(); |
1336 | } | 1336 | } |
1337 | if ( rightAligned ) { | 1337 | if ( rightAligned ) { |
1338 | l->addStretch(); | 1338 | l->addStretch(); |
1339 | l->addWidget( rightAligned ); | 1339 | l->addWidget( rightAligned ); |
1340 | rightAligned->show(); | 1340 | rightAligned->show(); |
1341 | } | 1341 | } |
1342 | 1342 | ||
1343 | if ( fullSize() ) { | 1343 | if ( fullSize() ) { |
1344 | // This code sucks. It makes the last combo in a toolbar VERY big (e.g. zoom combo in kword). | 1344 | // This code sucks. It makes the last combo in a toolbar VERY big (e.g. zoom combo in kword). |
1345 | //if ( !stretchableWidget && widgets.last() && | 1345 | //if ( !stretchableWidget && widgets.last() && |
1346 | // !widgets.last()->inherits( "QButton" ) && !widgets.last()->inherits( "KAnimWidget" ) ) | 1346 | // !widgets.last()->inherits( "QButton" ) && !widgets.last()->inherits( "KAnimWidget" ) ) |
1347 | // setStretchableWidget( widgets.last() ); | 1347 | // setStretchableWidget( widgets.last() ); |
1348 | if ( !rightAligned ) | 1348 | if ( !rightAligned ) |
1349 | l->addStretch(); | 1349 | l->addStretch(); |
1350 | if ( stretchableWidget ) | 1350 | if ( stretchableWidget ) |
1351 | l->setStretchFactor( stretchableWidget, 10 ); | 1351 | l->setStretchFactor( stretchableWidget, 10 ); |
1352 | } | 1352 | } |
1353 | l->invalidate(); | 1353 | l->invalidate(); |
1354 | QApplication::postEvent( this, new QEvent( QEvent::LayoutHint ) ); | 1354 | QApplication::postEvent( this, new QEvent( QEvent::LayoutHint ) ); |
1355 | //#endif //DESKTOP_VERSION | 1355 | //#endif //DESKTOP_VERSION |
1356 | } | 1356 | } |
1357 | 1357 | ||
1358 | void KToolBar::childEvent( QChildEvent *e ) | 1358 | void KToolBar::childEvent( QChildEvent *e ) |
1359 | { | 1359 | { |
1360 | 1360 | ||
1361 | if ( e->child()->isWidgetType() ) { | 1361 | if ( e->child()->isWidgetType() ) { |
1362 | QWidget * w = (QWidget*)e->child(); | 1362 | QWidget * w = (QWidget*)e->child(); |
1363 | if ( e->type() == QEvent::ChildInserted ) { | 1363 | if ( e->type() == QEvent::ChildInserted ) { |
1364 | if ( !e->child()->inherits( "QPopupMenu" ) && | 1364 | if ( !e->child()->inherits( "QPopupMenu" ) && |
1365 | ::qstrcmp( "qt_dockwidget_internal", e->child()->name() ) != 0 ) { | 1365 | ::qstrcmp( "qt_dockwidget_internal", e->child()->name() ) != 0 ) { |
1366 | 1366 | ||
1367 | // prevent items that have been explicitly inserted by insert*() from | 1367 | // prevent items that have been explicitly inserted by insert*() from |
1368 | // being inserted again | 1368 | // being inserted again |
1369 | if ( !widget2id.contains( w ) ) | 1369 | if ( !widget2id.contains( w ) ) |
1370 | { | 1370 | { |
1371 | int dummy = -1; | 1371 | int dummy = -1; |
1372 | insertWidgetInternal( w, dummy, -1 ); | 1372 | insertWidgetInternal( w, dummy, -1 ); |
1373 | } | 1373 | } |
1374 | } | 1374 | } |
1375 | } else { | 1375 | } else { |
1376 | removeWidgetInternal( w ); | 1376 | removeWidgetInternal( w ); |
1377 | } | 1377 | } |
1378 | if ( isVisibleTo( 0 ) ) | 1378 | if ( isVisibleTo( 0 ) ) |
1379 | { | 1379 | { |
1380 | QBoxLayout *l = boxLayout(); | 1380 | QBoxLayout *l = boxLayout(); |
1381 | // QLayout *l = layout(); | 1381 | // QLayout *l = layout(); |
1382 | 1382 | ||
1383 | // clear the old layout so that we don't get unnecassery layout | 1383 | // clear the old layout so that we don't get unnecassery layout |
1384 | // changes till we have rebuild the thing | 1384 | // changes till we have rebuild the thing |
1385 | QLayoutIterator it = l->iterator(); | 1385 | QLayoutIterator it = l->iterator(); |
1386 | while ( it.current() ) { | 1386 | while ( it.current() ) { |
1387 | it.deleteCurrent(); | 1387 | it.deleteCurrent(); |
1388 | } | 1388 | } |
1389 | layoutTimer->start( 50, TRUE ); | 1389 | layoutTimer->start( 50, TRUE ); |
1390 | } | 1390 | } |
1391 | } | 1391 | } |
1392 | QToolBar::childEvent( e ); | 1392 | QToolBar::childEvent( e ); |
1393 | } | 1393 | } |
1394 | 1394 | ||
1395 | void KToolBar::insertWidgetInternal( QWidget *w, int &index, int id ) | 1395 | void KToolBar::insertWidgetInternal( QWidget *w, int &index, int id ) |
1396 | { | 1396 | { |
1397 | // we can't have it in widgets, or something is really wrong | 1397 | // we can't have it in widgets, or something is really wrong |
1398 | //widgets.removeRef( w ); | 1398 | //widgets.removeRef( w ); |
1399 | 1399 | ||
1400 | connect( w, SIGNAL( destroyed() ), | 1400 | connect( w, SIGNAL( destroyed() ), |
1401 | this, SLOT( widgetDestroyed() ) ); | 1401 | this, SLOT( widgetDestroyed() ) ); |
1402 | if ( index == -1 || index > (int)widgets.count() ) { | 1402 | if ( index == -1 || index > (int)widgets.count() ) { |
1403 | widgets.append( w ); | 1403 | widgets.append( w ); |
1404 | index = (int)widgets.count(); | 1404 | index = (int)widgets.count(); |
1405 | } | 1405 | } |
1406 | else | 1406 | else |
1407 | widgets.insert( index, w ); | 1407 | widgets.insert( index, w ); |
1408 | if ( id == -1 ) | 1408 | if ( id == -1 ) |
1409 | id = id2widget.count(); | 1409 | id = id2widget.count(); |
1410 | id2widget.insert( id, w ); | 1410 | id2widget.insert( id, w ); |
1411 | widget2id.insert( w, id ); | 1411 | widget2id.insert( w, id ); |
1412 | } | 1412 | } |
1413 | 1413 | ||
1414 | void KToolBar::showEvent( QShowEvent *e ) | 1414 | void KToolBar::showEvent( QShowEvent *e ) |
1415 | { | 1415 | { |
1416 | QToolBar::showEvent( e ); | 1416 | QToolBar::showEvent( e ); |
1417 | rebuildLayout(); | 1417 | rebuildLayout(); |
1418 | } | 1418 | } |
1419 | 1419 | ||
1420 | void KToolBar::setStretchableWidget( QWidget *w ) | 1420 | void KToolBar::setStretchableWidget( QWidget *w ) |
1421 | { | 1421 | { |
1422 | QToolBar::setStretchableWidget( w ); | 1422 | QToolBar::setStretchableWidget( w ); |
1423 | stretchableWidget = w; | 1423 | stretchableWidget = w; |
1424 | } | 1424 | } |
1425 | 1425 | ||
1426 | QSizePolicy KToolBar::sizePolicy() const | 1426 | QSizePolicy KToolBar::sizePolicy() const |
1427 | { | 1427 | { |
1428 | if ( orientation() == Horizontal ) | 1428 | if ( orientation() == Horizontal ) |
1429 | return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ); | 1429 | return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ); |
1430 | else | 1430 | else |
1431 | return QSizePolicy( QSizePolicy::Fixed, QSizePolicy::Expanding ); | 1431 | return QSizePolicy( QSizePolicy::Fixed, QSizePolicy::Expanding ); |
1432 | } | 1432 | } |
1433 | 1433 | ||
1434 | QSize KToolBar::sizeHint() const | 1434 | QSize KToolBar::sizeHint() const |
1435 | { | 1435 | { |
1436 | return QToolBar::sizeHint(); | 1436 | return QToolBar::sizeHint(); |
1437 | #if 0 | 1437 | #if 0 |
1438 | QWidget::polish(); | 1438 | QWidget::polish(); |
1439 | static int iii = 0; | 1439 | static int iii = 0; |
1440 | ++iii; | 1440 | ++iii; |
1441 | qDebug("++++++++ KToolBar::sizeHint() %d ", iii ); | 1441 | qDebug("++++++++ KToolBar::sizeHint() %d ", iii ); |
1442 | int margin = static_cast<QWidget*>(ncThis)->layout()->margin(); | 1442 | int margin = static_cast<QWidget*>(ncThis)->layout()->margin(); |
1443 | switch( barPos() ) | 1443 | switch( barPos() ) |
1444 | { | 1444 | { |
1445 | case KToolBar::Top: | 1445 | case KToolBar::Top: |
1446 | case KToolBar::Bottom: | 1446 | case KToolBar::Bottom: |
1447 | for ( QWidget *w = widgets.first(); w; w =widgets.next() ) | 1447 | for ( QWidget *w = widgets.first(); w; w =widgets.next() ) |
1448 | { | 1448 | { |
1449 | if ( w->inherits( "KToolBarSeparator" ) && | 1449 | if ( w->inherits( "KToolBarSeparator" ) && |
1450 | !( static_cast<KToolBarSeparator*>(w)->showLine() ) ) | 1450 | !( static_cast<KToolBarSeparator*>(w)->showLine() ) ) |
1451 | { | 1451 | { |
1452 | minSize += QSize(6, 0); | 1452 | minSize += QSize(6, 0); |
1453 | } | 1453 | } |
1454 | else | 1454 | else |
1455 | { | 1455 | { |
1456 | QSize sh = w->sizeHint(); | 1456 | QSize sh = w->sizeHint(); |
1457 | if (!sh.isValid()) | 1457 | if (!sh.isValid()) |
1458 | sh = w->minimumSize(); | 1458 | sh = w->minimumSize(); |
1459 | minSize = minSize.expandedTo(QSize(0, sh.height())); | 1459 | minSize = minSize.expandedTo(QSize(0, sh.height())); |
1460 | minSize += QSize(sh.width()+1, 0); | 1460 | minSize += QSize(sh.width()+1, 0); |
1461 | } | 1461 | } |
1462 | } | 1462 | } |
1463 | /*US | 1463 | /*US |
1464 | minSize += QSize(QApplication::style().pixelMetric( QStyle::PM_DockWindowHandleExtent ), 0); | 1464 | minSize += QSize(QApplication::style().pixelMetric( QStyle::PM_DockWindowHandleExtent ), 0); |
1465 | */ | 1465 | */ |
1466 | minSize += QSize(margin*2, margin*2); | 1466 | minSize += QSize(margin*2, margin*2); |
1467 | break; | 1467 | break; |
1468 | 1468 | ||
1469 | case KToolBar::Left: | 1469 | case KToolBar::Left: |
1470 | case KToolBar::Right: | 1470 | case KToolBar::Right: |
1471 | for ( QWidget *w = widgets.first(); w; w = widgets.next() ) | 1471 | for ( QWidget *w = widgets.first(); w; w = widgets.next() ) |
1472 | { | 1472 | { |
1473 | if ( w->inherits( "KToolBarSeparator" ) && | 1473 | if ( w->inherits( "KToolBarSeparator" ) && |
1474 | !( static_cast<KToolBarSeparator*>(w)->showLine() ) ) | 1474 | !( static_cast<KToolBarSeparator*>(w)->showLine() ) ) |
1475 | { | 1475 | { |
1476 | minSize += QSize(0, 6); | 1476 | minSize += QSize(0, 6); |
1477 | } | 1477 | } |
1478 | else | 1478 | else |
1479 | { | 1479 | { |
1480 | QSize sh = w->sizeHint(); | 1480 | QSize sh = w->sizeHint(); |
1481 | if (!sh.isValid()) | 1481 | if (!sh.isValid()) |
1482 | sh = w->minimumSize(); | 1482 | sh = w->minimumSize(); |
1483 | minSize = minSize.expandedTo(QSize(sh.width(), 0)); | 1483 | minSize = minSize.expandedTo(QSize(sh.width(), 0)); |
1484 | minSize += QSize(0, sh.height()+1); | 1484 | minSize += QSize(0, sh.height()+1); |
1485 | } | 1485 | } |
1486 | } | 1486 | } |
1487 | /*US | 1487 | /*US |
1488 | minSize += QSize(0, QApplication::style().pixelMetric( QStyle::PM_DockWindowHandleExtent )); | 1488 | minSize += QSize(0, QApplication::style().pixelMetric( QStyle::PM_DockWindowHandleExtent )); |
1489 | */ | 1489 | */ |
1490 | minSize += QSize(margin*2, margin*2); | 1490 | minSize += QSize(margin*2, margin*2); |
1491 | break; | 1491 | break; |
1492 | 1492 | ||
1493 | default: | 1493 | default: |
1494 | minSize = QToolBar::sizeHint(); | 1494 | minSize = QToolBar::sizeHint(); |
1495 | break; | 1495 | break; |
1496 | } | 1496 | } |
1497 | return minSize; | 1497 | return minSize; |
1498 | #endif | 1498 | #endif |
1499 | } | 1499 | } |
1500 | 1500 | ||
1501 | QSize KToolBar::minimumSize() const | 1501 | QSize KToolBar::minimumSize() const |
1502 | { | 1502 | { |
1503 | return minimumSizeHint(); | 1503 | return minimumSizeHint(); |
1504 | } | 1504 | } |
1505 | 1505 | ||
1506 | QSize KToolBar::minimumSizeHint() const | 1506 | QSize KToolBar::minimumSizeHint() const |
1507 | { | 1507 | { |
1508 | return sizeHint(); | 1508 | return sizeHint(); |
1509 | } | 1509 | } |
1510 | 1510 | ||
1511 | bool KToolBar::highlight() const | 1511 | bool KToolBar::highlight() const |
1512 | { | 1512 | { |
1513 | return d->m_highlight; | 1513 | return d->m_highlight; |
1514 | } | 1514 | } |
1515 | 1515 | ||
1516 | void KToolBar::hide() | 1516 | void KToolBar::hide() |
1517 | { | 1517 | { |
1518 | QToolBar::hide(); | 1518 | QToolBar::hide(); |
1519 | } | 1519 | } |
1520 | 1520 | ||
1521 | void KToolBar::show() | 1521 | void KToolBar::show() |
1522 | { | 1522 | { |
1523 | QToolBar::show(); | 1523 | QToolBar::show(); |
1524 | } | 1524 | } |
1525 | 1525 | ||
1526 | void KToolBar::resizeEvent( QResizeEvent *e ) | 1526 | void KToolBar::resizeEvent( QResizeEvent *e ) |
1527 | { | 1527 | { |
1528 | bool b = isUpdatesEnabled(); | 1528 | bool b = isUpdatesEnabled(); |
1529 | setUpdatesEnabled( FALSE ); | 1529 | setUpdatesEnabled( FALSE ); |
1530 | QToolBar::resizeEvent( e ); | 1530 | QToolBar::resizeEvent( e ); |
1531 | if (b) | 1531 | if (b) |
1532 | d->repaintTimer.start( 100, true ); | 1532 | d->repaintTimer.start( 100, true ); |
1533 | } | 1533 | } |
1534 | 1534 | ||
1535 | void KToolBar::slotIconChanged(int group) | 1535 | void KToolBar::slotIconChanged(int group) |
1536 | { | 1536 | { |
1537 | if ((group != KIcon::Toolbar) && (group != KIcon::MainToolbar)) | 1537 | if ((group != KIcon::Toolbar) && (group != KIcon::MainToolbar)) |
1538 | return; | 1538 | return; |
1539 | if ((group == KIcon::MainToolbar) != !::qstrcmp(name(), "mainToolBar")) | 1539 | if ((group == KIcon::MainToolbar) != !::qstrcmp(name(), "mainToolBar")) |
1540 | return; | 1540 | return; |
1541 | 1541 | ||
1542 | emit modechange(); | 1542 | emit modechange(); |
1543 | if (isVisible()) | 1543 | if (isVisible()) |
1544 | updateGeometry(); | 1544 | updateGeometry(); |
1545 | } | 1545 | } |
1546 | 1546 | ||
1547 | void KToolBar::slotReadConfig() | 1547 | void KToolBar::slotReadConfig() |
1548 | { | 1548 | { |
1549 | //kdDebug(220) << "KToolBar::slotReadConfig" << endl; | 1549 | //kdDebug(220) << "KToolBar::slotReadConfig" << endl; |
1550 | // Read appearance settings (hmm, we used to do both here, | 1550 | // Read appearance settings (hmm, we used to do both here, |
1551 | // but a well behaved application will call applyMainWindowSettings | 1551 | // but a well behaved application will call applyMainWindowSettings |
1552 | // anyway, right ?) | 1552 | // anyway, right ?) |
1553 | applyAppearanceSettings(KGlobal::config(), QString::null ); | 1553 | applyAppearanceSettings(KGlobal::config(), QString::null ); |
1554 | } | 1554 | } |
1555 | 1555 | ||
1556 | void KToolBar::slotAppearanceChanged() | 1556 | void KToolBar::slotAppearanceChanged() |
1557 | { | 1557 | { |
1558 | // Read appearance settings from global file. | 1558 | // Read appearance settings from global file. |
1559 | applyAppearanceSettings(KGlobal::config(), QString::null, true /* lose local settings */ ); | 1559 | applyAppearanceSettings(KGlobal::config(), QString::null, true /* lose local settings */ ); |
1560 | // And remember to save the new look later | 1560 | // And remember to save the new look later |
1561 | /*US | 1561 | /*US |
1562 | if ( mainWindow() && mainWindow()->inherits( "KMainWindow" ) ) | 1562 | if ( mainWindow() && mainWindow()->inherits( "KMainWindow" ) ) |
1563 | static_cast<KMainWindow *>(mainWindow())->setSettingsDirty(); | 1563 | static_cast<KMainWindow *>(mainWindow())->setSettingsDirty(); |
1564 | */ | 1564 | */ |
1565 | } | 1565 | } |
1566 | 1566 | ||
1567 | //static | 1567 | //static |
1568 | bool KToolBar::highlightSetting() | 1568 | bool KToolBar::highlightSetting() |
1569 | { | 1569 | { |
1570 | QString grpToolbar(QString::fromLatin1("Toolbar style")); | 1570 | QString grpToolbar(QString::fromLatin1("Toolbar style")); |
1571 | KConfigGroupSaver saver(KGlobal::config(), grpToolbar); | 1571 | KConfigGroupSaver saver(KGlobal::config(), grpToolbar); |
1572 | return KGlobal::config()->readBoolEntry(QString::fromLatin1("Highlighting"),true); | 1572 | return KGlobal::config()->readBoolEntry(QString::fromLatin1("Highlighting"),true); |
1573 | } | 1573 | } |
1574 | 1574 | ||
1575 | //static | 1575 | //static |
1576 | bool KToolBar::transparentSetting() | 1576 | bool KToolBar::transparentSetting() |
1577 | { | 1577 | { |
1578 | QString grpToolbar(QString::fromLatin1("Toolbar style")); | 1578 | QString grpToolbar(QString::fromLatin1("Toolbar style")); |
1579 | KConfigGroupSaver saver(KGlobal::config(), grpToolbar); | 1579 | KConfigGroupSaver saver(KGlobal::config(), grpToolbar); |
1580 | return KGlobal::config()->readBoolEntry(QString::fromLatin1("TransparentMoving"),true); | 1580 | return KGlobal::config()->readBoolEntry(QString::fromLatin1("TransparentMoving"),true); |
1581 | } | 1581 | } |
1582 | 1582 | ||
1583 | //static | 1583 | //static |
1584 | KToolBar::IconText KToolBar::iconTextSetting() | 1584 | KToolBar::IconText KToolBar::iconTextSetting() |
1585 | { | 1585 | { |
1586 | QString grpToolbar(QString::fromLatin1("Toolbar style")); | 1586 | QString grpToolbar(QString::fromLatin1("Toolbar style")); |
1587 | KConfigGroupSaver saver(KGlobal::config(), grpToolbar); | 1587 | KConfigGroupSaver saver(KGlobal::config(), grpToolbar); |
1588 | QString icontext = KGlobal::config()->readEntry(QString::fromLatin1("IconText"),QString::fromLatin1("IconOnly")); | 1588 | QString icontext = KGlobal::config()->readEntry(QString::fromLatin1("IconText"),QString::fromLatin1("IconOnly")); |
1589 | if ( icontext == "IconTextRight" ) | 1589 | if ( icontext == "IconTextRight" ) |
1590 | return IconTextRight; | 1590 | return IconTextRight; |
1591 | else if ( icontext == "IconTextBottom" ) | 1591 | else if ( icontext == "IconTextBottom" ) |
1592 | return IconTextBottom; | 1592 | return IconTextBottom; |
1593 | else if ( icontext == "TextOnly" ) | 1593 | else if ( icontext == "TextOnly" ) |
1594 | return TextOnly; | 1594 | return TextOnly; |
1595 | else | 1595 | else |
1596 | return IconOnly; | 1596 | return IconOnly; |
1597 | } | 1597 | } |
1598 | 1598 | ||
1599 | void KToolBar::applyAppearanceSettings(KConfig *config, const QString &_configGroup, bool forceGlobal) | 1599 | void KToolBar::applyAppearanceSettings(KConfig *config, const QString &_configGroup, bool forceGlobal) |
1600 | { | 1600 | { |
1601 | QString configGroup = _configGroup.isEmpty() ? settingsGroup() : _configGroup; | 1601 | QString configGroup = _configGroup.isEmpty() ? settingsGroup() : _configGroup; |
1602 | //kdDebug(220) << "KToolBar::applyAppearanceSettings: configGroup=" << configGroup << endl; | 1602 | //kdDebug(220) << "KToolBar::applyAppearanceSettings: configGroup=" << configGroup << endl; |
1603 | // We have application-specific settings in the XML file, | 1603 | // We have application-specific settings in the XML file, |
1604 | // and nothing in the application's config file | 1604 | // and nothing in the application's config file |
1605 | // -> don't apply the global defaults, the XML ones are preferred | 1605 | // -> don't apply the global defaults, the XML ones are preferred |
1606 | // See applySettings for a full explanation | 1606 | // See applySettings for a full explanation |
1607 | /*US :we do not support xml files | 1607 | /*US :we do not support xml files |
1608 | if ( d->m_xmlguiClient && !d->m_xmlguiClient->xmlFile().isEmpty() && | 1608 | if ( d->m_xmlguiClient && !d->m_xmlguiClient->xmlFile().isEmpty() && |
1609 | !config->hasGroup(configGroup) ) | 1609 | !config->hasGroup(configGroup) ) |
1610 | { | 1610 | { |
1611 | //kdDebug(220) << "skipping global defaults, using XML ones instead" << endl; | 1611 | //kdDebug(220) << "skipping global defaults, using XML ones instead" << endl; |
1612 | return; | 1612 | return; |
1613 | } | 1613 | } |
1614 | */ | 1614 | */ |
1615 | if ( !config->hasGroup(configGroup) ) | 1615 | if ( !config->hasGroup(configGroup) ) |
1616 | { | 1616 | { |
1617 | //kdDebug(220) << "skipping global defaults, using XML ones instead" << endl; | 1617 | //kdDebug(220) << "skipping global defaults, using XML ones instead" << endl; |
1618 | return; | 1618 | return; |
1619 | } | 1619 | } |
1620 | 1620 | ||
1621 | 1621 | ||
1622 | KConfig *gconfig = KGlobal::config(); | 1622 | KConfig *gconfig = KGlobal::config(); |
1623 | /*US | 1623 | /*US |
1624 | static const QString &attrIconText = KGlobal::staticQString("IconText"); | 1624 | static const QString &attrIconText = KGlobal::staticQString("IconText"); |
1625 | static const QString &attrHighlight = KGlobal::staticQString("Highlighting"); | 1625 | static const QString &attrHighlight = KGlobal::staticQString("Highlighting"); |
1626 | static const QString &attrTrans = KGlobal::staticQString("TransparentMoving"); | 1626 | static const QString &attrTrans = KGlobal::staticQString("TransparentMoving"); |
1627 | static const QString &attrSize = KGlobal::staticQString("IconSize"); | 1627 | static const QString &attrSize = KGlobal::staticQString("IconSize"); |
1628 | */ | 1628 | */ |
1629 | // we actually do this in two steps. | 1629 | // we actually do this in two steps. |
1630 | // First, we read in the global styles [Toolbar style] (from the KControl module). | 1630 | // First, we read in the global styles [Toolbar style] (from the KControl module). |
1631 | // Then, if the toolbar is NOT 'mainToolBar', we will also try to read in [barname Toolbar style] | 1631 | // Then, if the toolbar is NOT 'mainToolBar', we will also try to read in [barname Toolbar style] |
1632 | bool highlight; | 1632 | bool highlight; |
1633 | int transparent; | 1633 | int transparent; |
1634 | QString icontext; | 1634 | QString icontext; |
1635 | int iconsize = 0; | 1635 | int iconsize = 0; |
1636 | 1636 | ||
1637 | // this is the first iteration | 1637 | // this is the first iteration |
1638 | QString grpToolbar(QString::fromLatin1("Toolbar style")); | 1638 | QString grpToolbar(QString::fromLatin1("Toolbar style")); |
1639 | { // start block for KConfigGroupSaver | 1639 | { // start block for KConfigGroupSaver |
1640 | KConfigGroupSaver saver(gconfig, grpToolbar); | 1640 | KConfigGroupSaver saver(gconfig, grpToolbar); |
1641 | 1641 | ||
1642 | // first, get the generic settings | 1642 | // first, get the generic settings |
1643 | //US highlight = gconfig->readBoolEntry(attrHighlight, true); | 1643 | //US highlight = gconfig->readBoolEntry(attrHighlight, true); |
1644 | highlight = gconfig->readBoolEntry("Highlighting", true); | 1644 | highlight = gconfig->readBoolEntry("Highlighting", true); |
1645 | //US transparent = gconfig->readBoolEntry(attrTrans, true); | 1645 | //US transparent = gconfig->readBoolEntry(attrTrans, true); |
1646 | transparent = gconfig->readBoolEntry("TransparentMoving", true); | 1646 | transparent = gconfig->readBoolEntry("TransparentMoving", true); |
1647 | 1647 | ||
1648 | // we read in the IconText property *only* if we intend on actually | 1648 | // we read in the IconText property *only* if we intend on actually |
1649 | // honoring it | 1649 | // honoring it |
1650 | if (d->m_honorStyle) | 1650 | if (d->m_honorStyle) |
1651 | //US d->IconTextDefault = gconfig->readEntry(attrIconText, d->IconTextDefault); | 1651 | //US d->IconTextDefault = gconfig->readEntry(attrIconText, d->IconTextDefault); |
1652 | d->IconTextDefault = gconfig->readEntry("IconText", d->IconTextDefault); | 1652 | d->IconTextDefault = gconfig->readEntry("IconText", d->IconTextDefault); |
1653 | else | 1653 | else |
1654 | d->IconTextDefault = "IconOnly"; | 1654 | d->IconTextDefault = "IconOnly"; |
1655 | 1655 | ||
1656 | // Use the default icon size for toolbar icons. | 1656 | // Use the default icon size for toolbar icons. |
1657 | //US d->IconSizeDefault = gconfig->readNumEntry(attrSize, d->IconSizeDefault); | 1657 | //US d->IconSizeDefault = gconfig->readNumEntry(attrSize, d->IconSizeDefault); |
1658 | d->IconSizeDefault = gconfig->readNumEntry("IconSize", d->IconSizeDefault); | 1658 | d->IconSizeDefault = gconfig->readNumEntry("IconSize", d->IconSizeDefault); |
1659 | 1659 | ||
1660 | if ( !forceGlobal && config->hasGroup(configGroup) ) | 1660 | if ( !forceGlobal && config->hasGroup(configGroup) ) |
1661 | { | 1661 | { |
1662 | config->setGroup(configGroup); | 1662 | config->setGroup(configGroup); |
1663 | 1663 | ||
1664 | // first, get the generic settings | 1664 | // first, get the generic settings |
1665 | //US highlight = config->readBoolEntry(attrHighlight, highlight); | 1665 | //US highlight = config->readBoolEntry(attrHighlight, highlight); |
1666 | highlight = config->readBoolEntry("Highlighting", highlight); | 1666 | highlight = config->readBoolEntry("Highlighting", highlight); |
1667 | //US transparent = config->readBoolEntry(attrTrans, transparent); | 1667 | //US transparent = config->readBoolEntry(attrTrans, transparent); |
1668 | transparent = config->readBoolEntry("TransparentMoving", transparent); | 1668 | transparent = config->readBoolEntry("TransparentMoving", transparent); |
1669 | // now we always read in the IconText property | 1669 | // now we always read in the IconText property |
1670 | //US icontext = config->readEntry(attrIconText, d->IconTextDefault); | 1670 | //US icontext = config->readEntry(attrIconText, d->IconTextDefault); |
1671 | icontext = config->readEntry("IconText", d->IconTextDefault); | 1671 | icontext = config->readEntry("IconText", d->IconTextDefault); |
1672 | 1672 | ||
1673 | // now get the size | 1673 | // now get the size |
1674 | //US iconsize = config->readNumEntry(attrSize, d->IconSizeDefault); | 1674 | //US iconsize = config->readNumEntry(attrSize, d->IconSizeDefault); |
1675 | iconsize = config->readNumEntry("IconSize", d->IconSizeDefault); | 1675 | iconsize = config->readNumEntry("IconSize", d->IconSizeDefault); |
1676 | } | 1676 | } |
1677 | else | 1677 | else |
1678 | { | 1678 | { |
1679 | iconsize = d->IconSizeDefault; | 1679 | iconsize = d->IconSizeDefault; |
1680 | icontext = d->IconTextDefault; | 1680 | icontext = d->IconTextDefault; |
1681 | } | 1681 | } |
1682 | 1682 | ||
1683 | // revert back to the old group | 1683 | // revert back to the old group |
1684 | } // end block for KConfigGroupSaver | 1684 | } // end block for KConfigGroupSaver |
1685 | 1685 | ||
1686 | bool doUpdate = false; | 1686 | bool doUpdate = false; |
1687 | 1687 | ||
1688 | IconText icon_text; | 1688 | IconText icon_text; |
1689 | if ( icontext == "IconTextRight" ) | 1689 | if ( icontext == "IconTextRight" ) |
1690 | icon_text = IconTextRight; | 1690 | icon_text = IconTextRight; |
1691 | else if ( icontext == "IconTextBottom" ) | 1691 | else if ( icontext == "IconTextBottom" ) |
1692 | icon_text = IconTextBottom; | 1692 | icon_text = IconTextBottom; |
1693 | else if ( icontext == "TextOnly" ) | 1693 | else if ( icontext == "TextOnly" ) |
1694 | icon_text = TextOnly; | 1694 | icon_text = TextOnly; |
1695 | else | 1695 | else |
1696 | icon_text = IconOnly; | 1696 | icon_text = IconOnly; |
1697 | 1697 | ||
1698 | // check if the icon/text has changed | 1698 | // check if the icon/text has changed |
1699 | if (icon_text != d->m_iconText) { | 1699 | if (icon_text != d->m_iconText) { |
1700 | //kdDebug(220) << "KToolBar::applyAppearanceSettings setIconText " << icon_text << endl; | 1700 | //kdDebug(220) << "KToolBar::applyAppearanceSettings setIconText " << icon_text << endl; |
1701 | setIconText(icon_text, false); | 1701 | setIconText(icon_text, false); |
1702 | doUpdate = true; | 1702 | doUpdate = true; |
1703 | } | 1703 | } |
1704 | 1704 | ||
1705 | // ...and check if the icon size has changed | 1705 | // ...and check if the icon size has changed |
1706 | if (iconsize != d->m_iconSize) { | 1706 | if (iconsize != d->m_iconSize) { |
1707 | setIconSize(iconsize, false); | 1707 | setIconSize(iconsize, false); |
1708 | doUpdate = true; | 1708 | doUpdate = true; |
1709 | } | 1709 | } |
1710 | 1710 | ||
1711 | QMainWindow *mw = mainWindow(); | 1711 | QMainWindow *mw = mainWindow(); |
1712 | 1712 | ||
1713 | // ...and if we should highlight | 1713 | // ...and if we should highlight |
1714 | if ( highlight != d->m_highlight ) { | 1714 | if ( highlight != d->m_highlight ) { |
1715 | d->m_highlight = highlight; | 1715 | d->m_highlight = highlight; |
1716 | doUpdate = true; | 1716 | doUpdate = true; |
1717 | } | 1717 | } |
1718 | 1718 | ||
1719 | // ...and if we should move transparently | 1719 | // ...and if we should move transparently |
1720 | if ( mw && transparent != (!mw->opaqueMoving()) ) { | 1720 | if ( mw && transparent != (!mw->opaqueMoving()) ) { |
1721 | mw->setOpaqueMoving( !transparent ); | 1721 | mw->setOpaqueMoving( !transparent ); |
1722 | } | 1722 | } |
1723 | 1723 | ||
1724 | if (doUpdate) | 1724 | if (doUpdate) |
1725 | emit modechange(); // tell buttons what happened | 1725 | emit modechange(); // tell buttons what happened |
1726 | if (isVisible ()) | 1726 | if (isVisible ()) |
1727 | updateGeometry(); | 1727 | updateGeometry(); |
1728 | } | 1728 | } |
1729 | 1729 | ||
1730 | void KToolBar::applySettings(KConfig *config, const QString &_configGroup) | 1730 | void KToolBar::applySettings(KConfig *config, const QString &_configGroup) |
1731 | { | 1731 | { |
1732 | //kdDebug(220) << "KToolBar::applySettings group=" << _configGroup << endl; | 1732 | //kdDebug(220) << "KToolBar::applySettings group=" << _configGroup << endl; |
1733 | 1733 | ||
1734 | QString configGroup = _configGroup.isEmpty() ? settingsGroup() : _configGroup; | 1734 | QString configGroup = _configGroup.isEmpty() ? settingsGroup() : _configGroup; |
1735 | 1735 | ||
1736 | /* | 1736 | /* |
1737 | Let's explain this a bit more in details. | 1737 | Let's explain this a bit more in details. |
1738 | The order in which we apply settings is : | 1738 | The order in which we apply settings is : |
1739 | Global config / <appnamerc> user settings if no XMLGUI is used | 1739 | Global config / <appnamerc> user settings if no XMLGUI is used |
1740 | Global config / App-XML attributes / <appnamerc> user settings if XMLGUI is used | 1740 | Global config / App-XML attributes / <appnamerc> user settings if XMLGUI is used |
1741 | 1741 | ||
1742 | So in the first case, we simply read everything from KConfig as below, | 1742 | So in the first case, we simply read everything from KConfig as below, |
1743 | but in the second case we don't do anything here if there is no app-specific config, | 1743 | but in the second case we don't do anything here if there is no app-specific config, |
1744 | and the XMLGUI uses the static methods of this class to get the global defaults. | 1744 | and the XMLGUI uses the static methods of this class to get the global defaults. |
1745 | 1745 | ||
1746 | Global config doesn't include position (index, offset, newline and hidden/shown). | 1746 | Global config doesn't include position (index, offset, newline and hidden/shown). |
1747 | */ | 1747 | */ |
1748 | 1748 | ||
1749 | // First the appearance stuff - the one which has a global config | 1749 | // First the appearance stuff - the one which has a global config |
1750 | applyAppearanceSettings( config, _configGroup ); | 1750 | applyAppearanceSettings( config, _configGroup ); |
1751 | 1751 | ||
1752 | // ...and now the position stuff | 1752 | // ...and now the position stuff |
1753 | if ( config->hasGroup(configGroup) ) | 1753 | if ( config->hasGroup(configGroup) ) |
1754 | { | 1754 | { |
1755 | KConfigGroupSaver cgs(config, configGroup); | 1755 | KConfigGroupSaver cgs(config, configGroup); |
1756 | /*US | 1756 | /*US |
1757 | static const QString &attrPosition = KGlobal::staticQString("Position"); | 1757 | static const QString &attrPosition = KGlobal::staticQString("Position"); |
1758 | static const QString &attrIndex = KGlobal::staticQString("Index"); | 1758 | static const QString &attrIndex = KGlobal::staticQString("Index"); |
1759 | static const QString &attrOffset = KGlobal::staticQString("Offset"); | 1759 | static const QString &attrOffset = KGlobal::staticQString("Offset"); |
1760 | static const QString &attrNewLine = KGlobal::staticQString("NewLine"); | 1760 | static const QString &attrNewLine = KGlobal::staticQString("NewLine"); |
1761 | static const QString &attrHidden = KGlobal::staticQString("Hidden"); | 1761 | static const QString &attrHidden = KGlobal::staticQString("Hidden"); |
1762 | 1762 | ||
1763 | QString position = config->readEntry(attrPosition, d->PositionDefault); | 1763 | QString position = config->readEntry(attrPosition, d->PositionDefault); |
1764 | int index = config->readNumEntry(attrIndex, d->IndexDefault); | 1764 | int index = config->readNumEntry(attrIndex, d->IndexDefault); |
1765 | int offset = config->readNumEntry(attrOffset, d->OffsetDefault); | 1765 | int offset = config->readNumEntry(attrOffset, d->OffsetDefault); |
1766 | bool newLine = config->readBoolEntry(attrNewLine, d->NewLineDefault); | 1766 | bool newLine = config->readBoolEntry(attrNewLine, d->NewLineDefault); |
1767 | bool hidden = config->readBoolEntry(attrHidden, d->HiddenDefault); | 1767 | bool hidden = config->readBoolEntry(attrHidden, d->HiddenDefault); |
1768 | */ | 1768 | */ |
1769 | 1769 | ||
1770 | QString position = config->readEntry("Position", d->PositionDefault); | 1770 | QString position = config->readEntry("Position", d->PositionDefault); |
1771 | int index = config->readNumEntry("Index", d->IndexDefault); | 1771 | int index = config->readNumEntry("Index", d->IndexDefault); |
1772 | int offset = config->readNumEntry("Offset", d->OffsetDefault); | 1772 | int offset = config->readNumEntry("Offset", d->OffsetDefault); |
1773 | bool newLine = config->readBoolEntry("NewLine", d->NewLineDefault); | 1773 | bool newLine = config->readBoolEntry("NewLine", d->NewLineDefault); |
1774 | bool hidden = config->readBoolEntry("Hidden", d->HiddenDefault); | 1774 | bool hidden = config->readBoolEntry("Hidden", d->HiddenDefault); |
1775 | 1775 | ||
1776 | /*US Dock pos(DockTop); | 1776 | /*US Dock pos(DockTop); |
1777 | if ( position == "Top" ) | 1777 | if ( position == "Top" ) |
1778 | pos = DockTop; | 1778 | pos = DockTop; |
1779 | else if ( position == "Bottom" ) | 1779 | else if ( position == "Bottom" ) |
1780 | pos = DockBottom; | 1780 | pos = DockBottom; |
1781 | else if ( position == "Left" ) | 1781 | else if ( position == "Left" ) |
1782 | pos = DockLeft; | 1782 | pos = DockLeft; |
1783 | else if ( position == "Right" ) | 1783 | else if ( position == "Right" ) |
1784 | pos = DockRight; | 1784 | pos = DockRight; |
1785 | else if ( position == "Floating" ) | 1785 | else if ( position == "Floating" ) |
1786 | pos = DockTornOff; | 1786 | pos = DockTornOff; |
1787 | else if ( position == "Flat" ) | 1787 | else if ( position == "Flat" ) |
1788 | pos = DockMinimized; | 1788 | pos = DockMinimized; |
1789 | */ | 1789 | */ |
1790 | QMainWindow::ToolBarDock pos(QMainWindow::Top); | 1790 | QMainWindow::ToolBarDock pos(QMainWindow::Top); |
1791 | if ( position == "Top" ) | 1791 | if ( position == "Top" ) |
1792 | pos = QMainWindow::Top; | 1792 | pos = QMainWindow::Top; |
1793 | else if ( position == "Bottom" ) | 1793 | else if ( position == "Bottom" ) |
1794 | pos = QMainWindow::Bottom; | 1794 | pos = QMainWindow::Bottom; |
1795 | else if ( position == "Left" ) | 1795 | else if ( position == "Left" ) |
diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp index 827ec38..2253de4 100644 --- a/microkde/kresources/factory.cpp +++ b/microkde/kresources/factory.cpp | |||
@@ -1,242 +1,243 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkresources. | 2 | This file is part of libkresources. |
3 | 3 | ||
4 | Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> | 4 | Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> |
5 | Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org> | 5 | Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org> |
6 | Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> | 6 | Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> |
7 | 7 | ||
8 | This library is free software; you can redistribute it and/or | 8 | This library is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU Library General Public | 9 | modify it under the terms of the GNU Library General Public |
10 | License as published by the Free Software Foundation; either | 10 | License as published by the Free Software Foundation; either |
11 | version 2 of the License, or (at your option) any later version. | 11 | version 2 of the License, or (at your option) any later version. |
12 | 12 | ||
13 | This library is distributed in the hope that it will be useful, | 13 | This library is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 | Library General Public License for more details. | 16 | Library General Public License for more details. |
17 | 17 | ||
18 | You should have received a copy of the GNU Library General Public License | 18 | You should have received a copy of the GNU Library General Public License |
19 | along with this library; see the file COPYING.LIB. If not, write to | 19 | along with this library; see the file COPYING.LIB. If not, write to |
20 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 20 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
21 | Boston, MA 02111-1307, USA. | 21 | Boston, MA 02111-1307, USA. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <kdebug.h> | 24 | #include <kdebug.h> |
25 | #include <klocale.h> | 25 | #include <klocale.h> |
26 | #include <ksimpleconfig.h> | 26 | #include <ksimpleconfig.h> |
27 | #include <kstandarddirs.h> | 27 | #include <kstandarddirs.h> |
28 | #include <kstaticdeleter.h> | 28 | #include <kstaticdeleter.h> |
29 | //#ifndef DESKTOP_VERSION | ||
29 | #include <klibloader.h> | 30 | #include <klibloader.h> |
30 | 31 | //#endif | |
31 | #include <qfile.h> | 32 | #include <qfile.h> |
32 | 33 | ||
33 | #include "resource.h" | 34 | #include "resource.h" |
34 | #include "factory.h" | 35 | #include "factory.h" |
35 | 36 | ||
36 | using namespace KRES; | 37 | using namespace KRES; |
37 | 38 | ||
38 | QDict<Factory> *Factory::mSelves = 0; | 39 | QDict<Factory> *Factory::mSelves = 0; |
39 | static KStaticDeleter< QDict<Factory> > staticDeleter; | 40 | static KStaticDeleter< QDict<Factory> > staticDeleter; |
40 | 41 | ||
41 | Factory *Factory::self( const QString& resourceFamily ) | 42 | Factory *Factory::self( const QString& resourceFamily ) |
42 | { | 43 | { |
43 | 44 | ||
44 | 45 | ||
45 | Factory *factory = 0; | 46 | Factory *factory = 0; |
46 | if ( !mSelves ) | 47 | if ( !mSelves ) |
47 | { | 48 | { |
48 | mSelves = staticDeleter.setObject( new QDict<Factory> ); | 49 | mSelves = staticDeleter.setObject( new QDict<Factory> ); |
49 | } | 50 | } |
50 | 51 | ||
51 | factory = mSelves->find( resourceFamily ); | 52 | factory = mSelves->find( resourceFamily ); |
52 | 53 | ||
53 | if ( !factory ) { | 54 | if ( !factory ) { |
54 | factory = new Factory( resourceFamily ); | 55 | factory = new Factory( resourceFamily ); |
55 | mSelves->insert( resourceFamily, factory ); | 56 | mSelves->insert( resourceFamily, factory ); |
56 | } | 57 | } |
57 | 58 | ||
58 | return factory; | 59 | return factory; |
59 | } | 60 | } |
60 | 61 | ||
61 | Factory::Factory( const QString& resourceFamily ) : | 62 | Factory::Factory( const QString& resourceFamily ) : |
62 | mResourceFamily( resourceFamily ) | 63 | mResourceFamily( resourceFamily ) |
63 | { | 64 | { |
64 | //US so far we have three types available for resourceFamily "contact" | 65 | //US so far we have three types available for resourceFamily "contact" |
65 | // and that are "file", "dir", "ldap" | 66 | // and that are "file", "dir", "ldap" |
66 | /*US | 67 | /*US |
67 | 68 | ||
68 | KTrader::OfferList plugins = KTrader::self()->query( "KResources/Plugin", QString( "[X-KDE-ResourceFamily] == '%1'" ) | 69 | KTrader::OfferList plugins = KTrader::self()->query( "KResources/Plugin", QString( "[X-KDE-ResourceFamily] == '%1'" ) |
69 | .arg( resourceFamily ) ); | 70 | .arg( resourceFamily ) ); |
70 | KTrader::OfferList::ConstIterator it; | 71 | KTrader::OfferList::ConstIterator it; |
71 | for ( it = plugins.begin(); it != plugins.end(); ++it ) { | 72 | for ( it = plugins.begin(); it != plugins.end(); ++it ) { |
72 | QVariant type = (*it)->property( "X-KDE-ResourceType" ); | 73 | QVariant type = (*it)->property( "X-KDE-ResourceType" ); |
73 | if ( !type.toString().isEmpty() ) | 74 | if ( !type.toString().isEmpty() ) |
74 | mTypeMap.insert( type.toString(), *it ); | 75 | mTypeMap.insert( type.toString(), *it ); |
75 | } | 76 | } |
76 | */ | 77 | */ |
77 | 78 | ||
78 | //US new | 79 | //US new |
79 | PluginInfo* info = new PluginInfo; | 80 | PluginInfo* info = new PluginInfo; |
80 | info->library = "microkabc_file"; | 81 | info->library = "microkabc_file"; |
81 | info->nameLabel = i18n( "file" ); | 82 | info->nameLabel = i18n( "file" ); |
82 | info->descriptionLabel = i18n( "Choose one file" ); | 83 | info->descriptionLabel = i18n( "Choose one file" ); |
83 | mTypeMap.insert( "file", info ); | 84 | mTypeMap.insert( "file", info ); |
84 | 85 | ||
85 | info = new PluginInfo; | 86 | info = new PluginInfo; |
86 | info->library = "microkabc_dir"; | 87 | info->library = "microkabc_dir"; |
87 | info->nameLabel = i18n( "dir" ); | 88 | info->nameLabel = i18n( "dir" ); |
88 | info->descriptionLabel = i18n( "Choose a directory with may files" ); | 89 | info->descriptionLabel = i18n( "Choose a directory with may files" ); |
89 | mTypeMap.insert( "dir", info ); | 90 | mTypeMap.insert( "dir", info ); |
90 | 91 | ||
91 | info = new PluginInfo; | 92 | info = new PluginInfo; |
92 | info->library = "microkabc_ldap"; | 93 | info->library = "microkabc_ldap"; |
93 | info->nameLabel = i18n( "ldap" ); | 94 | info->nameLabel = i18n( "ldap" ); |
94 | info->descriptionLabel = i18n( "No description available" ); | 95 | info->descriptionLabel = i18n( "No description available" ); |
95 | mTypeMap.insert( "ldap", info ); | 96 | mTypeMap.insert( "ldap", info ); |
96 | 97 | ||
97 | //US add opie plugin only, if the library exists | 98 | //US add opie plugin only, if the library exists |
98 | QString libname = "microkabc_opie"; | 99 | QString libname = "microkabc_opie"; |
99 | QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); | 100 | QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); |
100 | if ( !path.isEmpty() ) | 101 | if ( !path.isEmpty() ) |
101 | { | 102 | { |
102 | info = new PluginInfo; | 103 | info = new PluginInfo; |
103 | info->library = libname; | 104 | info->library = libname; |
104 | info->nameLabel = i18n( "opie" ); | 105 | info->nameLabel = i18n( "opie" ); |
105 | info->descriptionLabel = i18n( "Opie PIM Addressbook." ); | 106 | info->descriptionLabel = i18n( "Opie PIM Addressbook." ); |
106 | mTypeMap.insert( "opie", info ); | 107 | mTypeMap.insert( "opie", info ); |
107 | } | 108 | } |
108 | 109 | ||
109 | //US add qtopia plugin only, if the library exists | 110 | //US add qtopia plugin only, if the library exists |
110 | libname = "microkabc_qtopia"; | 111 | libname = "microkabc_qtopia"; |
111 | path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); | 112 | path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); |
112 | if ( !path.isEmpty() ) | 113 | if ( !path.isEmpty() ) |
113 | { | 114 | { |
114 | info = new PluginInfo; | 115 | info = new PluginInfo; |
115 | info->library = libname; | 116 | info->library = libname; |
116 | info->nameLabel = i18n( "qtopia" ); | 117 | info->nameLabel = i18n( "qtopia" ); |
117 | info->descriptionLabel = i18n( "Qtopia PIM Addressbook." ); | 118 | info->descriptionLabel = i18n( "Qtopia PIM Addressbook." ); |
118 | mTypeMap.insert( "qtopia", info ); | 119 | mTypeMap.insert( "qtopia", info ); |
119 | } | 120 | } |
120 | 121 | ||
121 | 122 | ||
122 | } | 123 | } |
123 | 124 | ||
124 | Factory::~Factory() | 125 | Factory::~Factory() |
125 | { | 126 | { |
126 | } | 127 | } |
127 | 128 | ||
128 | QStringList Factory::typeNames() const | 129 | QStringList Factory::typeNames() const |
129 | { | 130 | { |
130 | //US method QMap::keys() not available yet. SO collect the data manually | 131 | //US method QMap::keys() not available yet. SO collect the data manually |
131 | //US return mTypeMap.keys(); | 132 | //US return mTypeMap.keys(); |
132 | 133 | ||
133 | QStringList result; | 134 | QStringList result; |
134 | 135 | ||
135 | QMap<QString, PluginInfo*>::ConstIterator it; | 136 | QMap<QString, PluginInfo*>::ConstIterator it; |
136 | for( it = mTypeMap.begin(); it != mTypeMap.end(); ++it ) { | 137 | for( it = mTypeMap.begin(); it != mTypeMap.end(); ++it ) { |
137 | result << it.key().latin1(); | 138 | result << it.key().latin1(); |
138 | // qDebug("Factory::typeNames() : %s ", it.key().latin1()); | 139 | // qDebug("Factory::typeNames() : %s ", it.key().latin1()); |
139 | 140 | ||
140 | } | 141 | } |
141 | return result; | 142 | return result; |
142 | } | 143 | } |
143 | 144 | ||
144 | ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent ) | 145 | ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent ) |
145 | { | 146 | { |
146 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 147 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
147 | return 0; | 148 | return 0; |
148 | 149 | ||
149 | //US KService::Ptr ptr = mTypeMap[ type ]; | 150 | //US KService::Ptr ptr = mTypeMap[ type ]; |
150 | //US KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); | 151 | //US KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); |
151 | PluginInfo* pi = mTypeMap[ type ]; | 152 | PluginInfo* pi = mTypeMap[ type ]; |
152 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); | 153 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); |
153 | if ( !factory ) { | 154 | if ( !factory ) { |
154 | qDebug("KRES::Factory::configWidget(): Factory creation failed for library %s", pi->library.latin1()); | 155 | qDebug("KRES::Factory::configWidget(): Factory creation failed for library %s", pi->library.latin1()); |
155 | kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl; | 156 | kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl; |
156 | return 0; | 157 | return 0; |
157 | } | 158 | } |
158 | 159 | ||
159 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); | 160 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); |
160 | 161 | ||
161 | if ( !pluginFactory ) { | 162 | if ( !pluginFactory ) { |
162 | qDebug("KRES::Factory::configWidget(): no plugin factory for library %s", pi->library.latin1()); | 163 | qDebug("KRES::Factory::configWidget(): no plugin factory for library %s", pi->library.latin1()); |
163 | kdDebug() << "KRES::Factory::configWidget(): no plugin factory." << endl; | 164 | kdDebug() << "KRES::Factory::configWidget(): no plugin factory." << endl; |
164 | return 0; | 165 | return 0; |
165 | } | 166 | } |
166 | 167 | ||
167 | ConfigWidget *wdg = pluginFactory->configWidget( parent ); | 168 | ConfigWidget *wdg = pluginFactory->configWidget( parent ); |
168 | if ( !wdg ) { | 169 | if ( !wdg ) { |
169 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; | 170 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; |
170 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); | 171 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); |
171 | return 0; | 172 | return 0; |
172 | } | 173 | } |
173 | return wdg; | 174 | return wdg; |
174 | 175 | ||
175 | } | 176 | } |
176 | 177 | ||
177 | QString Factory::typeName( const QString &type ) const | 178 | QString Factory::typeName( const QString &type ) const |
178 | { | 179 | { |
179 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 180 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
180 | return QString(); | 181 | return QString(); |
181 | 182 | ||
182 | 183 | ||
183 | //US KService::Ptr ptr = mTypeMap[ type ]; | 184 | //US KService::Ptr ptr = mTypeMap[ type ]; |
184 | //US return ptr->name(); | 185 | //US return ptr->name(); |
185 | PluginInfo* pi = mTypeMap[ type ]; | 186 | PluginInfo* pi = mTypeMap[ type ]; |
186 | return pi->nameLabel; | 187 | return pi->nameLabel; |
187 | 188 | ||
188 | } | 189 | } |
189 | 190 | ||
190 | QString Factory::typeDescription( const QString &type ) const | 191 | QString Factory::typeDescription( const QString &type ) const |
191 | { | 192 | { |
192 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 193 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
193 | return QString(); | 194 | return QString(); |
194 | 195 | ||
195 | //US KService::Ptr ptr = mTypeMap[ type ]; | 196 | //US KService::Ptr ptr = mTypeMap[ type ]; |
196 | //US return ptr->comment(); | 197 | //US return ptr->comment(); |
197 | PluginInfo* pi = mTypeMap[ type ]; | 198 | PluginInfo* pi = mTypeMap[ type ]; |
198 | return pi->descriptionLabel; | 199 | return pi->descriptionLabel; |
199 | } | 200 | } |
200 | 201 | ||
201 | Resource *Factory::resource( const QString& type, const KConfig *config ) | 202 | Resource *Factory::resource( const QString& type, const KConfig *config ) |
202 | { | 203 | { |
203 | 204 | ||
204 | 205 | ||
205 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 206 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
206 | return 0; | 207 | return 0; |
207 | 208 | ||
208 | /*US load the lib not dynamicly. !! | 209 | /*US load the lib not dynamicly. !! |
209 | KService::Ptr ptr = mTypeMap[ type ]; | 210 | KService::Ptr ptr = mTypeMap[ type ]; |
210 | KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); | 211 | KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); |
211 | if ( !factory ) { | 212 | if ( !factory ) { |
212 | kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl; | 213 | kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl; |
213 | return 0; | 214 | return 0; |
214 | } | 215 | } |
215 | */ | 216 | */ |
216 | PluginInfo* pi = mTypeMap[ type ]; | 217 | PluginInfo* pi = mTypeMap[ type ]; |
217 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); | 218 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); |
218 | if ( !factory ) { | 219 | if ( !factory ) { |
219 | qDebug("KRES::Factory::resource(): Factory creation failed for library %s", pi->library.latin1()); | 220 | qDebug("KRES::Factory::resource(): Factory creation failed for library %s", pi->library.latin1()); |
220 | kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl; | 221 | kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl; |
221 | return 0; | 222 | return 0; |
222 | } | 223 | } |
223 | 224 | ||
224 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); | 225 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); |
225 | 226 | ||
226 | if ( !pluginFactory ) { | 227 | if ( !pluginFactory ) { |
227 | qDebug("KRES::Factory::resource(): no plugin factory for library %s", pi->library.latin1()); | 228 | qDebug("KRES::Factory::resource(): no plugin factory for library %s", pi->library.latin1()); |
228 | kdDebug() << "KRES::Factory::resource(): no plugin factory." << endl; | 229 | kdDebug() << "KRES::Factory::resource(): no plugin factory." << endl; |
229 | return 0; | 230 | return 0; |
230 | } | 231 | } |
231 | 232 | ||
232 | Resource *resource = pluginFactory->resource( config ); | 233 | Resource *resource = pluginFactory->resource( config ); |
233 | if ( !resource ) { | 234 | if ( !resource ) { |
234 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; | 235 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; |
235 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); | 236 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); |
236 | return 0; | 237 | return 0; |
237 | } | 238 | } |
238 | 239 | ||
239 | resource->setType( type ); | 240 | resource->setType( type ); |
240 | 241 | ||
241 | return resource; | 242 | return resource; |
242 | } | 243 | } |
diff --git a/microkde/microkde.pro b/microkde/microkde.pro index 1e9b022..05833a9 100644 --- a/microkde/microkde.pro +++ b/microkde/microkde.pro | |||
@@ -1,170 +1,168 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | #INCLUDEPATH += $(QTDIR)/include . | 3 | #INCLUDEPATH += $(QTDIR)/include . |
4 | #DEPENDPATH += $(QTDIR)/include | 4 | #DEPENDPATH += $(QTDIR)/include |
5 | INCLUDEPATH += . ../ ../kabc ./kdecore ./kdeui ./kio/kfile | 5 | INCLUDEPATH += . ../ ../kabc ./kdecore ./kdeui ./kio/kfile |
6 | #LIBS += -lqtcompat | 6 | #LIBS += -lqtcompat |
7 | 7 | ||
8 | TARGET = microkde | 8 | TARGET = microkde |
9 | DESTDIR= ../bin | 9 | DESTDIR= ../bin |
10 | DEFINES += DESKTOP_VERSION KDE_QT_ONLY | 10 | DEFINES += DESKTOP_VERSION KDE_QT_ONLY |
11 | unix : { | 11 | unix : { |
12 | OBJECTS_DIR = obj/unix | 12 | OBJECTS_DIR = obj/unix |
13 | MOC_DIR = moc/unix | 13 | MOC_DIR = moc/unix |
14 | } | 14 | } |
15 | win32: { | 15 | win32: { |
16 | DEFINES += _WIN32_ | 16 | DEFINES += _WIN32_ |
17 | OBJECTS_DIR = obj/win | 17 | OBJECTS_DIR = obj/win |
18 | MOC_DIR = moc/win | 18 | MOC_DIR = moc/win |
19 | } | 19 | } |
20 | include( ../variables.pri ) | 20 | include( ../variables.pri ) |
21 | 21 | ||
22 | 22 | ||
23 | 23 | ||
24 | HEADERS = \ | 24 | HEADERS = \ |
25 | qlayoutengine_p.h \ | 25 | qlayoutengine_p.h \ |
26 | KDGanttMinimizeSplitter.h \ | 26 | KDGanttMinimizeSplitter.h \ |
27 | kapplication.h \ | 27 | kapplication.h \ |
28 | kaudioplayer.h \ | 28 | kaudioplayer.h \ |
29 | kcalendarsystem.h \ | 29 | kcalendarsystem.h \ |
30 | kcalendarsystemgregorian.h \ | 30 | kcalendarsystemgregorian.h \ |
31 | kcolorbutton.h \ | 31 | kcolorbutton.h \ |
32 | kcolordialog.h \ | 32 | kcolordialog.h \ |
33 | kcombobox.h \ | 33 | kcombobox.h \ |
34 | kconfig.h \ | 34 | kconfig.h \ |
35 | kdatetbl.h \ | 35 | kdatetbl.h \ |
36 | kdebug.h \ | 36 | kdebug.h \ |
37 | kdialog.h \ | 37 | kdialog.h \ |
38 | kdialogbase.h \ | 38 | kdialogbase.h \ |
39 | kdirwatch.h \ | 39 | kdirwatch.h \ |
40 | keditlistbox.h \ | 40 | keditlistbox.h \ |
41 | kemailsettings.h \ | 41 | kemailsettings.h \ |
42 | kfiledialog.h \ | 42 | kfiledialog.h \ |
43 | kfontdialog.h \ | 43 | kfontdialog.h \ |
44 | kglobal.h \ | 44 | kglobal.h \ |
45 | kglobalsettings.h \ | 45 | kglobalsettings.h \ |
46 | kiconloader.h \ | 46 | kiconloader.h \ |
47 | klineedit.h \ | 47 | klineedit.h \ |
48 | klineeditdlg.h \ | 48 | klineeditdlg.h \ |
49 | kmessagebox.h \ | 49 | kmessagebox.h \ |
50 | knotifyclient.h \ | 50 | knotifyclient.h \ |
51 | kprinter.h \ | 51 | kprinter.h \ |
52 | kprocess.h \ | 52 | kprocess.h \ |
53 | krestrictedline.h \ | 53 | krestrictedline.h \ |
54 | krun.h \ | 54 | krun.h \ |
55 | ksimpleconfig.h \ | 55 | ksimpleconfig.h \ |
56 | kstaticdeleter.h \ | 56 | kstaticdeleter.h \ |
57 | ksystemtray.h \ | 57 | ksystemtray.h \ |
58 | ktempfile.h \ | 58 | ktempfile.h \ |
59 | ktextedit.h \ | 59 | ktextedit.h \ |
60 | kunload.h \ | 60 | kunload.h \ |
61 | kurl.h \ | 61 | kurl.h \ |
62 | kdeui/kguiitem.h \ | 62 | kdeui/kguiitem.h \ |
63 | kdeui/kcmodule.h \ | 63 | kdeui/kcmodule.h \ |
64 | kdeui/kbuttonbox.h \ | 64 | kdeui/kbuttonbox.h \ |
65 | kdeui/klistbox.h \ | 65 | kdeui/klistbox.h \ |
66 | kdeui/klistview.h \ | 66 | kdeui/klistview.h \ |
67 | kdeui/kjanuswidget.h \ | 67 | kdeui/kjanuswidget.h \ |
68 | kdeui/kseparator.h \ | 68 | kdeui/kseparator.h \ |
69 | kdeui/knuminput.h \ | 69 | kdeui/knuminput.h \ |
70 | kdeui/knumvalidator.h \ | 70 | kdeui/knumvalidator.h \ |
71 | kdeui/ksqueezedtextlabel.h \ | 71 | kdeui/ksqueezedtextlabel.h \ |
72 | kio/job.h \ | 72 | kio/job.h \ |
73 | kio/kfile/kurlrequester.h \ | 73 | kio/kfile/kurlrequester.h \ |
74 | kresources/resource.h \ | 74 | kresources/resource.h \ |
75 | kresources/factory.h \ | 75 | kresources/factory.h \ |
76 | kresources/managerimpl.h \ | 76 | kresources/managerimpl.h \ |
77 | kresources/manager.h \ | 77 | kresources/manager.h \ |
78 | kresources/selectdialog.h \ | 78 | kresources/selectdialog.h \ |
79 | kresources/configpage.h \ | 79 | kresources/configpage.h \ |
80 | kresources/configwidget.h \ | 80 | kresources/configwidget.h \ |
81 | kresources/configdialog.h \ | 81 | kresources/configdialog.h \ |
82 | kresources/kcmkresources.h \ | 82 | kresources/kcmkresources.h \ |
83 | kdecore/kmdcodec.h \ | 83 | kdecore/kmdcodec.h \ |
84 | kdecore/kconfigbase.h \ | 84 | kdecore/kconfigbase.h \ |
85 | kdecore/klocale.h \ | 85 | kdecore/klocale.h \ |
86 | kdecore/kcatalogue.h \ | 86 | kdecore/kcatalogue.h \ |
87 | kdecore/ksharedptr.h \ | 87 | kdecore/ksharedptr.h \ |
88 | kdecore/kshell.h \ | 88 | kdecore/kshell.h \ |
89 | kdecore/kstandarddirs.h \ | 89 | kdecore/kstandarddirs.h \ |
90 | kdecore/kstringhandler.h \ | 90 | kdecore/kstringhandler.h \ |
91 | kdecore/kshortcut.h \ | 91 | kdecore/kshortcut.h \ |
92 | kutils/kcmultidialog.h \ | 92 | kutils/kcmultidialog.h \ |
93 | kdeui/kxmlguiclient.h \ | 93 | kdeui/kxmlguiclient.h \ |
94 | kdeui/kstdaction.h \ | 94 | kdeui/kstdaction.h \ |
95 | kdeui/kmainwindow.h \ | 95 | kdeui/kmainwindow.h \ |
96 | kdeui/ktoolbar.h \ | 96 | kdeui/ktoolbar.h \ |
97 | kdeui/ktoolbarbutton.h \ | 97 | kdeui/ktoolbarbutton.h \ |
98 | kdeui/ktoolbarhandler.h \ | 98 | kdeui/ktoolbarhandler.h \ |
99 | kdeui/kaction.h \ | 99 | kdeui/kaction.h \ |
100 | kdeui/kactionclasses.h \ | 100 | kdeui/kactionclasses.h \ |
101 | kdeui/kactioncollection.h | 101 | kdeui/kactioncollection.h \ |
102 | kdecore/klibloader.h | ||
102 | 103 | ||
103 | 104 | ||
104 | # kdecore/klibloader.h \ | 105 | # kdecore/klibloader.h \ |
105 | 106 | ||
106 | 107 | ||
107 | SOURCES = \ | 108 | SOURCES = \ |
108 | KDGanttMinimizeSplitter.cpp \ | 109 | KDGanttMinimizeSplitter.cpp \ |
109 | kapplication.cpp \ | 110 | kapplication.cpp \ |
110 | kcalendarsystem.cpp \ | 111 | kcalendarsystem.cpp \ |
111 | kcalendarsystemgregorian.cpp \ | 112 | kcalendarsystemgregorian.cpp \ |
112 | kcolorbutton.cpp \ | 113 | kcolorbutton.cpp \ |
113 | kcolordialog.cpp \ | 114 | kcolordialog.cpp \ |
114 | kconfig.cpp \ | 115 | kconfig.cpp \ |
115 | kdatetbl.cpp \ | 116 | kdatetbl.cpp \ |
116 | kdialog.cpp \ | 117 | kdialog.cpp \ |
117 | kdialogbase.cpp \ | 118 | kdialogbase.cpp \ |
118 | keditlistbox.cpp \ | 119 | keditlistbox.cpp \ |
119 | kemailsettings.cpp \ | 120 | kemailsettings.cpp \ |
120 | kfontdialog.cpp \ | 121 | kfontdialog.cpp \ |
121 | kfiledialog.cpp \ | 122 | kfiledialog.cpp \ |
122 | kglobal.cpp \ | 123 | kglobal.cpp \ |
123 | kglobalsettings.cpp \ | 124 | kglobalsettings.cpp \ |
124 | kiconloader.cpp \ | 125 | kiconloader.cpp \ |
125 | kmessagebox.cpp \ | 126 | kmessagebox.cpp \ |
126 | ktextedit.cpp \ | 127 | ktextedit.cpp \ |
127 | kprocess.cpp \ | 128 | kprocess.cpp \ |
128 | krun.cpp \ | 129 | krun.cpp \ |
129 | ksystemtray.cpp \ | 130 | ksystemtray.cpp \ |
130 | ktempfile.cpp \ | 131 | ktempfile.cpp \ |
131 | kurl.cpp \ | 132 | kurl.cpp \ |
132 | kdecore/kcatalogue.cpp \ | 133 | kdecore/kcatalogue.cpp \ |
133 | kdecore/klocale.cpp \ | 134 | kdecore/klocale.cpp \ |
134 | kdecore/kmdcodec.cpp \ | 135 | kdecore/kmdcodec.cpp \ |
135 | kdecore/kshell.cpp \ | 136 | kdecore/kshell.cpp \ |
136 | kdecore/kstandarddirs.cpp \ | 137 | kdecore/kstandarddirs.cpp \ |
137 | kdecore/kstringhandler.cpp \ | 138 | kdecore/kstringhandler.cpp \ |
138 | kdeui/kbuttonbox.cpp \ | 139 | kdeui/kbuttonbox.cpp \ |
139 | kdeui/kcmodule.cpp \ | 140 | kdeui/kcmodule.cpp \ |
140 | kdeui/kguiitem.cpp \ | 141 | kdeui/kguiitem.cpp \ |
141 | kdeui/kjanuswidget.cpp \ | 142 | kdeui/kjanuswidget.cpp \ |
142 | kdeui/klistbox.cpp \ | 143 | kdeui/klistbox.cpp \ |
143 | kdeui/klistview.cpp \ | 144 | kdeui/klistview.cpp \ |
144 | kdeui/knuminput.cpp \ | 145 | kdeui/knuminput.cpp \ |
145 | kdeui/knumvalidator.cpp \ | 146 | kdeui/knumvalidator.cpp \ |
146 | kdeui/kseparator.cpp \ | 147 | kdeui/kseparator.cpp \ |
147 | kdeui/ksqueezedtextlabel.cpp \ | 148 | kdeui/ksqueezedtextlabel.cpp \ |
148 | kio/kfile/kurlrequester.cpp \ | 149 | kio/kfile/kurlrequester.cpp \ |
149 | kresources/configpage.cpp \ | 150 | kresources/configpage.cpp \ |
150 | kresources/configdialog.cpp \ | 151 | kresources/configdialog.cpp \ |
151 | kresources/configwidget.cpp \ | 152 | kresources/configwidget.cpp \ |
152 | kresources/factory.cpp \ | 153 | kresources/factory.cpp \ |
153 | kresources/kcmkresources.cpp \ | 154 | kresources/kcmkresources.cpp \ |
154 | kresources/managerimpl.cpp \ | 155 | kresources/managerimpl.cpp \ |
155 | kresources/resource.cpp \ | 156 | kresources/resource.cpp \ |
156 | kresources/selectdialog.cpp \ | 157 | kresources/selectdialog.cpp \ |
157 | kutils/kcmultidialog.cpp \ | 158 | kutils/kcmultidialog.cpp \ |
158 | kdeui/kaction.cpp \ | 159 | kdeui/kaction.cpp \ |
159 | kdeui/kactionclasses.cpp \ | 160 | kdeui/kactionclasses.cpp \ |
160 | kdeui/kactioncollection.cpp \ | 161 | kdeui/kactioncollection.cpp \ |
161 | kdeui/kmainwindow.cpp \ | 162 | kdeui/kmainwindow.cpp \ |
162 | kdeui/ktoolbar.cpp \ | 163 | kdeui/ktoolbar.cpp \ |
163 | kdeui/ktoolbarbutton.cpp \ | 164 | kdeui/ktoolbarbutton.cpp \ |
164 | kdeui/ktoolbarhandler.cpp \ | 165 | kdeui/ktoolbarhandler.cpp \ |
165 | kdeui/kstdaction.cpp \ | 166 | kdeui/kstdaction.cpp \ |
166 | kdeui/kxmlguiclient.cpp | 167 | kdeui/kxmlguiclient.cpp \ |
167 | 168 | kdecore/klibloader.cpp \ No newline at end of file | |
168 | |||
169 | |||
170 | # kdecore/klibloader.cpp \ \ No newline at end of file | ||