author | zecke <zecke> | 2002-04-01 01:48:02 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-04-01 01:48:02 (UTC) |
commit | 9a68bd2411e65eb6c51aead50a5b0b670174458d (patch) (side-by-side diff) | |
tree | 05ab085d430edc2e821ea890da600774abc30f01 /libopie/ofileselector.cc | |
parent | 84850cd8811fc29aa39ecd2452884bf48ea27e92 (diff) | |
download | opie-9a68bd2411e65eb6c51aead50a5b0b670174458d.zip opie-9a68bd2411e65eb6c51aead50a5b0b670174458d.tar.gz opie-9a68bd2411e65eb6c51aead50a5b0b670174458d.tar.bz2 |
Almost done ||
-rw-r--r-- | libopie/ofileselector.cc | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/libopie/ofileselector.cc b/libopie/ofileselector.cc index 14f035e..fbe69ed 100644 --- a/libopie/ofileselector.cc +++ b/libopie/ofileselector.cc @@ -748,4 +748,7 @@ void OFileSelector::initializeListView() m_location->insertItem(path+ "<-"+disk ); } + int count = m_location->count(); + m_location->insertItem(m_currentDir ); + m_location->setCurrentItem( count ); }; m_View = new QListView(m_pseudo, "Extended view" ); @@ -1003,4 +1006,9 @@ bool OFileSelector::cd(const QString &str ) m_currentDir = str; reparse(); + if(m_shTool ){ + int count = m_location->count(); + m_location->insertItem(str ); + m_location->setCurrentItem( count ); + } return true; } @@ -1054,6 +1062,19 @@ void OFileSelector::cdUP() m_currentDir = dir.absPath(); reparse(); + int count = m_location->count(); + m_location->insertItem(m_currentDir ); + m_location->setCurrentItem( count ); } } +void OFileSelector::slotHome() +{ + cd(QDir::homeDirPath() ); +} +void OFileSelector::slotDoc() +{ + cd(QDir::homeDirPath() + "/Documents" ); +} +void OFileSelector::slotNavigate() +{ - +} |