author | alwin <alwin> | 2004-02-22 21:40:20 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-02-22 21:40:20 (UTC) |
commit | caa64a311d665e4d5c75cc9d45e0b3cd8ef2fdf1 (patch) (unidiff) | |
tree | ef464310a07582a7179a4d136b555b806f43fe1a | |
parent | 936fc191ac5756a4de2e8b2a83c8bc910f918b95 (diff) | |
download | opie-caa64a311d665e4d5c75cc9d45e0b3cd8ef2fdf1.zip opie-caa64a311d665e4d5c75cc9d45e0b3cd8ef2fdf1.tar.gz opie-caa64a311d665e4d5c75cc9d45e0b3cd8ef2fdf1.tar.bz2 |
when inserting a new media without .opiestorage.cf a dialog comes
setting up this file.
-rw-r--r-- | core/launcher/documentlist.cpp | 7 | ||||
-rw-r--r-- | core/launcher/mediadlg.cpp | 31 | ||||
-rw-r--r-- | core/launcher/mediadlg.h | 29 | ||||
-rw-r--r-- | core/launcher/server.pro | 12 |
4 files changed, 74 insertions, 5 deletions
diff --git a/core/launcher/documentlist.cpp b/core/launcher/documentlist.cpp index 9736e65..39dc7c9 100644 --- a/core/launcher/documentlist.cpp +++ b/core/launcher/documentlist.cpp | |||
@@ -6,32 +6,33 @@ | |||
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 | #include "documentlist.h" | 20 | #include "documentlist.h" |
21 | #include "serverinterface.h" | 21 | #include "serverinterface.h" |
22 | #include "mediadlg.h" | ||
22 | 23 | ||
23 | #include <opie2/oglobal.h> | 24 | #include <opie2/oglobal.h> |
24 | 25 | ||
25 | #include <qtopia/config.h> | 26 | #include <qtopia/config.h> |
26 | #include <qtopia/mimetype.h> | 27 | #include <qtopia/mimetype.h> |
27 | #include <qtopia/resource.h> | 28 | #include <qtopia/resource.h> |
28 | #include <qtopia/private/categories.h> | 29 | #include <qtopia/private/categories.h> |
29 | #include <qtopia/qpeapplication.h> | 30 | #include <qtopia/qpeapplication.h> |
30 | #include <qtopia/applnk.h> | 31 | #include <qtopia/applnk.h> |
31 | #include <qtopia/storage.h> | 32 | #include <qtopia/storage.h> |
32 | #ifdef Q_WS_QWS | 33 | #ifdef Q_WS_QWS |
33 | #include <qtopia/qcopenvelope_qws.h> | 34 | #include <qtopia/qcopenvelope_qws.h> |
34 | #endif | 35 | #endif |
35 | 36 | ||
36 | #include <qtimer.h> | 37 | #include <qtimer.h> |
37 | #include <qfileinfo.h> | 38 | #include <qfileinfo.h> |
@@ -421,36 +422,36 @@ DocumentListPrivate::DocumentListPrivate( ServerInterface *gui ) | |||
421 | sendDocLnks = false; | 422 | sendDocLnks = false; |
422 | } | 423 | } |
423 | for ( int i = 0; i < MAX_SEARCH_DEPTH; i++ ) { | 424 | for ( int i = 0; i < MAX_SEARCH_DEPTH; i++ ) { |
424 | listDirs[i] = 0; | 425 | listDirs[i] = 0; |
425 | lists[i] = 0; | 426 | lists[i] = 0; |
426 | listPositions[i] = 0; | 427 | listPositions[i] = 0; |
427 | } | 428 | } |
428 | initialize(); | 429 | initialize(); |
429 | tid = 0; | 430 | tid = 0; |
430 | } | 431 | } |
431 | 432 | ||
432 | void DocumentListPrivate::appendDocpath(FileSystem*fs) | 433 | void DocumentListPrivate::appendDocpath(FileSystem*fs) |
433 | { | 434 | { |
434 | QDir defPath(fs->path()+"/Documents"); | 435 | QDir defPath(fs->path()+"/Documents"); |
435 | QFileInfo f(fs->path()+"/.opiestorage.cf"); | 436 | QFileInfo f(fs->path()+"/.opiestorage.cf"); |
436 | if (!f.exists()) { | 437 | if (!f.exists()) { |
437 | if (defPath.exists()) { | 438 | Mediadlg dlg(fs); |
438 | docPaths+=defPath.path(); | 439 | if (QDialog::Accepted != QPEApplication::execDialog( &dlg )) { |
440 | return; | ||
439 | } | 441 | } |
440 | return; | ||
441 | } | 442 | } |
442 | Config conf(f.filePath(), Config::File ); | 443 | Config conf(f.filePath(), Config::File ); |
443 | conf.setGroup("subdirs"); | 444 | conf.setGroup("subdirs"); |
444 | bool read_all = conf.readBoolEntry("wholemedia",true); | 445 | bool read_all = conf.readBoolEntry("wholemedia",true); |
445 | if (read_all) { | 446 | if (read_all) { |
446 | docPaths+=fs->path(); | 447 | docPaths+=fs->path(); |
447 | return; | 448 | return; |
448 | } | 449 | } |
449 | QStringList subDirs = conf.readListEntry("subdirs",':'); | 450 | QStringList subDirs = conf.readListEntry("subdirs",':'); |
450 | if (subDirs.isEmpty()) { | 451 | if (subDirs.isEmpty()) { |
451 | if (defPath.exists()) { | 452 | if (defPath.exists()) { |
452 | docPaths+=defPath.path(); | 453 | docPaths+=defPath.path(); |
453 | } | 454 | } |
454 | return; | 455 | return; |
455 | } | 456 | } |
456 | for (unsigned c = 0; c < subDirs.count();++c) { | 457 | for (unsigned c = 0; c < subDirs.count();++c) { |
diff --git a/core/launcher/mediadlg.cpp b/core/launcher/mediadlg.cpp new file mode 100644 index 0000000..6448863 --- a/dev/null +++ b/core/launcher/mediadlg.cpp | |||
@@ -0,0 +1,31 @@ | |||
1 | #include "mediadlg.h" | ||
2 | #include "mediumwidget.h" | ||
3 | #include <qtopia/storage.h> | ||
4 | #include <qpixmap.h> | ||
5 | #include <qlayout.h> | ||
6 | |||
7 | Mediadlg::Mediadlg(FileSystem*fs,QWidget *parent, const char *name, bool modal, WFlags fl) | ||
8 | : QDialog(parent,name,modal,fl) | ||
9 | { | ||
10 | m_fs = fs; | ||
11 | m_widget = 0; | ||
12 | init(); | ||
13 | } | ||
14 | |||
15 | Mediadlg::~Mediadlg() | ||
16 | { | ||
17 | } | ||
18 | |||
19 | void Mediadlg::init() | ||
20 | { | ||
21 | if (!m_fs) return; | ||
22 | m_lay = new QVBoxLayout( this ); | ||
23 | m_widget = new MediumMountSetting::MediumMountWidget(m_fs->path(),QPixmap(),this); | ||
24 | m_lay->addWidget(m_widget); | ||
25 | } | ||
26 | |||
27 | void Mediadlg::accept() | ||
28 | { | ||
29 | if (m_widget) m_widget->writeConfig(); | ||
30 | QDialog::accept(); | ||
31 | } | ||
diff --git a/core/launcher/mediadlg.h b/core/launcher/mediadlg.h new file mode 100644 index 0000000..f4d552d --- a/dev/null +++ b/core/launcher/mediadlg.h | |||
@@ -0,0 +1,29 @@ | |||
1 | #ifndef __MEDIA_DLG_H | ||
2 | #define __MEDIA_DLG_H | ||
3 | |||
4 | #include <qdialog.h> | ||
5 | |||
6 | namespace MediumMountSetting { | ||
7 | class MediumMountWidget; | ||
8 | } | ||
9 | class FileSystem; | ||
10 | class QVBoxLayout; | ||
11 | |||
12 | class Mediadlg:public QDialog | ||
13 | { | ||
14 | Q_OBJECT | ||
15 | public: | ||
16 | Mediadlg(FileSystem*,QWidget *parent = 0, const char *name = 0 , bool modal = TRUE, WFlags fl = 0); | ||
17 | virtual ~Mediadlg(); | ||
18 | protected slots: | ||
19 | virtual void accept(); | ||
20 | |||
21 | protected: | ||
22 | MediumMountSetting::MediumMountWidget*m_widget; | ||
23 | FileSystem*m_fs; | ||
24 | QVBoxLayout *m_lay; | ||
25 | void init(); | ||
26 | }; | ||
27 | |||
28 | #endif | ||
29 | |||
diff --git a/core/launcher/server.pro b/core/launcher/server.pro index f82c741..e341e1a 100644 --- a/core/launcher/server.pro +++ b/core/launcher/server.pro | |||
@@ -34,33 +34,35 @@ HEADERS += server.h \ | |||
34 | $$(OPIEDIR)/rsync/netint.h \ | 34 | $$(OPIEDIR)/rsync/netint.h \ |
35 | $$(OPIEDIR)/rsync/protocol.h \ | 35 | $$(OPIEDIR)/rsync/protocol.h \ |
36 | $$(OPIEDIR)/rsync/prototab.h \ | 36 | $$(OPIEDIR)/rsync/prototab.h \ |
37 | $$(OPIEDIR)/rsync/rsync.h \ | 37 | $$(OPIEDIR)/rsync/rsync.h \ |
38 | $$(OPIEDIR)/rsync/search.h \ | 38 | $$(OPIEDIR)/rsync/search.h \ |
39 | $$(OPIEDIR)/rsync/stream.h \ | 39 | $$(OPIEDIR)/rsync/stream.h \ |
40 | $$(OPIEDIR)/rsync/sumset.h \ | 40 | $$(OPIEDIR)/rsync/sumset.h \ |
41 | $$(OPIEDIR)/rsync/trace.h \ | 41 | $$(OPIEDIR)/rsync/trace.h \ |
42 | $$(OPIEDIR)/rsync/types.h \ | 42 | $$(OPIEDIR)/rsync/types.h \ |
43 | $$(OPIEDIR)/rsync/util.h \ | 43 | $$(OPIEDIR)/rsync/util.h \ |
44 | $$(OPIEDIR)/rsync/whole.h \ | 44 | $$(OPIEDIR)/rsync/whole.h \ |
45 | $$(OPIEDIR)/rsync/config_rsync.h \ | 45 | $$(OPIEDIR)/rsync/config_rsync.h \ |
46 | $$(OPIEDIR)/rsync/qrsync.h \ | 46 | $$(OPIEDIR)/rsync/qrsync.h \ |
47 | syncdialog.h \ | 47 | syncdialog.h \ |
48 | serverapp.h \ | 48 | serverapp.h \ |
49 | qprocess.h \ | 49 | qprocess.h \ |
50 | screensaver.h | 50 | screensaver.h \ |
51 | $$(OPIEDIR)/noncore/settings/mediummount/mediumwidget.h \ | ||
52 | mediadlg.h | ||
51 | 53 | ||
52 | SOURCES += server.cpp \ | 54 | SOURCES += server.cpp \ |
53 | serverinterface.cpp \ | 55 | serverinterface.cpp \ |
54 | launchertab.cpp \ | 56 | launchertab.cpp \ |
55 | documentlist.cpp \ | 57 | documentlist.cpp \ |
56 | appicons.cpp \ | 58 | appicons.cpp \ |
57 | taskbar.cpp \ | 59 | taskbar.cpp \ |
58 | runningappbar.cpp \ | 60 | runningappbar.cpp \ |
59 | applauncher.cpp \ | 61 | applauncher.cpp \ |
60 | stabmon.cpp \ | 62 | stabmon.cpp \ |
61 | inputmethods.cpp \ | 63 | inputmethods.cpp \ |
62 | systray.cpp \ | 64 | systray.cpp \ |
63 | wait.cpp \ | 65 | wait.cpp \ |
64 | shutdownimpl.cpp \ | 66 | shutdownimpl.cpp \ |
65 | launcher.cpp \ | 67 | launcher.cpp \ |
66 | launcherview.cpp \ | 68 | launcherview.cpp \ |
@@ -89,36 +91,42 @@ SOURCES += server.cpp \ | |||
89 | $$(OPIEDIR)/rsync/readsums.c \ | 91 | $$(OPIEDIR)/rsync/readsums.c \ |
90 | $$(OPIEDIR)/rsync/scoop.c \ | 92 | $$(OPIEDIR)/rsync/scoop.c \ |
91 | $$(OPIEDIR)/rsync/search.c \ | 93 | $$(OPIEDIR)/rsync/search.c \ |
92 | $$(OPIEDIR)/rsync/stats.c \ | 94 | $$(OPIEDIR)/rsync/stats.c \ |
93 | $$(OPIEDIR)/rsync/stream.c \ | 95 | $$(OPIEDIR)/rsync/stream.c \ |
94 | $$(OPIEDIR)/rsync/sumset.c \ | 96 | $$(OPIEDIR)/rsync/sumset.c \ |
95 | $$(OPIEDIR)/rsync/trace.c \ | 97 | $$(OPIEDIR)/rsync/trace.c \ |
96 | $$(OPIEDIR)/rsync/tube.c \ | 98 | $$(OPIEDIR)/rsync/tube.c \ |
97 | $$(OPIEDIR)/rsync/util.c \ | 99 | $$(OPIEDIR)/rsync/util.c \ |
98 | $$(OPIEDIR)/rsync/version.c \ | 100 | $$(OPIEDIR)/rsync/version.c \ |
99 | $$(OPIEDIR)/rsync/whole.c \ | 101 | $$(OPIEDIR)/rsync/whole.c \ |
100 | $$(OPIEDIR)/rsync/qrsync.cpp \ | 102 | $$(OPIEDIR)/rsync/qrsync.cpp \ |
101 | syncdialog.cpp \ | 103 | syncdialog.cpp \ |
102 | serverapp.cpp \ | 104 | serverapp.cpp \ |
103 | qprocess.cpp \ | 105 | qprocess.cpp \ |
104 | qprocess_unix.cpp \ | 106 | qprocess_unix.cpp \ |
105 | screensaver.cpp | 107 | screensaver.cpp \ |
108 | $$(OPIEDIR)/noncore/settings/mediummount/mediumwidget.cc \ | ||
109 | mediadlg.cpp | ||
106 | 110 | ||
107 | 111 | ||
108 | INCLUDEPATH += $(OPIEDIR)/core/apps/calibrate | 112 | INCLUDEPATH += $(OPIEDIR)/core/apps/calibrate |
109 | DEPENDPATH+= $(OPIEDIR)/core/apps/calibrate | 113 | DEPENDPATH+= $(OPIEDIR)/core/apps/calibrate |
110 | 114 | ||
111 | INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/rsync | 115 | INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/rsync |
112 | DEPENDPATH+= $(OPIEDIR)/rsync | 116 | DEPENDPATH+= $(OPIEDIR)/rsync |
113 | 117 | ||
118 | INCLUDEPATH += $(OPIEDIR)/noncore/settings/mediummount | ||
119 | DEPENDPATH+= $(OPIEDIR)/noncore/settings/mediummount | ||
120 | |||
121 | |||
114 | TARGET = qpe | 122 | TARGET = qpe |
115 | 123 | ||
116 | #needs OWait and ODevice | 124 | #needs OWait and ODevice |
117 | CONFTEST = $$system( echo $CONFIG_TARGET_MACOSX ) | 125 | CONFTEST = $$system( echo $CONFIG_TARGET_MACOSX ) |
118 | contains( CONFTEST, y ){ | 126 | contains( CONFTEST, y ){ |
119 | LIBS += -lqpe -lopiecore2 -lopieui2 | 127 | LIBS += -lqpe -lopiecore2 -lopieui2 |
120 | }else{ | 128 | }else{ |
121 | LIBS+= -lcrypt -lqpe -lopiecore2 -lopieui2 | 129 | LIBS+= -lcrypt -lqpe -lopiecore2 -lopieui2 |
122 | } | 130 | } |
123 | 131 | ||
124 | include ( $(OPIEDIR)/include.pro ) | 132 | include ( $(OPIEDIR)/include.pro ) |