author | llornkcor <llornkcor> | 2004-09-25 04:28:01 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-09-25 04:28:01 (UTC) |
commit | 037acb8741eabb71693104f7807ffd848ac4d1f9 (patch) (side-by-side diff) | |
tree | 8031f887a8bbd7dffa4d5dfdc29baa710b454638 | |
parent | 40e681bf20db4f1e02212ae6e42a349ee000cf14 (diff) | |
download | opie-037acb8741eabb71693104f7807ffd848ac4d1f9.zip opie-037acb8741eabb71693104f7807ffd848ac4d1f9.tar.gz opie-037acb8741eabb71693104f7807ffd848ac4d1f9.tar.bz2 |
move redundant code into one function
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 66 | ||||
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.h | 3 |
2 files changed, 19 insertions, 50 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 @@ -46,14 +46,5 @@ AdvancedFm::AdvancedFm(QWidget *,const char*, WFlags ) initConnections(); - - whichTab = 1; - populateView(); -// rePopulate(); -// currentPathCombo->setFocus(); + populateView(); 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(); @@ -292,7 +283,5 @@ void AdvancedFm::refreshCurrentTab() { void AdvancedFm::switchToLocalTab() { - qDebug("switchToLocal "); - TabWidget->setCurrentWidget(0); - Local_View->setFocus(); - whichTab = 1; - + TabWidget->setCurrentWidget(0); + Local_View->setFocus(); + whichTab = 1; } @@ -300,14 +289,5 @@ void AdvancedFm::switchToLocalTab() { 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"); + TabWidget->setCurrentWidget(1); + Remote_View->setFocus(); + whichTab = 2; } @@ -364,6 +344,5 @@ QStringList AdvancedFm::getPath() { -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(); @@ -372,8 +351,8 @@ void AdvancedFm::homeButtonPushed() { +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()); } @@ -381,7 +360,3 @@ void AdvancedFm::docButtonPushed() { 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 } @@ -389,11 +364,6 @@ void AdvancedFm::SDButtonPushed() { 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 @@ -99,2 +99,3 @@ protected: void setOtherTabCurrent(); + void changeTo(QString & dir); @@ -115,4 +116,2 @@ protected slots: void showMenuHidden(); - void writeConfig(); - void readConfig(); void ListClicked(QListViewItem *); |