diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-07 22:58:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-07 22:58:44 +0900 |
commit | 145abc15d57fb29701a12e8a14dcb9c1fd72e9be (patch) | |
tree | fbb4f2f737ec6f4e8a85bea5f2ca2257d20d7e22 /konqueror/listview/konq_treeviewitem.cc | |
parent | d95494d97233919fa0b2eebf60759537b793e05b (diff) | |
download | tdebase-145abc15d57fb29701a12e8a14dcb9c1fd72e9be.tar.gz tdebase-145abc15d57fb29701a12e8a14dcb9c1fd72e9be.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'konqueror/listview/konq_treeviewitem.cc')
-rw-r--r-- | konqueror/listview/konq_treeviewitem.cc | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/konqueror/listview/konq_treeviewitem.cc b/konqueror/listview/konq_treeviewitem.cc deleted file mode 100644 index 12953c401..000000000 --- a/konqueror/listview/konq_treeviewitem.cc +++ /dev/null @@ -1,101 +0,0 @@ -/* This file is part of the KDE project - Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> - 2001, 2002, 2004 Michael Brade <brade@kde.org> - - 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. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; see the file COPYING. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include "konq_treeviewwidget.h" -#include "konq_listview.h" - - -KonqListViewDir::KonqListViewDir( KonqTreeViewWidget *_parent, KFileItem* _fileitem ) - : KonqListViewItem( _parent, _fileitem ) -{ - setExpandable( true ); - m_bComplete = false; -} - -KonqListViewDir::KonqListViewDir( KonqTreeViewWidget *_treeview, KonqListViewDir *_parent, KFileItem *_fileitem ) - : KonqListViewItem( _treeview, _parent, _fileitem ) -{ - setExpandable( true ); - m_bComplete = false; -} - -void KonqListViewDir::setOpen( bool _open ) -{ - open( _open, false ); -} - -void KonqListViewDir::open( bool _open, bool _reload ) -{ - if ( _open != isOpen() || _reload ) - { - KonqTreeViewWidget *treeView = static_cast<KonqTreeViewWidget *>(m_pListViewWidget); - - if ( _open ) - { - if ( !m_bComplete || _reload ) // complete it before opening - treeView->openSubFolder( this, _reload ); - else - { - // we need to add the items to the counts for the statusbar - KFileItemList lst; - lst.setAutoDelete( false ); - - TQListViewItem* it = firstChild(); - while ( it ) - { - lst.append( static_cast<KonqListViewItem*>(it)->item() ); - it = it->nextSibling(); - } - - // tell the view about the new items to count - treeView->m_pBrowserView->newItems( lst ); - } - } - else - { - treeView->stopListingSubFolder( this ); - - TQListViewItem* it = firstChild(); - while ( it ) - { - // unselect the items in the closed folder - treeView->setSelected( it, false ); - // delete the item from the counts for the statusbar - KFileItem* item = static_cast<KonqListViewItem*>(it)->item(); - treeView->m_pBrowserView->deleteItem( item ); - it = it->nextSibling(); - } - } - - TQListViewItem::setOpen( _open ); - treeView->slotOnViewport(); - } -} - -KURL KonqListViewDir::kurl() -{ - return m_fileitemURL; -} - -TQString KonqListViewDir::url( int _trailing ) -{ - return m_fileitemURL.url( _trailing ); -} - |