-rw-r--r-- | library/global.cpp | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/library/global.cpp b/library/global.cpp index 05d23ac..6c0a66a 100644 --- a/library/global.cpp +++ b/library/global.cpp | |||
@@ -1,92 +1,93 @@ | |||
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 | #define QTOPIA_INTERNAL_LANGLIST | 20 | #define QTOPIA_INTERNAL_LANGLIST |
21 | #include <qpe/qpedebug.h> | 21 | #include <qpe/qpedebug.h> |
22 | #include <qpe/global.h> | 22 | #include <qpe/global.h> |
23 | #include <qpe/qdawg.h> | 23 | #include <qpe/qdawg.h> |
24 | #include <qpe/qpeapplication.h> | 24 | #include <qpe/qpeapplication.h> |
25 | #include <qpe/resource.h> | 25 | #include <qpe/resource.h> |
26 | #include <qpe/storage.h> | 26 | #include <qpe/storage.h> |
27 | #include <qpe/applnk.h> | 27 | #include <qpe/applnk.h> |
28 | #include <qpe/qcopenvelope_qws.h> | 28 | #include <qpe/qcopenvelope_qws.h> |
29 | #include <qpe/config.h> | ||
29 | 30 | ||
30 | #include <qfile.h> | 31 | #include <qfile.h> |
31 | #include <qlabel.h> | 32 | #include <qlabel.h> |
32 | #include <qtimer.h> | 33 | #include <qtimer.h> |
33 | #include <qmap.h> | 34 | #include <qmap.h> |
34 | #include <qdict.h> | 35 | #include <qdict.h> |
35 | #include <qdir.h> | 36 | #include <qdir.h> |
36 | #include <qmessagebox.h> | 37 | #include <qmessagebox.h> |
37 | #include <qregexp.h> | 38 | #include <qregexp.h> |
38 | 39 | ||
39 | #include <stdlib.h> | 40 | #include <stdlib.h> |
40 | #include <sys/stat.h> | 41 | #include <sys/stat.h> |
41 | #include <sys/wait.h> | 42 | #include <sys/wait.h> |
42 | #include <sys/types.h> | 43 | #include <sys/types.h> |
43 | #include <fcntl.h> | 44 | #include <fcntl.h> |
44 | #include <unistd.h> | 45 | #include <unistd.h> |
45 | #include <errno.h> | 46 | #include <errno.h> |
46 | 47 | ||
47 | #include <qwindowsystem_qws.h> // for qwsServer | 48 | #include <qwindowsystem_qws.h> // for qwsServer |
48 | #include <qdatetime.h> | 49 | #include <qdatetime.h> |
49 | 50 | ||
50 | #include <qfile.h> | 51 | #include <qfile.h> |
51 | 52 | ||
52 | namespace { | 53 | namespace { |
53 | // checks if the storage should be searched | 54 | // checks if the storage should be searched |
54 | bool checkStorage(const QString &path ){ // this is a small Config replacement cause config is too limited -zecke | 55 | bool checkStorage(const QString &path ){ // this is a small Config replacement cause config is too limited -zecke |
55 | QFile file(path ); | 56 | QFile file(path ); |
56 | if(!file.open(IO_ReadOnly ) ) | 57 | if(!file.open(IO_ReadOnly ) ) |
57 | return true; | 58 | return true; |
58 | 59 | ||
59 | QByteArray array = file.readAll(); | 60 | QByteArray array = file.readAll(); |
60 | QStringList list = QStringList::split('\n', QString( array ) ); | 61 | QStringList list = QStringList::split('\n', QString( array ) ); |
61 | for(QStringList::Iterator it = list.begin(); it != list.end(); ++it ){ | 62 | for(QStringList::Iterator it = list.begin(); it != list.end(); ++it ){ |
62 | if( (*it).startsWith("autocheck = 0" ) ){ | 63 | if( (*it).startsWith("autocheck = 0" ) ){ |
63 | return false; | 64 | return false; |
64 | }else if( (*it).startsWith("autocheck = 1" ) ){ | 65 | }else if( (*it).startsWith("autocheck = 1" ) ){ |
65 | return true; | 66 | return true; |
66 | } | 67 | } |
67 | } | 68 | } |
68 | return true; | 69 | return true; |
69 | } | 70 | } |
70 | } | 71 | } |
71 | 72 | ||
72 | //#include "quickexec_p.h" | 73 | //#include "quickexec_p.h" |
73 | 74 | ||
74 | class Emitter : public QObject { | 75 | class Emitter : public QObject { |
75 | Q_OBJECT | 76 | Q_OBJECT |
76 | public: | 77 | public: |
77 | Emitter( QWidget* receiver, const QString& document ) | 78 | Emitter( QWidget* receiver, const QString& document ) |
78 | { | 79 | { |
79 | connect(this, SIGNAL(setDocument(const QString&)), | 80 | connect(this, SIGNAL(setDocument(const QString&)), |
80 | receiver, SLOT(setDocument(const QString&))); | 81 | receiver, SLOT(setDocument(const QString&))); |
81 | emit setDocument(document); | 82 | emit setDocument(document); |
82 | disconnect(this, SIGNAL(setDocument(const QString&)), | 83 | disconnect(this, SIGNAL(setDocument(const QString&)), |
83 | receiver, SLOT(setDocument(const QString&))); | 84 | receiver, SLOT(setDocument(const QString&))); |
84 | } | 85 | } |
85 | 86 | ||
86 | signals: | 87 | signals: |
87 | void setDocument(const QString&); | 88 | void setDocument(const QString&); |
88 | }; | 89 | }; |
89 | 90 | ||
90 | 91 | ||
91 | class StartingAppList : public QObject { | 92 | class StartingAppList : public QObject { |
92 | Q_OBJECT | 93 | Q_OBJECT |
@@ -705,114 +706,122 @@ QString Global::shellQuote(const QString& s) | |||
705 | { | 706 | { |
706 | QString r="\""; | 707 | QString r="\""; |
707 | for (int i=0; i<(int)s.length(); i++) { | 708 | for (int i=0; i<(int)s.length(); i++) { |
708 | char c = s[i].latin1(); | 709 | char c = s[i].latin1(); |
709 | switch (c) { | 710 | switch (c) { |
710 | case '\\': case '"': case '$': | 711 | case '\\': case '"': case '$': |
711 | r+="\\"; | 712 | r+="\\"; |
712 | } | 713 | } |
713 | r += s[i]; | 714 | r += s[i]; |
714 | } | 715 | } |
715 | r += "\""; | 716 | r += "\""; |
716 | return r; | 717 | return r; |
717 | } | 718 | } |
718 | 719 | ||
719 | /*! | 720 | /*! |
720 | Returns the string \a s with the characters '\' and '"' quoted by a | 721 | Returns the string \a s with the characters '\' and '"' quoted by a |
721 | preceeding '\'. | 722 | preceeding '\'. |
722 | 723 | ||
723 | \sa shellQuote() | 724 | \sa shellQuote() |
724 | */ | 725 | */ |
725 | QString Global::stringQuote(const QString& s) | 726 | QString Global::stringQuote(const QString& s) |
726 | { | 727 | { |
727 | QString r="\""; | 728 | QString r="\""; |
728 | for (int i=0; i<(int)s.length(); i++) { | 729 | for (int i=0; i<(int)s.length(); i++) { |
729 | char c = s[i].latin1(); | 730 | char c = s[i].latin1(); |
730 | switch (c) { | 731 | switch (c) { |
731 | case '\\': case '"': | 732 | case '\\': case '"': |
732 | r+="\\"; | 733 | r+="\\"; |
733 | } | 734 | } |
734 | r += s[i]; | 735 | r += s[i]; |
735 | } | 736 | } |
736 | r += "\""; | 737 | r += "\""; |
737 | return r; | 738 | return r; |
738 | } | 739 | } |
739 | 740 | ||
740 | /*! | 741 | /*! |
741 | Finds all documents on the system's document directories which | 742 | Finds all documents on the system's document directories which |
742 | match the filter \a mimefilter, and appends the resulting DocLnk | 743 | match the filter \a mimefilter, and appends the resulting DocLnk |
743 | objects to \a folder. | 744 | objects to \a folder. |
744 | */ | 745 | */ |
745 | void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter) | 746 | void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter) |
746 | { | 747 | { |
747 | QString homedocs = QString(getenv("HOME")) + "/Documents"; | 748 | QString homedocs = QString(getenv("HOME")) + "/Documents"; |
748 | DocLnkSet d(homedocs,mimefilter); | 749 | DocLnkSet d(homedocs,mimefilter); |
749 | folder->appendFrom(d); | 750 | folder->appendFrom(d); |
750 | /** let's do intellegint way of searching these files | 751 | /** let's do intellegint way of searching these files |
751 | * a) the user don't want to check mediums global | 752 | * a) the user don't want to check mediums global |
752 | * b) the user wants to check but use the global options for it | 753 | * b) the user wants to check but use the global options for it |
753 | * c) the user wants to check it but not this medium | 754 | * c) the user wants to check it but not this medium |
754 | * d) the user wants to check and this medium as well | 755 | * d) the user wants to check and this medium as well |
755 | * | 756 | * |
756 | * In all cases we need to apply a different mimefilter to | 757 | * In all cases we need to apply a different mimefilter to |
757 | * the medium. | 758 | * the medium. |
758 | * a) mimefilter.isEmpty() we need to apply the responding filter | 759 | * a) mimefilter.isEmpty() we need to apply the responding filter |
759 | * either the global or the one on the medium | 760 | * either the global or the one on the medium |
760 | * | 761 | * |
761 | * b) mimefilter is set to an application we need to find out if the | 762 | * b) mimefilter is set to an application we need to find out if the |
762 | * mimetypes are included in the mime mask of the medium | 763 | * mimetypes are included in the mime mask of the medium |
763 | */ | 764 | */ |
764 | StorageInfo storage; | 765 | StorageInfo storage; |
765 | const QList<FileSystem> &fs = storage.fileSystems(); | 766 | const QList<FileSystem> &fs = storage.fileSystems(); |
766 | QListIterator<FileSystem> it ( fs ); | 767 | QListIterator<FileSystem> it ( fs ); |
767 | for ( ; it.current(); ++it ) { | 768 | for ( ; it.current(); ++it ) { |
768 | if ( (*it)->isRemovable() ) { // let's find out if we should search on it | 769 | if ( (*it)->isRemovable() ) { // let's find out if we should search on it |
769 | // this is a candidate look at the cf and see if we should search on it | 770 | // this is a candidate look at the cf and see if we should search on it |
770 | QString path = (*it)->path(); | 771 | QString path = (*it)->path(); |
771 | if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) | 772 | if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) |
772 | continue; | 773 | continue; |
773 | DocLnkSet ide( path, mimefilter ); | 774 | Config conf((*it)->path() + "/.opiestorage.cf", Config::File ); |
774 | folder->appendFrom(ide); | 775 | conf.setGroup("subdirs"); |
776 | QStringList subDirs = conf.readListEntry("subdirs",':'); | ||
777 | if (subDirs.isEmpty()) { | ||
778 | subDirs.append("Documents"); | ||
779 | } | ||
780 | for (unsigned c = 0; c < subDirs.count();++c) { | ||
781 | DocLnkSet ide( path+"/"+subDirs[c], mimefilter ); | ||
782 | folder->appendFrom(ide); | ||
783 | } | ||
775 | } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { | 784 | } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { |
776 | QString path = (*it)->path() + "/Documents"; | 785 | QString path = (*it)->path() + "/Documents"; |
777 | DocLnkSet ide( path, mimefilter ); | 786 | DocLnkSet ide( path, mimefilter ); |
778 | folder->appendFrom(ide); | 787 | folder->appendFrom(ide); |
779 | } | 788 | } |
780 | } | 789 | } |
781 | } | 790 | } |
782 | 791 | ||
783 | QStringList Global::languageList() | 792 | QStringList Global::languageList() |
784 | { | 793 | { |
785 | QString lang = getenv("LANG"); | 794 | QString lang = getenv("LANG"); |
786 | QStringList langs; | 795 | QStringList langs; |
787 | langs.append(lang); | 796 | langs.append(lang); |
788 | int i = lang.find("."); | 797 | int i = lang.find("."); |
789 | if ( i > 0 ) | 798 | if ( i > 0 ) |
790 | lang = lang.left( i ); | 799 | lang = lang.left( i ); |
791 | i = lang.find( "_" ); | 800 | i = lang.find( "_" ); |
792 | if ( i > 0 ) | 801 | if ( i > 0 ) |
793 | langs.append(lang.left(i)); | 802 | langs.append(lang.left(i)); |
794 | return langs; | 803 | return langs; |
795 | } | 804 | } |
796 | 805 | ||
797 | QStringList Global::helpPath() | 806 | QStringList Global::helpPath() |
798 | { | 807 | { |
799 | QString qpeDir = QPEApplication::qpeDir(); | 808 | QString qpeDir = QPEApplication::qpeDir(); |
800 | QStringList path; | 809 | QStringList path; |
801 | QStringList langs = Global::languageList(); | 810 | QStringList langs = Global::languageList(); |
802 | for (QStringList::ConstIterator it = langs.fromLast(); it!=langs.end(); --it) { | 811 | for (QStringList::ConstIterator it = langs.fromLast(); it!=langs.end(); --it) { |
803 | QString lang = *it; | 812 | QString lang = *it; |
804 | if ( !lang.isEmpty() ) | 813 | if ( !lang.isEmpty() ) |
805 | path += qpeDir + "/help/" + lang + "/html"; | 814 | path += qpeDir + "/help/" + lang + "/html"; |
806 | } | 815 | } |
807 | path += qpeDir + "/pics"; | 816 | path += qpeDir + "/pics"; |
808 | path += qpeDir + "/help/html"; | 817 | path += qpeDir + "/help/html"; |
809 | /* we even put english into the en dir so try it as fallback as well for opie */ | 818 | /* we even put english into the en dir so try it as fallback as well for opie */ |
810 | path += qpeDir + "/help/en/html"; | 819 | path += qpeDir + "/help/en/html"; |
811 | path += qpeDir + "/docs"; | 820 | path += qpeDir + "/docs"; |
812 | 821 | ||
813 | 822 | ||
814 | return path; | 823 | return path; |
815 | } | 824 | } |
816 | 825 | ||
817 | 826 | ||
818 | #include "global.moc" | 827 | #include "global.moc" |