-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 52 | ||||
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.h | 3 |
2 files changed, 12 insertions, 43 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index 02898de..fec320d 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp @@ -44,18 +44,9 @@ AdvancedFm::AdvancedFm(QWidget *,const char*, WFlags ) unknownXpm = Resource::loadImage("UnknownDocument").smoothScale(AppLnk::smallIconSize(),AppLnk::smallIconSize() ); initConnections(); - - whichTab = 1; populateView(); -// rePopulate(); -// currentPathCombo->setFocus(); channel = new QCopChannel( "QPE/Application/advancedfm", this ); connect(channel,SIGNAL(received(const QCString&,const QByteArray&)),this,SLOT(qcopReceive(const QCString&,const QByteArray&))); - -// if( CurrentView() == Local_View) -// qDebug("LOCAL VIEW"); -// else -// qDebug("REMOTE VIEW"); switchToLocalTab(); } @@ -290,28 +281,17 @@ void AdvancedFm::refreshCurrentTab() { } void AdvancedFm::switchToLocalTab() { - qDebug("switchToLocal "); TabWidget->setCurrentWidget(0); Local_View->setFocus(); whichTab = 1; - } void AdvancedFm::switchToRemoteTab() { - qDebug("switchToRemoteTab() "); TabWidget->setCurrentWidget(1); Remote_View->setFocus(); whichTab = 2; } -void AdvancedFm::readConfig() { - Config cfg("AdvancedFm"); -} - -void AdvancedFm::writeConfig() { - Config cfg("AdvancedFm"); -} - void AdvancedFm::currentPathComboChanged() { if(QDir( currentPathCombo->lineEdit()->text()).exists()) { CurrentDir()->setPath( currentPathCombo->lineEdit()->text() ); @@ -362,40 +342,30 @@ QStringList AdvancedFm::getPath() { return strList; } -void AdvancedFm::homeButtonPushed() { - QString current = QDir::homeDirPath(); - chdir( current.latin1() ); - CurrentDir()->cd( current, TRUE); +void AdvancedFm::changeTo(QString dir) { + chdir( dir.latin1()); + CurrentDir()->cd(dir, TRUE); populateView(); update(); } +void AdvancedFm::homeButtonPushed() { + changeTo(QDir::homeDirPath()); +} + void AdvancedFm::docButtonPushed() { - QString current = QPEApplication::documentDir(); - chdir( current.latin1() ); - CurrentDir()->cd( current, TRUE); - populateView(); - update(); + changeTo(QPEApplication::documentDir()); } void AdvancedFm::SDButtonPushed() { - QString current = "/mnt/card";// this can change so fix - chdir( current.latin1() ); - CurrentDir()->cd( current, TRUE); - populateView(); - update(); + changeTo("/mnt/card");// this can change so fix } void AdvancedFm::CFButtonPushed() { - QString current; if(zaurusDevice) - current= "/mnt/cf"; //zaurus + changeTo("/mnt/cf"); //zaurus else - current = "/mnt/hda"; //ipaq - chdir( current.latin1() ); - CurrentDir()->cd( current, TRUE); - populateView(); - update(); + changeTo("/mnt/hda"); //ipaq } diff --git a/noncore/apps/advancedfm/advancedfm.h b/noncore/apps/advancedfm/advancedfm.h index 2234b3c..c52b853 100644 --- a/noncore/apps/advancedfm/advancedfm.h +++ b/noncore/apps/advancedfm/advancedfm.h @@ -97,6 +97,7 @@ protected: QListView *CurrentView(); QListView *OtherView(); void setOtherTabCurrent(); + void changeTo(QString & dir); //protected signals: // void newPath(QString); @@ -113,8 +114,6 @@ protected slots: void rePopulate(); void showHidden(); void showMenuHidden(); - void writeConfig(); - void readConfig(); void ListClicked(QListViewItem *); void ListPressed( int, QListViewItem *, const QPoint&, int); void makeDir(); |