summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfm.cpp209
-rw-r--r--noncore/apps/advancedfm/advancedfm.h42
-rw-r--r--noncore/apps/advancedfm/advancedfmData.cpp56
3 files changed, 264 insertions, 43 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp
index 9edf7c1..d8bdff7 100644
--- a/noncore/apps/advancedfm/advancedfm.cpp
+++ b/noncore/apps/advancedfm/advancedfm.cpp
@@ -16,6 +16,7 @@
// #include <opie/ofileselector.h>
// #include <opie/ofiledialog.h>
+#include <qpe/config.h>
#include <qpe/filemanager.h>
#include <qpe/qcopenvelope_qws.h>
#include <qpe/qpemenubar.h>
@@ -27,7 +28,10 @@
#include <qpe/applnk.h>
#include <qpe/ir.h>
#include <qpe/resource.h>
+#include <qpe/menubutton.h>
+
+#include <qregexp.h>
#include <qtabwidget.h>
#include <qtextstream.h>
#include <qpushbutton.h>
@@ -90,7 +94,7 @@ void AdvancedFm::cleanUp() {
}
void AdvancedFm::tabChanged(QWidget *w) {
- qDebug("tab changed %d",TabWidget->getCurrentTab());
+// qDebug("tab changed %d",TabWidget->getCurrentTab());
if ( w == tab) {
// if (TabWidget->getCurrentTab() == 0) {
@@ -194,7 +198,7 @@ void AdvancedFm::populateLocalView() {
if((dir = opendir( currentDir.canonicalPath().latin1())) != NULL)
while ((mydirent = readdir(dir)) != NULL) {
lstat( mydirent->d_name, &buf);
- qDebug(mydirent->d_name);
+// qDebug(mydirent->d_name);
fileL.sprintf("%s", mydirent->d_name);
devT = buf.st_dev;
fileS.sprintf("%d, %d", (int) ( devT >>8) &0xFF, (int)devT &0xFF);
@@ -293,7 +297,7 @@ void AdvancedFm::populateRemoteView() {
if((dir = opendir( currentRemoteDir.canonicalPath().latin1())) != NULL)
while ((mydirent = readdir(dir)) != NULL) {
lstat( mydirent->d_name, &buf);
- qDebug(mydirent->d_name);
+// qDebug(mydirent->d_name);
fileL.sprintf("%s", mydirent->d_name);
fileS.sprintf("%d,%d", (int) (buf.st_dev>>8)&0xFF, (int) buf.st_dev &0xFF);
fileDate.sprintf("%s", ctime( &buf.st_mtime));
@@ -407,7 +411,7 @@ void AdvancedFm::localListPressed( int mouse, QListViewItem *, const QPoint& , i
{
if(renameBox != 0 )
{
- qDebug("cancel rename");
+// qDebug("cancel rename");
cancelRename();
}
@@ -415,7 +419,7 @@ void AdvancedFm::localListPressed( int mouse, QListViewItem *, const QPoint& , i
break;
case 2:
menuTimer.start( 500, TRUE );
- qDebug("Start menu timer\n");
+// qDebug("Start menu timer\n");
break;
};
}
@@ -427,14 +431,14 @@ void AdvancedFm::remoteListPressed( int mouse, QListViewItem*, const QPoint&, in
{
if(renameBox != 0 )
{
- qDebug("cancel rename");
+// qDebug("cancel rename");
cancelRename();
}
}
break;
case 2:
menuTimer.start( 500, TRUE );
- qDebug("Start menu timer");
+// qDebug("Start menu timer");
break;
};
}
@@ -480,7 +484,7 @@ void AdvancedFm::currentPathComboChanged() {
}
void AdvancedFm::fillCombo(const QString &currentPath) {
- qDebug("%d",TabWidget->getCurrentTab());
+// qDebug("%d",TabWidget->getCurrentTab());
if (TabWidget->getCurrentTab() == 0) {
// if (TabWidget->currentPageIndex() == 0) {
currentPathCombo->lineEdit()->setText( currentPath);
@@ -523,7 +527,7 @@ QStringList AdvancedFm::getPath() {
for ( ; it.current(); ++it ) {
if ( it.current()->isSelected() ) {
strList << it.current()->text(0);
- qDebug(it.current()->text(0));
+// qDebug(it.current()->text(0));
}
}
return strList;
@@ -533,7 +537,7 @@ QStringList AdvancedFm::getPath() {
for ( ; it.current(); ++it ) {
if ( it.current()->isSelected() ) {
strList << it.current()->text(0);
- qDebug(it.current()->text(0));
+// qDebug(it.current()->text(0));
}
}
return strList;
@@ -875,7 +879,7 @@ void AdvancedFm::addToDocs() {
// if (TabWidget->currentPageIndex() == 0) {
for ( QStringList::Iterator it = strListPaths.begin(); it != strListPaths.end(); ++it ) {
curFile = currentDir.canonicalPath()+"/"+(*it);
- qDebug(curFile);
+// qDebug(curFile);
DocLnk f;
// curFile.replace(QRegExp("\\..*"),"");
f.setName((*it));
@@ -885,7 +889,7 @@ void AdvancedFm::addToDocs() {
} else {
for ( QStringList::Iterator it = strListPaths.begin(); it != strListPaths.end(); ++it ) {
curFile = currentRemoteDir.canonicalPath()+"/"+(*it);
- qDebug(curFile);
+// qDebug(curFile);
DocLnk f;
// curFile.replace(QRegExp("\\..*"),"");
@@ -897,3 +901,184 @@ void AdvancedFm::addToDocs() {
}
}
+
+void AdvancedFm::customDirsToMenu()
+{
+
+ Config cfg("AdvancedFm");
+ cfg.setGroup("Menu");
+
+ QStringList list = cfg.readListEntry( "CustomDir", ',');
+ menuButton->insertItems(list );
+
+// for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it )
+// {
+// customDirMenu->insertItem(*it );
+// }
+}
+
+void AdvancedFm::dirMenuSelected(int item)
+{
+ qDebug("menu item %d", item);
+ switch(item)
+ {
+
+ case -21:
+ case 0:
+ addCustomDir();
+ break;
+ case -22:
+ case 1:
+ removeCustomDir();
+ break;
+ default:
+ {
+// gotoCustomDir( menuButton->text(item));
+// gotoCustomDir( customDirMenu->text(item));
+ }
+ break;
+
+ };
+}
+
+void AdvancedFm::addCustomDir()
+{
+ Config cfg("AdvancedFm");
+ cfg.setGroup("Menu");
+ QString dir;
+ QStringList list = cfg.readListEntry( (const QString &)"CustomDir", (const QChar)',');
+
+ if (TabWidget->getCurrentTab() == 0)
+ {
+ dir = currentDir.canonicalPath();
+ }
+ else
+ {
+ dir = currentRemoteDir.canonicalPath();
+ }
+
+ bool addIt=true;
+ for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it )
+ {
+ if( dir == (*it))
+ {
+ addIt=false;
+ }
+ }
+ if(addIt)
+ {
+ menuButton->insertItem(dir);
+// customDirMenu->insertItem(dir);
+ list << dir;
+ }
+
+ cfg.writeEntry("CustomDir", list, ',');
+ cfg.write();
+}
+
+void AdvancedFm::removeCustomDir()
+{
+// qDebug("remove custom dir");
+ Config cfg("AdvancedFm");
+ cfg.setGroup("Menu");
+ QString dir;
+ QStringList list = cfg.readListEntry( (const QString &)"CustomDir", (const QChar)',');
+ QStringList list2;
+
+ if (TabWidget->getCurrentTab() == 0)
+ {
+ dir = currentDir.canonicalPath();
+ }
+ else
+ {
+ dir = currentRemoteDir.canonicalPath();
+ }
+ int ramble=2;
+// int ramble=-24;
+//first remove list
+ if(list.grep(dir,true).isEmpty())
+ {
+ QMessageBox::message("AdvancedFm",tr("Cannot remove current directory\nfrom bookmarks.\nIt is not bookmarked!!"));
+ }
+ else
+ {
+ for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it )
+ {
+ if((*it) != dir)//current item is not our current dir, so add it to temp list
+ {
+ list2 <<(*it);
+ }
+ else
+ {
+// customDirMenu->removeItem( ramble);
+ menuButton->remove( ramble);
+
+ }
+ ramble++;
+// ramble--;
+ }
+
+ cfg.writeEntry("CustomDir", list2, ',');
+ cfg.write();
+ }
+// customDirsToMenu();
+
+}
+
+void AdvancedFm::gotoCustomDir(const QString &dir)
+{
+// qDebug("gotoCustomDir(const QString &dir) " +dir );
+ QString curDir = dir;
+// if( curDir.isEmpty()) {
+// }
+ if( curDir == s_addBookmark)
+ {
+ addCustomDir();
+ }
+ if( curDir == s_removeBookmark)
+ {
+ removeCustomDir( );
+ }
+ else
+ {
+ if(QDir( curDir).exists() )
+ {
+ if (TabWidget->getCurrentTab() == 0)
+ {
+ currentDir.setPath( curDir );
+ chdir( curDir.latin1() );
+ currentDir.cd( curDir, TRUE);
+ populateLocalView();
+ }
+ else
+ {
+ currentRemoteDir.setPath( curDir );
+ chdir( curDir.latin1() );
+ currentRemoteDir.cd( curDir, TRUE);
+ populateRemoteView();
+ }
+ }
+ }
+// menuButton
+// qDebug("gotoCustomDir(const QString &dir) " +dir );
+// QString curDir = dir;
+// if(QDir( curDir).exists() )
+// {
+// if (TabWidget->getCurrentTab() == 0)
+// {
+// currentDir.setPath( curDir );
+// chdir( curDir.latin1() );
+// currentDir.cd( curDir, TRUE);
+// populateLocalView();
+// }
+// else
+// {
+// currentRemoteDir.setPath( curDir );
+// chdir( curDir.latin1() );
+// currentRemoteDir.cd( curDir, TRUE);
+// populateRemoteView();
+// }
+// }
+// menuButton->setLabel(" ");
+// menuButton
+}
diff --git a/noncore/apps/advancedfm/advancedfm.h b/noncore/apps/advancedfm/advancedfm.h
index 42775ee..7478dcb 100644
--- a/noncore/apps/advancedfm/advancedfm.h
+++ b/noncore/apps/advancedfm/advancedfm.h
@@ -44,6 +44,7 @@ class QPopupMenu;
class QFile;
class QListViewItem;
class QLineEdit;
+class MenuButton;
//class QPushButton;
class QToolButton;
@@ -55,23 +56,6 @@ class AdvancedFm : public QMainWindow
public:
AdvancedFm();
~AdvancedFm();
-
- OTabWidget *TabWidget;
-// QTabWidget *TabWidget;
- QWidget *tab, *tab_2, *tab_3;
- QListView *Local_View, *Remote_View;
-
- QLineEdit *currentPathEdit;
- QPopupMenu *fileMenu, *localMenu, *remoteMenu, *viewMenu;
- QToolButton *homeButton, *docButton, *cdUpButton, *sdButton, *cfButton, *qpeDirButton;
-// QPushButton *homeButton, *docButton, *cdUpButton, *sdButton, *cfButton, *qpeDirButton;
- QDir currentDir, currentRemoteDir;
- QComboBox *currentPathCombo;
- QString filterStr;
- QListViewItem * item;
- bool b;
- QStringList fileSystemTypeList, fsList;
- int currentServerConfig;
protected slots:
void selectAll();
void addToDocs();
@@ -114,6 +98,23 @@ protected slots:
void switchToRemoteTab();
protected:
+
+ OTabWidget *TabWidget;
+// QTabWidget *TabWidget;
+ QWidget *tab, *tab_2, *tab_3;
+ QListView *Local_View, *Remote_View;
+
+ QLineEdit *currentPathEdit;
+ QPopupMenu *fileMenu, *localMenu, *remoteMenu, *viewMenu /*, *customDirMenu*/;
+ QToolButton *homeButton, *docButton, *cdUpButton, *sdButton, *cfButton, *qpeDirButton;
+// QPushButton *homeButton, *docButton, *cdUpButton, *sdButton, *cfButton, *qpeDirButton;
+ QDir currentDir, currentRemoteDir;
+ QComboBox *currentPathCombo;
+ QString filterStr, s_addBookmark, s_removeBookmark;
+ QListViewItem * item;
+ bool b;
+ QStringList fileSystemTypeList, fsList;
+ int currentServerConfig;
bool zaurusDevice;
QGridLayout *tabLayout, *tabLayout_2, *tabLayout_3;
QStringList remoteDirPathStringList, localDirPathStringList;
@@ -129,6 +130,7 @@ protected:
QString dealWithSymName(const QString &);
protected slots:
+ void dirMenuSelected(int);
void showFileMenu();
void cancelMenuTimer();
void homeButtonPushed();
@@ -151,6 +153,7 @@ protected slots:
void fileBeamFinished( Ir *);
private:
+ MenuButton *menuButton;
QString oldName;
QTimer menuTimer;
void startProcess(const QString &);
@@ -158,8 +161,13 @@ private:
void cancelRename();
void doRename(QListView *);
void okRename();
+ void customDirsToMenu();
+ void addCustomDir();
+ void removeCustomDir();
+
private slots:
void processEnded();
+ void gotoCustomDir(const QString &);
};
#endif // ADVANCEDFM_H
diff --git a/noncore/apps/advancedfm/advancedfmData.cpp b/noncore/apps/advancedfm/advancedfmData.cpp
index 0966f02..bb80dc6 100644
--- a/noncore/apps/advancedfm/advancedfmData.cpp
+++ b/noncore/apps/advancedfm/advancedfmData.cpp
@@ -16,6 +16,8 @@
#include <qpe/qpemenubar.h>
#include <qpe/qpetoolbar.h>
#include <qpe/resource.h>
+#include <qpe/menubutton.h>
+#include <qpe/config.h>
#include <qlayout.h>
#include <qpixmap.h>
@@ -43,41 +45,48 @@ void AdvancedFm::init() {
QPEMenuBar *menuBar = new QPEMenuBar(this);
fileMenu = new QPopupMenu( this );
viewMenu = new QPopupMenu( this );
+// customDirMenu = new QPopupMenu( this );
layout->addMultiCellWidget( menuBar, 0, 0, 0, 1 );
menuBar->insertItem( tr( "File" ), fileMenu);
menuBar->insertItem( tr( "View" ), viewMenu);
+// menuBar->insertItem( tr( "^" ), customDirMenu);
+
+ cdUpButton = new QToolButton( this,"cdUpButton");
+ cdUpButton->setPixmap(Resource::loadPixmap("up"));
+ cdUpButton->setFixedSize( QSize( 20, 20 ) );
+ layout->addMultiCellWidget( cdUpButton , 0, 0, 2, 2);
+
+ menuButton = new MenuButton(this);
+ menuButton->setFixedSize( QSize( 20, 20 ) );
+ layout->addMultiCellWidget( menuButton , 0, 0, 3, 3);
qpeDirButton= new QToolButton(this,"QPEButton");
qpeDirButton->setPixmap( Resource::loadPixmap("launcher/opielogo16x16"));//,"",this,"QPEButton");
qpeDirButton ->setFixedSize( QSize( 20, 20 ) );
- layout->addMultiCellWidget( qpeDirButton , 0, 0, 2, 2);
+ layout->addMultiCellWidget( qpeDirButton , 0, 0, 4, 4);
cfButton = new QToolButton( this,"CFButton");
cfButton->setPixmap(Resource::loadPixmap("cardmon/pcmcia"));
cfButton ->setFixedSize( QSize( 20, 20 ) );
- layout->addMultiCellWidget( cfButton , 0, 0, 3, 3);
+ layout->addMultiCellWidget( cfButton , 0, 0, 5, 5);
sdButton = new QToolButton( this,"SDButton");
sdButton->setPixmap(Resource::loadPixmap("advancedfm/sdcard"));
sdButton->setFixedSize( QSize( 20, 20 ) );
- layout->addMultiCellWidget( sdButton , 0, 0, 4, 4);
+ layout->addMultiCellWidget( sdButton , 0, 0, 6, 6);
- cdUpButton = new QToolButton( this,"cdUpButton");
- cdUpButton->setPixmap(Resource::loadPixmap("up"));
- cdUpButton ->setFixedSize( QSize( 20, 20 ) );
- layout->addMultiCellWidget( cdUpButton , 0, 0, 5, 5);
docButton = new QToolButton( this,"docsButton");
docButton->setPixmap(Resource::loadPixmap("DocsIcon"));
docButton->setFixedSize( QSize( 20, 20 ) );
- layout->addMultiCellWidget( docButton, 0, 0, 6, 6);
+ layout->addMultiCellWidget( docButton, 0, 0, 7, 7);
homeButton = new QToolButton( this,"homeButton");
homeButton->setPixmap(Resource::loadPixmap("home"));
homeButton->setFixedSize( QSize( 20, 20 ) );
- layout->addMultiCellWidget( homeButton, 0, 0, 7, 7);
+ layout->addMultiCellWidget( homeButton, 0, 0, 8, 8);
fileMenu->insertItem( tr( "Show Hidden Files" ), this, SLOT( showMenuHidden() ));
fileMenu->setItemChecked( fileMenu->idAt(0),TRUE);
@@ -99,20 +108,34 @@ void AdvancedFm::init() {
viewMenu->insertItem( tr( "About" ), this, SLOT( doAbout() ));
viewMenu->setCheckable(TRUE);
+ s_addBookmark = tr("Bookmark Directory");
+ s_removeBookmark = tr("Remove Current Directory from Bookmarks");
+
+ menuButton->setUseLabel(false);
+ menuButton->insertItem( s_addBookmark);
+ menuButton->insertItem( s_removeBookmark);
+ menuButton->insertSeparator();
+// menuButton->insertItem("");
+
+// customDirMenu->insertItem(tr("Add This Directory"));
+// customDirMenu->insertItem(tr("Remove This Directory"));
+// customDirMenu->insertSeparator();
+
+ customDirsToMenu();
currentPathCombo = new QComboBox( FALSE, this, "currentPathCombo" );
currentPathCombo->setEditable(TRUE);
- layout->addMultiCellWidget( currentPathCombo, 1, 1, 0, 7);
+ layout->addMultiCellWidget( currentPathCombo, 1, 1, 0, 8);
currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
- layout->addMultiCellWidget( currentPathCombo, 1, 1, 0, 7);
+ layout->addMultiCellWidget( currentPathCombo, 1, 1, 0, 8);
TabWidget = new OTabWidget( this, "TabWidget",/* OTabWidget::Global | */OTabWidget::IconTab);
// TabWidget = new QTabWidget( this, "TabWidget" );
- layout->addMultiCellWidget( TabWidget, 2, 2, 0, 7);
+ layout->addMultiCellWidget( TabWidget, 2, 2, 0, 8);
tab = new QWidget( TabWidget, "tab" );
tabLayout = new QGridLayout( tab );
@@ -214,7 +237,7 @@ void AdvancedFm::initConnections() {
connect( sdButton ,SIGNAL(released()),this,SLOT( SDButtonPushed()) );
connect( cdUpButton ,SIGNAL(released()),this,SLOT( upDir()) );
connect( docButton,SIGNAL(released()),this,SLOT( docButtonPushed()) );
- connect(homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) );
+ connect( homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) );
connect( currentPathCombo, SIGNAL( activated( const QString & ) ),
this, SLOT( currentPathComboActivated( const QString & ) ) );
@@ -233,9 +256,14 @@ void AdvancedFm::initConnections() {
connect( Remote_View, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
this,SLOT( remoteListPressed(int, QListViewItem *, const QPoint&, int)) );
- connect(TabWidget,SIGNAL(currentChanged(QWidget *)),
+ connect( TabWidget,SIGNAL(currentChanged(QWidget *)),
this,SLOT(tabChanged(QWidget*)));
connect( &menuTimer, SIGNAL( timeout() ), SLOT( showFileMenu() ) );
+ connect( menuButton, SIGNAL( selected(const QString &)), SLOT(gotoCustomDir(const QString&)));
+// connect( menuButton, SIGNAL( selected( int)), SLOT( dirMenuSelected(int)));
+
+// connect( customDirMenu, SIGNAL( activated(int)), this, SLOT( dirMenuSelected(int)));
+
}