author | llornkcor <llornkcor> | 2002-10-10 00:31:19 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-10-10 00:31:19 (UTC) |
commit | 41aaa97e19b29f96fced9013a707cc6d16bc2143 (patch) (side-by-side diff) | |
tree | 13eaa232ff64d5da79594ae5dea3bc3455f88f09 | |
parent | 91e597f6607a1db7251c217154ab56ea94fb0bca (diff) | |
download | opie-41aaa97e19b29f96fced9013a707cc6d16bc2143.zip opie-41aaa97e19b29f96fced9013a707cc6d16bc2143.tar.gz opie-41aaa97e19b29f96fced9013a707cc6d16bc2143.tar.bz2 |
menu
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 5 | ||||
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.h | 1 | ||||
-rw-r--r-- | noncore/apps/advancedfm/advancedfmData.cpp | 6 | ||||
-rw-r--r-- | noncore/apps/advancedfm/advancedfmMenu.cpp | 10 |
4 files changed, 15 insertions, 7 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index 7fba0af..d7bad51 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp @@ -7,13 +7,12 @@ * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #define DEVELOPERS_VERSION - #include "advancedfm.h" // #include <opie/ofileselector.h> // #include <opie/ofiledialog.h> #include <qpe/filemanager.h> @@ -392,25 +391,25 @@ void AdvancedFm::remoteListClicked(QListViewItem *selectedItem) { void AdvancedFm::localListPressed( int mouse, QListViewItem *, const QPoint& , int ) { // qDebug("list pressed"); switch (mouse) { case 1: break; case 2: - menuTimer.start( 750, TRUE ); + menuTimer.start( 500, TRUE ); qDebug("Start menu timer\n"); break; }; } void AdvancedFm::remoteListPressed( int mouse, QListViewItem*, const QPoint&, int ) { switch (mouse) { case 1: break; case 2: - menuTimer.start( 750, TRUE ); + menuTimer.start( 500, TRUE ); qDebug("Start menu timer"); break; }; } diff --git a/noncore/apps/advancedfm/advancedfm.h b/noncore/apps/advancedfm/advancedfm.h index 12ad474..f846c66 100644 --- a/noncore/apps/advancedfm/advancedfm.h +++ b/noncore/apps/advancedfm/advancedfm.h @@ -9,12 +9,13 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #ifndef ADVANCEDFM_H #define ADVANCEDFM_H #define QTOPIA_INTERNAL_FSLP // to get access to fileproperties +#define QT_QWS_OPIE #include <qpe/ir.h> #include <qvariant.h> #include <qdialog.h> #include <qmainwindow.h> diff --git a/noncore/apps/advancedfm/advancedfmData.cpp b/noncore/apps/advancedfm/advancedfmData.cpp index 4c24e83..619a7a9 100644 --- a/noncore/apps/advancedfm/advancedfmData.cpp +++ b/noncore/apps/advancedfm/advancedfmData.cpp @@ -27,14 +27,16 @@ #include <qlistview.h> #include <sys/utsname.h> void AdvancedFm::init() { - - setCaption( tr( "AdvancedFm" ) ); +#if defined(QT_QWS_OPIE) + qDebug("<<<<<<<<<<<<<<<<<<<<<<<< OPIE!!!"); +#endif + setCaption( tr( "AdvancedFm" ) ); QGridLayout *layout = new QGridLayout( this ); layout->setSpacing( 2); layout->setMargin( 2); diff --git a/noncore/apps/advancedfm/advancedfmMenu.cpp b/noncore/apps/advancedfm/advancedfmMenu.cpp index 7ee5065..6d37904 100644 --- a/noncore/apps/advancedfm/advancedfmMenu.cpp +++ b/noncore/apps/advancedfm/advancedfmMenu.cpp @@ -340,27 +340,33 @@ void AdvancedFm::filePerms() { } else { populateRemoteView(); } } void AdvancedFm::doProperties() { +#if defined(QT_QWS_OPIE) + QStringList curFileList = getPath(); + QString filePath; if (TabWidget->currentPageIndex() == 0) { filePath = currentDir.canonicalPath()+"/"; } else { filePath= currentRemoteDir.canonicalPath()+"/"; } - // qDebug("%d",curFileList.count()); - for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { + qDebug("%d",curFileList.count()); + + for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { qDebug((filePath+*it)); DocLnk lnk( (filePath+*it)); LnkProperties prop( &lnk ); prop.showMaximized(); prop.exec(); } +#endif + } void AdvancedFm::upDir() { if (TabWidget->currentPageIndex() == 0) { QString current = currentDir.canonicalPath(); QDir dir(current); |