summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcher.cpp35
1 files changed, 29 insertions, 6 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp
index e74301c..3eb561a 100644
--- a/core/launcher/launcher.cpp
+++ b/core/launcher/launcher.cpp
@@ -1,121 +1,124 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT 21// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT
22// have this class. 22// have this class.
23#define QTOPIA_INTERNAL_FSLP 23#define QTOPIA_INTERNAL_FSLP
24 24
25#include <qpe/qcopenvelope_qws.h> 25#include <qpe/qcopenvelope_qws.h>
26#include <qpe/resource.h> 26#include <qpe/resource.h>
27#include <qpe/applnk.h> 27#include <qpe/applnk.h>
28#include <qpe/config.h> 28#include <qpe/config.h>
29#include <qpe/global.h> 29#include <qpe/global.h>
30#include <qpe/qpeapplication.h> 30#include <qpe/qpeapplication.h>
31#include <qpe/mimetype.h> 31#include <qpe/mimetype.h>
32#include <qpe/storage.h> 32#include <qpe/storage.h>
33#include <qpe/palmtoprecord.h> 33#include <qpe/palmtoprecord.h>
34 34
35#include <qpe/version.h> 35#include <qpe/version.h>
36 36
37#include <qdir.h> 37#include <qdir.h>
38#ifdef QWS 38#ifdef QWS
39#include <qwindowsystem_qws.h> 39#include <qwindowsystem_qws.h>
40#endif 40#endif
41#include <qtimer.h> 41#include <qtimer.h>
42#include <qcombobox.h> 42#include <qcombobox.h>
43#include <qvbox.h> 43#include <qvbox.h>
44#include <qlayout.h> 44#include <qlayout.h>
45#include <qstyle.h> 45#include <qstyle.h>
46#include <qpushbutton.h> 46#include <qpushbutton.h>
47#include <qtabbar.h> 47#include <qtabbar.h>
48#include <qwidgetstack.h> 48#include <qwidgetstack.h>
49#include <qlayout.h> 49#include <qlayout.h>
50#include <qregexp.h> 50#include <qregexp.h>
51#include <qmessagebox.h> 51#include <qmessagebox.h>
52#include <qframe.h> 52#include <qframe.h>
53#include <qpainter.h> 53#include <qpainter.h>
54#include <qlabel.h> 54#include <qlabel.h>
55#include <qtextstream.h> 55#include <qtextstream.h>
56#include <qpopupmenu.h> 56#include <qpopupmenu.h>
57 57
58#include <opie/owait.h>
59
60
58#include "launcherview.h" 61#include "launcherview.h"
59#include "launcher.h" 62#include "launcher.h"
60#include "syncdialog.h" 63#include "syncdialog.h"
61#include "desktop.h" 64#include "desktop.h"
62#include <qpe/lnkproperties.h> 65#include <qpe/lnkproperties.h>
63//#include "mrulist.h" 66//#include "mrulist.h"
64#include "qrsync.h" 67#include "qrsync.h"
65#include <stdlib.h> 68#include <stdlib.h>
66#include <unistd.h> 69#include <unistd.h>
67 70
68#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 71#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
69#include <stdio.h> 72#include <stdio.h>
70#include <sys/vfs.h> 73#include <sys/vfs.h>
71#include <mntent.h> 74#include <mntent.h>
72#endif 75#endif
73 76
74#include <qpe/storage.h> 77#include <qpe/storage.h>
75#include "mediummountgui.h" 78#include "mediummountgui.h"
76 79
77namespace { 80namespace {
78 QStringList configToMime( Config *cfg ){ 81 QStringList configToMime( Config *cfg ){
79 QStringList mimes; 82 QStringList mimes;
80 bool tmpMime = true; 83 bool tmpMime = true;
81 cfg->setGroup("mimetypes" ); 84 cfg->setGroup("mimetypes" );
82 tmpMime = cfg->readBoolEntry("all" ,true); 85 tmpMime = cfg->readBoolEntry("all" ,true);
83 if( tmpMime ){ 86 if( tmpMime ){
84 mimes << QString::null; 87 mimes << QString::null;
85 return mimes; 88 return mimes;
86 }else{ 89 }else{
87 tmpMime = cfg->readBoolEntry("audio", true ); 90 tmpMime = cfg->readBoolEntry("audio", true );
88 if(tmpMime ) 91 if(tmpMime )
89 mimes.append("audio/*" ); 92 mimes.append("audio/*" );
90 93
91 tmpMime = cfg->readBoolEntry("image", true ); 94 tmpMime = cfg->readBoolEntry("image", true );
92 if(tmpMime ) 95 if(tmpMime )
93 mimes.append("image/*" ); 96 mimes.append("image/*" );
94 97
95 tmpMime = cfg->readBoolEntry("text", true ); 98 tmpMime = cfg->readBoolEntry("text", true );
96 if(tmpMime ) 99 if(tmpMime )
97 mimes.append("text/*"); 100 mimes.append("text/*");
98 101
99 tmpMime = cfg->readBoolEntry("video", true ); 102 tmpMime = cfg->readBoolEntry("video", true );
100 if(tmpMime ) 103 if(tmpMime )
101 mimes.append("video/*" ); 104 mimes.append("video/*" );
102 } 105 }
103 return mimes; 106 return mimes;
104 } 107 }
105 108
106} 109}
107 110
108 111
109 112
110//#define SHOW_ALL 113//#define SHOW_ALL
111 114
112class CategoryTab : public QTab 115class CategoryTab : public QTab
113{ 116{
114public: 117public:
115 CategoryTab( const QIconSet &icon, const QString &text=QString::null ) 118 CategoryTab( const QIconSet &icon, const QString &text=QString::null )
116 : QTab( icon, text ) 119 : QTab( icon, text )
117 { 120 {
118 } 121 }
119 122
120 QColor bgColor; 123 QColor bgColor;
121 QColor fgColor; 124 QColor fgColor;
@@ -299,128 +302,129 @@ void CategoryTabWidget::setTabAppearance( const QString &id, Config &cfg )
299 else 302 else
300 v->setTextColor( QColor(textCol) ); 303 v->setTextColor( QColor(textCol) );
301 QStringList font = cfg.readListEntry( "Font", ',' ); 304 QStringList font = cfg.readListEntry( "Font", ',' );
302 if ( font.count() == 4 ) 305 if ( font.count() == 4 )
303 v->setViewFont( QFont(font[0], font[1].toInt(), font[2].toInt(), font[3].toInt()!=0) ); 306 v->setViewFont( QFont(font[0], font[1].toInt(), font[2].toInt(), font[3].toInt()!=0) );
304 307
305 // Tabs 308 // Tabs
306 QString tabCol = cfg.readEntry( "TabColor" ); 309 QString tabCol = cfg.readEntry( "TabColor" );
307 if ( tabCol.isEmpty() ) 310 if ( tabCol.isEmpty() )
308 tab->bgColor = QColor(); 311 tab->bgColor = QColor();
309 else 312 else
310 tab->bgColor = QColor(tabCol); 313 tab->bgColor = QColor(tabCol);
311 QString tabTextCol = cfg.readEntry( "TabTextColor" ); 314 QString tabTextCol = cfg.readEntry( "TabTextColor" );
312 if ( tabTextCol.isEmpty() ) 315 if ( tabTextCol.isEmpty() )
313 tab->fgColor = QColor(); 316 tab->fgColor = QColor();
314 else 317 else
315 tab->fgColor = QColor(tabTextCol); 318 tab->fgColor = QColor(tabTextCol);
316} 319}
317 320
318void CategoryTabWidget::updateDocs(AppLnkSet* docFolder, const QList<FileSystem> &fs) 321void CategoryTabWidget::updateDocs(AppLnkSet* docFolder, const QList<FileSystem> &fs)
319{ 322{
320 docview->populate( docFolder, QString::null ); 323 docview->populate( docFolder, QString::null );
321 docFolder->detachChildren(); 324 docFolder->detachChildren();
322 docview->setFileSystems(fs); 325 docview->setFileSystems(fs);
323 docview->updateTools(); 326 docview->updateTools();
324} 327}
325 328
326void CategoryTabWidget::tabProperties() 329void CategoryTabWidget::tabProperties()
327{ 330{
328 LauncherView *view = (LauncherView*)stack->widget( categoryBar->currentTab() ); 331 LauncherView *view = (LauncherView*)stack->widget( categoryBar->currentTab() );
329 QPopupMenu *m = new QPopupMenu( this ); 332 QPopupMenu *m = new QPopupMenu( this );
330 m->insertItem( tr("Icon View"), LauncherView::Icon ); 333 m->insertItem( tr("Icon View"), LauncherView::Icon );
331 m->insertItem( tr("List View"), LauncherView::List ); 334 m->insertItem( tr("List View"), LauncherView::List );
332 m->setItemChecked( (int)view->viewMode(), TRUE ); 335 m->setItemChecked( (int)view->viewMode(), TRUE );
333 int rv = m->exec( QCursor::pos() ); 336 int rv = m->exec( QCursor::pos() );
334 if ( rv >= 0 && rv != view->viewMode() ) { 337 if ( rv >= 0 && rv != view->viewMode() ) {
335 view->setViewMode( (LauncherView::ViewMode)rv ); 338 view->setViewMode( (LauncherView::ViewMode)rv );
336 } 339 }
337 340
338 delete m; 341 delete m;
339} 342}
340 343
341QString CategoryTabWidget::getAllDocLinkInfo() const 344QString CategoryTabWidget::getAllDocLinkInfo() const
342{ 345{
343 return docview->getAllDocLinkInfo(); 346 return docview->getAllDocLinkInfo();
344} 347}
345 348
346LauncherView* CategoryTabWidget::newView( const QString& id, const QPixmap& pm, const QString& label ) 349LauncherView* CategoryTabWidget::newView( const QString& id, const QPixmap& pm, const QString& label )
347{ 350{
348 LauncherView* view = new LauncherView( stack ); 351 LauncherView* view = new LauncherView( stack );
349 connect( view, SIGNAL(clicked(const AppLnk*)), 352 connect( view, SIGNAL(clicked(const AppLnk*)),
350 this, SIGNAL(clicked(const AppLnk*))); 353 this, SIGNAL(clicked(const AppLnk*)));
351 connect( view, SIGNAL(rightPressed(AppLnk*)), 354 connect( view, SIGNAL(rightPressed(AppLnk*)),
352 this, SIGNAL(rightPressed(AppLnk*))); 355 this, SIGNAL(rightPressed(AppLnk*)));
353 ids.append(id); 356 ids.append(id);
354 categoryBar->addTab( new CategoryTab( pm, label ) ); 357 categoryBar->addTab( new CategoryTab( pm, label ) );
355 stack->addWidget( view, tabs++ ); 358 stack->addWidget( view, tabs++ );
356 return view; 359 return view;
357} 360}
358 361
359void CategoryTabWidget::updateLink(const QString& linkfile) 362void CategoryTabWidget::updateLink(const QString& linkfile)
360{ 363{
361 int i=0; 364 int i=0;
362 LauncherView* view; 365 LauncherView* view;
366 qApp->processEvents();
363 while ((view = (LauncherView*)stack->widget(i++))) { 367 while ((view = (LauncherView*)stack->widget(i++))) {
364 if ( view->removeLink(linkfile) ) 368 if ( view->removeLink(linkfile) )
365 break; 369 break;
366 } 370 }
367 addItem(linkfile); 371 addItem(linkfile);
368 docview->updateTools(); 372 docview->updateTools();
369} 373}
370 374
371void CategoryTabWidget::paletteChange( const QPalette &p ) 375void CategoryTabWidget::paletteChange( const QPalette &p )
372{ 376{
373 QVBox::paletteChange( p ); 377 QVBox::paletteChange( p );
374 QPalette pal = palette(); 378 QPalette pal = palette();
375 pal.setColor( QColorGroup::Light, pal.color(QPalette::Active,QColorGroup::Shadow) ); 379 pal.setColor( QColorGroup::Light, pal.color(QPalette::Active,QColorGroup::Shadow) );
376 pal.setColor( QColorGroup::Background, pal.active().background().light(110) ); 380 pal.setColor( QColorGroup::Background, pal.active().background().light(110) );
377 categoryBar->setPalette( pal ); 381 categoryBar->setPalette( pal );
378 categoryBar->update(); 382 categoryBar->update();
379} 383}
380 384
381void CategoryTabWidget::setBusy(bool on) 385void CategoryTabWidget::setBusy(bool on)
382{ 386{
383 if ( on ) 387 if ( on )
384 ((LauncherView*)stack->visibleWidget())->setBusy(TRUE); 388 ((LauncherView*)stack->visibleWidget())->setBusy(TRUE);
385 else 389 else
386 for (int i=0; i<tabs; i++) 390 for (int i=0; i<tabs; i++)
387 ((LauncherView*)stack->widget(i))->setBusy(FALSE); 391 ((LauncherView*)stack->widget(i))->setBusy(FALSE);
388} 392}
389 393
390LauncherView *CategoryTabWidget::view( const QString &id ) 394LauncherView *CategoryTabWidget::view( const QString &id )
391{ 395{
392 int idx = ids.findIndex( id ); 396 int idx = ids.findIndex( id );
393 return (LauncherView *)stack->widget(idx); 397 return (LauncherView *)stack->widget(idx);
394} 398}
395 399
396void CategoryTabWidget::setBusyIndicatorType ( const QString &type ) 400void CategoryTabWidget::setBusyIndicatorType ( const QString &type )
397{ 401{
398 for ( QStringList::Iterator it = ids. begin ( ); it != ids. end ( ); ++it ) 402 for ( QStringList::Iterator it = ids. begin ( ); it != ids. end ( ); ++it )
399 view ( *it )-> setBusyIndicatorType ( type ); 403 view ( *it )-> setBusyIndicatorType ( type );
400} 404}
401 405
402//=========================================================================== 406//===========================================================================
403 407
404CategoryTabBar::CategoryTabBar( QWidget *parent, const char *name ) 408CategoryTabBar::CategoryTabBar( QWidget *parent, const char *name )
405 : QTabBar( parent, name ) 409 : QTabBar( parent, name )
406{ 410{
407 setFocusPolicy( NoFocus ); 411 setFocusPolicy( NoFocus );
408 connect( this, SIGNAL( selected(int) ), this, SLOT( layoutTabs() ) ); 412 connect( this, SIGNAL( selected(int) ), this, SLOT( layoutTabs() ) );
409} 413}
410 414
411CategoryTabBar::~CategoryTabBar() 415CategoryTabBar::~CategoryTabBar()
412{ 416{
413} 417}
414 418
415void CategoryTabBar::layoutTabs() 419void CategoryTabBar::layoutTabs()
416{ 420{
417 if ( !count() ) 421 if ( !count() )
418 return; 422 return;
419 423
420// int percentFalloffTable[] = { 100, 70, 40, 12, 6, 3, 1, 0 }; 424// int percentFalloffTable[] = { 100, 70, 40, 12, 6, 3, 1, 0 };
421 int available = width()-1; 425 int available = width()-1;
422 QFontMetrics fm = fontMetrics(); 426 QFontMetrics fm = fontMetrics();
423 int hiddenTabWidth = -7; 427 int hiddenTabWidth = -7;
424 int middleTab = currentTab(); 428 int middleTab = currentTab();
425 int hframe, vframe, overlap; 429 int hframe, vframe, overlap;
426 style().tabbarMetrics( this, hframe, vframe, overlap ); 430 style().tabbarMetrics( this, hframe, vframe, overlap );
@@ -667,223 +671,239 @@ Launcher::Launcher( QWidget* parent, const char* name, WFlags fl )
667Launcher::~Launcher() 671Launcher::~Launcher()
668{ 672{
669 delete rootFolder; 673 delete rootFolder;
670 delete docsFolder; 674 delete docsFolder;
671} 675}
672 676
673static bool isVisibleWindow(int wid) 677static bool isVisibleWindow(int wid)
674{ 678{
675#ifdef QWS 679#ifdef QWS
676 const QList<QWSWindow> &list = qwsServer->clientWindows(); 680 const QList<QWSWindow> &list = qwsServer->clientWindows();
677 QWSWindow* w; 681 QWSWindow* w;
678 for (QListIterator<QWSWindow> it(list); (w=it.current()); ++it) { 682 for (QListIterator<QWSWindow> it(list); (w=it.current()); ++it) {
679 if ( w->winId() == wid ) 683 if ( w->winId() == wid )
680 return !w->isFullyObscured(); 684 return !w->isFullyObscured();
681 } 685 }
682#endif 686#endif
683 return FALSE; 687 return FALSE;
684} 688}
685 689
686void Launcher::showMaximized() 690void Launcher::showMaximized()
687{ 691{
688 if ( isVisibleWindow( winId() ) ) 692 if ( isVisibleWindow( winId() ) )
689 doMaximize(); 693 doMaximize();
690 else 694 else
691 QTimer::singleShot( 20, this, SLOT(doMaximize()) ); 695 QTimer::singleShot( 20, this, SLOT(doMaximize()) );
692} 696}
693 697
694void Launcher::doMaximize() 698void Launcher::doMaximize()
695{ 699{
696 QMainWindow::showMaximized(); 700 QMainWindow::showMaximized();
697 tabs->setMaximumWidth( qApp->desktop()->width() ); 701 tabs->setMaximumWidth( qApp->desktop()->width() );
698} 702}
699 703
700void Launcher::updateMimeTypes() 704void Launcher::updateMimeTypes()
701{ 705{
702 MimeType::clear(); 706 MimeType::clear();
703 updateMimeTypes(rootFolder); 707 updateMimeTypes(rootFolder);
704} 708}
705 709
706void Launcher::updateMimeTypes(AppLnkSet* folder) 710void Launcher::updateMimeTypes(AppLnkSet* folder)
707{ 711{
708 for ( QListIterator<AppLnk> it( folder->children() ); it.current(); ++it ) { 712 for ( QListIterator<AppLnk> it( folder->children() ); it.current(); ++it ) {
709 AppLnk *app = it.current(); 713 AppLnk *app = it.current();
710 if ( app->type() == "Folder" ) // No tr 714 if ( app->type() == "Folder" ) // No tr
711 updateMimeTypes((AppLnkSet *)app); 715 updateMimeTypes((AppLnkSet *)app);
712 else { 716 else {
713 MimeType::registerApp(*app); 717 MimeType::registerApp(*app);
714 } 718 }
715 } 719 }
716} 720}
717 721
718/** This is a HACK.... 722/** This is a HACK....
719 * Reason: scanning huge mediums, microdirvers for examples 723 * Reason: scanning huge mediums, microdirvers for examples
720 * consomes time. To avoid that we invented the MediumMountCheck 724 * consomes time. To avoid that we invented the MediumMountCheck
721 * 725 *
722 * a) the user globally disabled medium checking. We can ignore 726 * a) the user globally disabled medium checking. We can ignore
723 * all removable medium 727 * all removable medium
724 * b) the user enabled medium checking globally and we need to use this mimefilter 728 * b) the user enabled medium checking globally and we need to use this mimefilter
725 * c) the user enabled medium checking on a per medium bases 729 * c) the user enabled medium checking on a per medium bases
726 * c1) we already checked and its not ask again turns 730 * c1) we already checked and its not ask again turns
727 * c2) we need to ask and then apply the mimefilter 731 * c2) we need to ask and then apply the mimefilter
728 */ 732 */
729void Launcher::loadDocs() // ok here comes a hack belonging to Global:: 733void Launcher::loadDocs() // ok here comes a hack belonging to Global::
730{ 734{
735
736 OWait *owait = new OWait();
737 Global::statusMessage( tr( "Finding documents" ) );
738
739 owait->show();
740 qApp->processEvents();
741
731 delete docsFolder; 742 delete docsFolder;
732 docsFolder = new DocLnkSet; 743 docsFolder = new DocLnkSet;
733 744
734 DocLnkSet *tmp = 0; 745 DocLnkSet *tmp = 0;
735 QString home = QString(getenv("HOME")) + "/Documents"; 746 QString home = QString(getenv("HOME")) + "/Documents";
736 tmp = new DocLnkSet( home , QString::null); 747 tmp = new DocLnkSet( home , QString::null);
737 docsFolder->appendFrom( *tmp ); 748 docsFolder->appendFrom( *tmp );
738 delete tmp; 749 delete tmp;
739 750
740 // RAM documents 751 // RAM documents
741 StorageInfo storage; 752 StorageInfo storage;
742 const QList<FileSystem> &fileSystems = storage.fileSystems(); 753 const QList<FileSystem> &fileSystems = storage.fileSystems();
743 QListIterator<FileSystem> it ( fileSystems ); 754 QListIterator<FileSystem> it ( fileSystems );
744 755
745 for ( ; it.current(); ++it ) { 756 for ( ; it.current(); ++it ) {
746 if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { 757 if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) {
747 tmp = new DocLnkSet( (*it)->path(), QString::null ); 758 tmp = new DocLnkSet( (*it)->path(), QString::null );
748 docsFolder->appendFrom( *tmp ); 759 docsFolder->appendFrom( *tmp );
749 delete tmp; 760 delete tmp;
750 } 761 }
751 } 762 }
752 763
753 Config mediumCfg( "medium"); 764 Config mediumCfg( "medium");
754 mediumCfg.setGroup("main"); 765 mediumCfg.setGroup("main");
755 // a) -zecke we don't want to check 766 // a) -zecke we don't want to check
756 if(!mediumCfg.readBoolEntry("use", true ) ) 767 if(!mediumCfg.readBoolEntry("use", true ) )
757 return; 768 return;
758 769
759 // find out wich filesystems are new in this round 770 // find out wich filesystems are new in this round
760 // We will do this by having a timestamp inside each mountpoint 771 // We will do this by having a timestamp inside each mountpoint
761 // if the current timestamp doesn't match this is a new file system and 772 // if the current timestamp doesn't match this is a new file system and
762 // come up with our MediumMountGui :) let the hacking begin 773 // come up with our MediumMountGui :) let the hacking begin
763 int stamp = uidgen.generate(); 774 int stamp = uidgen.generate();
764 775
765 QString newStamp = QString::number( stamp ); // generates newtime Stamp 776 QString newStamp = QString::number( stamp ); // generates newtime Stamp
766 777
767 // b) 778 // b)
768 if( mediumCfg.readBoolEntry("global", true ) ){ 779 if( mediumCfg.readBoolEntry("global", true ) ){
769 QString mime = configToMime(&mediumCfg).join(";"); 780 QString mime = configToMime(&mediumCfg).join(";");
770 for( it.toFirst(); it.current(); ++it ){ 781 for( it.toFirst(); it.current(); ++it ){
771 if( (*it)->isRemovable() ){ 782 if( (*it)->isRemovable() ){
772 tmp = new DocLnkSet( (*it)->path(), mime ); 783 tmp = new DocLnkSet( (*it)->path(), mime );
773 docsFolder->appendFrom( *tmp ); 784 docsFolder->appendFrom( *tmp );
774 delete tmp; 785 delete tmp;
775 } 786 }
776 } // done 787 } // done
777 return; // save the else 788 return; // save the else
778 } 789 }
779 // c) zecke 790 // c) zecke
780 for ( it.toFirst(); it.current(); ++it ) { 791 for ( it.toFirst(); it.current(); ++it ) {
781 if ( (*it)->isRemovable() ) { // let's find out if we should search on it 792 if ( (*it)->isRemovable() ) { // let's find out if we should search on it
782 Config cfg( (*it)->path() + "/.opiestorage.cf", Config::File); 793 Config cfg( (*it)->path() + "/.opiestorage.cf", Config::File);
783 cfg.setGroup("main"); 794 cfg.setGroup("main");
784 QString stamp = cfg.readEntry("timestamp", QDateTime::currentDateTime().toString() ); 795 QString stamp = cfg.readEntry("timestamp", QDateTime::currentDateTime().toString() );
785 /** This medium is uptodate 796 /** This medium is uptodate
786 */ 797 */
787 if( stamp == m_timeStamp ){ // ok we know this card 798 if( stamp == m_timeStamp ){ // ok we know this card
788 cfg.writeEntry("timestamp", newStamp ); //just write a new timestamp 799 cfg.writeEntry("timestamp", newStamp ); //just write a new timestamp
789 // we need to scan the list now. Hopefully the cache will be there 800 // we need to scan the list now. Hopefully the cache will be there
790 // read the mimetypes from the config and search for documents 801 // read the mimetypes from the config and search for documents
791 QStringList mimetypes = configToMime( &cfg); 802 QStringList mimetypes = configToMime( &cfg);
792 tmp = new DocLnkSet( (*it)->path(), mimetypes.join(";") ); 803 qApp->processEvents();
804 Global::statusMessage( tr( "Searching documents" ) );
805 tmp = new DocLnkSet( (*it)->path(), mimetypes.join(";") );
793 docsFolder->appendFrom( *tmp ); 806 docsFolder->appendFrom( *tmp );
794 delete tmp; 807 delete tmp;
795 808
796 }else{ // come up with the gui cause this a new card 809 }else{ // come up with the gui cause this a new card
797 MediumMountGui medium(&cfg, (*it)->path() ); 810 MediumMountGui medium(&cfg, (*it)->path() );
798 if( medium.check() ){ // we did not ask before or ask again is off 811 if( medium.check() ){ // we did not ask before or ask again is off
799 /** c2) */ 812 /** c2) */
800 if( medium.exec() ){ // he clicked yes so search it 813 if( medium.exec() ){ // he clicked yes so search it
801 // speicher 814 // speicher
802 //cfg.read(); // cause of a race we need to reread - fixed 815 //cfg.read(); // cause of a race we need to reread - fixed
803 cfg.setGroup("main"); 816 cfg.setGroup("main");
804 cfg.writeEntry("timestamp", newStamp ); 817 cfg.writeEntry("timestamp", newStamp );
805 cfg.write(); 818 cfg.write();
806 tmp = new DocLnkSet( (*it)->path(), medium.mimeTypes().join(";" ) ); 819
807 docsFolder->appendFrom( *tmp ); 820 qApp->processEvents();
821 tmp = new DocLnkSet( (*it)->path(), medium.mimeTypes().join(";" ) );
822 docsFolder->appendFrom( *tmp );
808 delete tmp; 823 delete tmp;
809 }// no else 824 }// no else
810 /** c1) */ 825 /** c1) */
811 }else{ // we checked 826 }else{ // we checked
812 // do something different see what we need to do 827 // do something different see what we need to do
813 // let's see if we should check the device 828 // let's see if we should check the device
814 cfg.setGroup("main" ); 829 cfg.setGroup("main" );
815 bool check = cfg.readBoolEntry("autocheck", true ); 830 bool check = cfg.readBoolEntry("autocheck", true );
816 if( check ){ // find the documents 831 if( check ){ // find the documents
817 tmp = new DocLnkSet( (*it)->path(), configToMime(&cfg ).join(";") ); 832
833 qApp->processEvents();
834 Global::statusMessage( tr( "Searching documents" ) );
835 tmp = new DocLnkSet( (*it)->path(), configToMime(&cfg ).join(";") );
818 docsFolder->appendFrom( *tmp ); 836 docsFolder->appendFrom( *tmp );
819 delete tmp; 837 delete tmp;
820 } 838 }
821 } 839 }
822 } 840 }
823 } 841 }
824 } 842 }
825 m_timeStamp = newStamp; 843 m_timeStamp = newStamp;
844 owait->hide();
845 delete owait;
826} 846}
827 847
828void Launcher::updateTabs() 848void Launcher::updateTabs()
829{ 849{
830 MimeType::updateApplications(); // ### reads all applnks twice 850 MimeType::updateApplications(); // ### reads all applnks twice
831 851
832 delete rootFolder; 852 delete rootFolder;
833 rootFolder = new AppLnkSet( MimeType::appsFolderName() ); 853 rootFolder = new AppLnkSet( MimeType::appsFolderName() );
834 854
835 loadDocs(); 855 loadDocs();
836 856
837 tabs->initializeCategories(rootFolder, docsFolder, storage->fileSystems()); 857 tabs->initializeCategories(rootFolder, docsFolder, storage->fileSystems());
838} 858}
839 859
840void Launcher::updateDocs() 860void Launcher::updateDocs()
841{ 861{
842 loadDocs(); 862 loadDocs();
843 tabs->updateDocs(docsFolder,storage->fileSystems()); 863 tabs->updateDocs(docsFolder,storage->fileSystems());
844} 864}
845 865
846void Launcher::viewSelected(const QString& s) 866void Launcher::viewSelected(const QString& s)
847{ 867{
848 setCaption( s + tr(" - Launcher") ); 868 setCaption( s + tr(" - Launcher") );
849} 869}
850 870
851void Launcher::nextView() 871void Launcher::nextView()
852{ 872{
853 tabs->nextTab(); 873 tabs->nextTab();
854} 874}
855 875
856void Launcher::showTab(const QString& id) 876void Launcher::showTab(const QString& id)
857{ 877{
858 tabs->showTab(id); 878 tabs->showTab(id);
859 raise(); 879 raise();
860} 880}
861 881
862void Launcher::select( const AppLnk *appLnk ) 882void Launcher::select( const AppLnk *appLnk )
863{ 883{
864 if ( appLnk->type() == "Folder" ) { // No tr 884 if ( appLnk->type() == "Folder" ) { // No tr
865 // Not supported: flat is simpler for the user 885 // Not supported: flat is simpler for the user
866 } else { 886 } else {
867 if ( appLnk->exec().isNull() ) { 887 if ( appLnk->exec().isNull() ) {
868 QMessageBox::information(this,tr("No application"), 888 QMessageBox::information(this,tr("No application"),
869 tr("<p>No application is defined for this document." 889 tr("<p>No application is defined for this document."
870 "<p>Type is %1.").arg(appLnk->type())); 890 "<p>Type is %1.").arg(appLnk->type()));
871 return; 891 return;
872 } 892 }
873 tabs->setBusy(TRUE); 893 tabs->setBusy(TRUE);
874 emit executing( appLnk ); 894 emit executing( appLnk );
875 appLnk->execute(); 895 appLnk->execute();
876 } 896 }
877} 897}
878 898
879void Launcher::externalSelected(const AppLnk *appLnk) 899void Launcher::externalSelected(const AppLnk *appLnk)
880{ 900{
881 tabs->setBusy(TRUE); 901 tabs->setBusy(TRUE);
882 emit executing( appLnk ); 902 emit executing( appLnk );
883} 903}
884 904
885void Launcher::properties( AppLnk *appLnk ) 905void Launcher::properties( AppLnk *appLnk )
886{ 906{
887 if ( appLnk->type() == "Folder" ) { // No tr 907 if ( appLnk->type() == "Folder" ) { // No tr
888 // Not supported: flat is simpler for the user 908 // Not supported: flat is simpler for the user
889 } else { 909 } else {
@@ -1043,129 +1063,132 @@ void Launcher::systemMessage( const QCString &msg, const QByteArray &data)
1043 QString s; 1063 QString s;
1044 QString homeDir = getenv("HOME"); 1064 QString homeDir = getenv("HOME");
1045 QString hardDiskHome, hardDiskHomePath; 1065 QString hardDiskHome, hardDiskHomePath;
1046 for ( ; it.current(); ++it ) { 1066 for ( ; it.current(); ++it ) {
1047 int k4 = (*it)->blockSize()/256; 1067 int k4 = (*it)->blockSize()/256;
1048 if ( (*it)->isRemovable() || (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs") { 1068 if ( (*it)->isRemovable() || (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs") {
1049 s += (*it)->name() + "=" + (*it)->path() + "/Documents " 1069 s += (*it)->name() + "=" + (*it)->path() + "/Documents "
1050 + QString::number( (*it)->availBlocks() * k4/4 ) 1070 + QString::number( (*it)->availBlocks() * k4/4 )
1051 + "K " + (*it)->options() + ";"; 1071 + "K " + (*it)->options() + ";";
1052 } else if ( (*it)->disk() == "/dev/mtdblock1" || 1072 } else if ( (*it)->disk() == "/dev/mtdblock1" ||
1053 (*it)->disk() == "/dev/mtdblock/1" ) { 1073 (*it)->disk() == "/dev/mtdblock/1" ) {
1054 s += (*it)->name() + "=" + homeDir + "/Documents " 1074 s += (*it)->name() + "=" + homeDir + "/Documents "
1055 + QString::number( (*it)->availBlocks() * k4/4 ) 1075 + QString::number( (*it)->availBlocks() * k4/4 )
1056 + "K " + (*it)->options() + ";"; 1076 + "K " + (*it)->options() + ";";
1057 } else if ( (*it)->name().contains( "Hard Disk") && 1077 } else if ( (*it)->name().contains( "Hard Disk") &&
1058 homeDir.contains( (*it)->path() ) && 1078 homeDir.contains( (*it)->path() ) &&
1059 (*it)->path().length() > hardDiskHomePath.length() ) { 1079 (*it)->path().length() > hardDiskHomePath.length() ) {
1060 hardDiskHomePath = (*it)->path(); 1080 hardDiskHomePath = (*it)->path();
1061 hardDiskHome = 1081 hardDiskHome =
1062 (*it)->name() + "=" + homeDir + "/Documents " 1082 (*it)->name() + "=" + homeDir + "/Documents "
1063 + QString::number( (*it)->availBlocks() * k4/4 ) 1083 + QString::number( (*it)->availBlocks() * k4/4 )
1064 + "K " + (*it)->options() + ";"; 1084 + "K " + (*it)->options() + ";";
1065 } 1085 }
1066 } 1086 }
1067 if ( !hardDiskHome.isEmpty() ) 1087 if ( !hardDiskHome.isEmpty() )
1068 s += hardDiskHome; 1088 s += hardDiskHome;
1069 1089
1070#ifndef QT_NO_COP 1090#ifndef QT_NO_COP
1071 e << s; 1091 e << s;
1072#endif 1092#endif
1073 } else if ( msg == "sendSyncDate(QString)" ) { 1093 } else if ( msg == "sendSyncDate(QString)" ) {
1074 QString app; 1094 QString app;
1075 stream >> app; 1095 stream >> app;
1076 Config cfg( "qpe" ); 1096 Config cfg( "qpe" );
1077 cfg.setGroup("SyncDate"); 1097 cfg.setGroup("SyncDate");
1078#ifndef QT_NO_COP 1098#ifndef QT_NO_COP
1079 QCopEnvelope e( "QPE/Desktop", "syncDate(QString,QString)" ); 1099 QCopEnvelope e( "QPE/Desktop", "syncDate(QString,QString)" );
1080 e << app << cfg.readEntry( app ); 1100 e << app << cfg.readEntry( app );
1081#endif 1101#endif
1082 //qDebug("QPE/System sendSyncDate for %s: response %s", app.latin1(), 1102 //qDebug("QPE/System sendSyncDate for %s: response %s", app.latin1(),
1083 //cfg.readEntry( app ).latin1() ); 1103 //cfg.readEntry( app ).latin1() );
1084 } else if ( msg == "setSyncDate(QString,QString)" ) { 1104 } else if ( msg == "setSyncDate(QString,QString)" ) {
1085 QString app, date; 1105 QString app, date;
1086 stream >> app >> date; 1106 stream >> app >> date;
1087 Config cfg( "qpe" ); 1107 Config cfg( "qpe" );
1088 cfg.setGroup("SyncDate"); 1108 cfg.setGroup("SyncDate");
1089 cfg.writeEntry( app, date ); 1109 cfg.writeEntry( app, date );
1090 //qDebug("setSyncDate(QString,QString) %s %s", app.latin1(), date.latin1()); 1110 //qDebug("setSyncDate(QString,QString) %s %s", app.latin1(), date.latin1());
1091 } else if ( msg == "startSync(QString)" ) { 1111 } else if ( msg == "startSync(QString)" ) {
1092 QString what; 1112 QString what;
1093 stream >> what; 1113 stream >> what;
1094 delete syncDialog; syncDialog = 0; 1114 delete syncDialog; syncDialog = 0;
1095 syncDialog = new SyncDialog( this, "syncProgress", FALSE, 1115 syncDialog = new SyncDialog( this, "syncProgress", FALSE,
1096 WStyle_Tool | WStyle_Customize | 1116 WStyle_Tool | WStyle_Customize |
1097 Qt::WStyle_StaysOnTop ); 1117 Qt::WStyle_StaysOnTop );
1098 syncDialog->showMaximized(); 1118 syncDialog->showMaximized();
1099 syncDialog->whatLabel->setText( "<b>" + what + "</b>" ); 1119 syncDialog->whatLabel->setText( "<b>" + what + "</b>" );
1100 connect( syncDialog->buttonCancel, SIGNAL( clicked() ), 1120 connect( syncDialog->buttonCancel, SIGNAL( clicked() ),
1101 SLOT( cancelSync() ) ); 1121 SLOT( cancelSync() ) );
1102 } else if ( msg == "stopSync()") { 1122 } else if ( msg == "stopSync()") {
1103 delete syncDialog; syncDialog = 0; 1123 delete syncDialog; syncDialog = 0;
1104 } else if ( msg == "getAllDocLinks()" ) { 1124 } else if ( msg == "getAllDocLinks()" ) {
1105 loadDocs(); 1125 loadDocs();
1106 1126
1107 QString contents; 1127 // directly show updated docs in document tab
1128 updateDocs();
1129
1130 QString contents;
1108 1131
1109 //Categories cats; 1132 //Categories cats;
1110 for ( QListIterator<DocLnk> it( docsFolder->children() ); it.current(); ++it ) { 1133 for ( QListIterator<DocLnk> it( docsFolder->children() ); it.current(); ++it ) {
1111 DocLnk *doc = it.current(); 1134 DocLnk *doc = it.current();
1112 QFileInfo fi( doc->file() ); 1135 QFileInfo fi( doc->file() );
1113 if ( !fi.exists() ) 1136 if ( !fi.exists() )
1114 continue; 1137 continue;
1115 1138
1116 bool fake = !doc->linkFileKnown(); 1139 bool fake = !doc->linkFileKnown();
1117 if ( !fake ) { 1140 if ( !fake ) {
1118 QFile f( doc->linkFile() ); 1141 QFile f( doc->linkFile() );
1119 if ( f.open( IO_ReadOnly ) ) { 1142 if ( f.open( IO_ReadOnly ) ) {
1120 QTextStream ts( &f ); 1143 QTextStream ts( &f );
1121 ts.setEncoding( QTextStream::UnicodeUTF8 ); 1144 ts.setEncoding( QTextStream::UnicodeUTF8 );
1122 contents += ts.read(); 1145 contents += ts.read();
1123 f.close(); 1146 f.close();
1124 } else 1147 } else
1125 fake = TRUE; 1148 fake = TRUE;
1126 } 1149 }
1127 if (fake) { 1150 if (fake) {
1128 contents += "[Desktop Entry]\n"; 1151 contents += "[Desktop Entry]\n";
1129 contents += "Categories = " + // No tr 1152 contents += "Categories = " + // No tr
1130 // cats.labels("Document View",doc->categories()).join(";") + "\n"; // No tr 1153 // cats.labels("Document View",doc->categories()).join(";") + "\n"; // No tr
1131 Qtopia::Record::idsToString( doc->categories() ) + "\n"; 1154 Qtopia::Record::idsToString( doc->categories() ) + "\n";
1132 contents += "Name = "+doc->name()+"\n"; // No tr 1155 contents += "Name = "+doc->name()+"\n"; // No tr
1133 contents += "Type = "+doc->type()+"\n"; // No tr 1156 contents += "Type = "+doc->type()+"\n"; // No tr
1134 } 1157 }
1135 contents += "File = "+doc->file()+"\n"; // No tr // (resolves path) 1158 contents += "File = "+doc->file()+"\n"; // No tr // (resolves path)
1136 contents += QString("Size = %1\n").arg( fi.size() ); // No tr 1159 contents += QString("Size = %1\n").arg( fi.size() ); // No tr
1137 } 1160 }
1138 1161
1139 //qDebug( "sending length %d", contents.length() ); 1162 //qDebug( "sending length %d", contents.length() );
1140#ifndef QT_NO_COP 1163#ifndef QT_NO_COP
1141 QCopEnvelope e( "QPE/Desktop", "docLinks(QString)" ); 1164 QCopEnvelope e( "QPE/Desktop", "docLinks(QString)" );
1142 e << contents; 1165 e << contents;
1143#endif 1166#endif
1144 1167
1145 //qDebug( "================ \n\n%s\n\n===============", 1168 //qDebug( "================ \n\n%s\n\n===============",
1146 //contents.latin1() ); 1169 //contents.latin1() );
1147 1170
1148 delete docsFolder; 1171 delete docsFolder;
1149 docsFolder = 0; 1172 docsFolder = 0;
1150#ifdef QWS 1173#ifdef QWS
1151 } else if ( msg == "setMouseProto(QString)" ) { 1174 } else if ( msg == "setMouseProto(QString)" ) {
1152 QString mice; 1175 QString mice;
1153 stream >> mice; 1176 stream >> mice;
1154 setenv("QWS_MOUSE_PROTO",mice.latin1(),1); 1177 setenv("QWS_MOUSE_PROTO",mice.latin1(),1);
1155 qwsServer->openMouse(); 1178 qwsServer->openMouse();
1156 } else if ( msg == "setKeyboard(QString)" ) { 1179 } else if ( msg == "setKeyboard(QString)" ) {
1157 QString kb; 1180 QString kb;
1158 stream >> kb; 1181 stream >> kb;
1159 setenv("QWS_KEYBOARD",kb.latin1(),1); 1182 setenv("QWS_KEYBOARD",kb.latin1(),1);
1160 qwsServer->openKeyboard(); 1183 qwsServer->openKeyboard();
1161#endif 1184#endif
1162 } 1185 }
1163} 1186}
1164 1187
1165void Launcher::cancelSync() 1188void Launcher::cancelSync()
1166{ 1189{
1167#ifndef QT_NO_COP 1190#ifndef QT_NO_COP
1168 QCopEnvelope e( "QPE/Desktop", "cancelSync()" ); 1191 QCopEnvelope e( "QPE/Desktop", "cancelSync()" );
1169#endif 1192#endif
1170} 1193}
1171 1194