You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/konqueror/sidebar/trees/konqsidebar_tree.cpp

169 lines
5.1 KiB

#include "konqsidebar_tree.h"
#include "konqsidebar_tree.moc"
#include "konq_sidebartree.h"
#include <kdebug.h>
#include <kstandarddirs.h>
#include <ksimpleconfig.h>
#include <kinputdialog.h>
#include <kiconloader.h>
#include <klistviewsearchline.h>
#include <tqclipboard.h>
#include <tqdragobject.h>
#include <tqtoolbutton.h>
#include <tqvbox.h>
#include <tqapplication.h>
KonqSidebar_Tree::KonqSidebar_Tree(KInstance *instance,TQObject *parent,TQWidget *widgetParent, TQString &desktopName_, const char* name):
KonqSidebarPlugin(instance,parent,widgetParent,desktopName_,name)
{
KSimpleConfig ksc(desktopName_);
ksc.setGroup("Desktop Entry");
int virt= ( (ksc.readEntry("X-KDE-TreeModule","")=="Virtual") ?VIRT_Folder:VIRT_Link);
if (virt==1) desktopName_=ksc.readEntry("X-KDE-RelURL","");
widget = new TQVBox(widgetParent);
if (ksc.readBoolEntry("X-KDE-SearchableTreeModule",false)) {
TQHBox* searchline = new TQHBox(widget);
searchline->setSpacing(KDialog::spacingHint());
tree=new KonqSidebarTree(this,widget,virt,desktopName_);
TQToolButton *clearSearch = new TQToolButton(searchline);
clearSearch->setTextLabel(i18n("Clear Search"), true);
clearSearch->setIconSet(SmallIconSet(TQApplication::reverseLayout() ? "clear_left" : "locationbar_erase"));
TQLabel* slbl = new TQLabel(i18n("Se&arch:"), searchline);
KListViewSearchLine* listViewSearch = new KListViewSearchLine(searchline,tree);
slbl->setBuddy(listViewSearch);
connect(clearSearch, TQT_SIGNAL(pressed()), listViewSearch, TQT_SLOT(clear()));
}
else
tree=new KonqSidebarTree(this,widget,virt,desktopName_);
connect(tree, TQT_SIGNAL( openURLRequest( const KURL &, const KParts::URLArgs &)),
this,TQT_SIGNAL( openURLRequest( const KURL &, const KParts::URLArgs &)));
connect(tree,TQT_SIGNAL(createNewWindow( const KURL &, const KParts::URLArgs &)),
this,TQT_SIGNAL(createNewWindow( const KURL &, const KParts::URLArgs &)));
connect(tree,TQT_SIGNAL(popupMenu( const TQPoint &, const KURL &, const TQString &, mode_t )),
this,TQT_SIGNAL(popupMenu( const TQPoint &, const KURL &, const TQString &, mode_t )));
connect(tree,TQT_SIGNAL(popupMenu( const TQPoint &, const KFileItemList & )),
this,TQT_SIGNAL(popupMenu( const TQPoint &, const KFileItemList & )));
connect(tree,TQT_SIGNAL(enableAction( const char *, bool )),
this,TQT_SIGNAL(enableAction( const char *, bool)));
}
KonqSidebar_Tree::~KonqSidebar_Tree(){;}
void* KonqSidebar_Tree::provides(const TQString &) {return 0;}
//void KonqSidebar_Tree::emitStatusBarText (const TQString &) {;}
TQWidget *KonqSidebar_Tree::getWidget(){return widget;}
void KonqSidebar_Tree::handleURL(const KURL &url)
{
emit started( 0 );
tree->followURL( url );
emit completed();
}
void KonqSidebar_Tree::cut()
{
TQDragObject * drag = static_cast<KonqSidebarTreeItem*>(tree->selectedItem())->dragObject( 0L, true );
if (drag)
TQApplication::tqclipboard()->setData( drag );
}
void KonqSidebar_Tree::copy()
{
TQDragObject * drag = static_cast<KonqSidebarTreeItem*>(tree->selectedItem())->dragObject( 0L );
if (drag)
TQApplication::tqclipboard()->setData( drag );
}
void KonqSidebar_Tree::paste()
{
if (tree->currentItem())
tree->currentItem()->paste();
}
void KonqSidebar_Tree::trash()
{
if (tree->currentItem())
tree->currentItem()->trash();
}
void KonqSidebar_Tree::del()
{
if (tree->currentItem())
tree->currentItem()->del();
}
void KonqSidebar_Tree::shred()
{
if (tree->currentItem())
tree->currentItem()->shred();
}
void KonqSidebar_Tree::rename()
{
Q_ASSERT( tree->currentItem() );
if (tree->currentItem())
tree->currentItem()->rename();
}
extern "C"
{
KDE_EXPORT void* create_konqsidebar_tree(KInstance *inst,TQObject *par,TQWidget *widp,TQString &desktopname,const char *name)
{
return new KonqSidebar_Tree(inst,par,widp,desktopname,name);
}
}
extern "C"
{
KDE_EXPORT bool add_konqsidebar_tree(TQString* fn, TQString*, TQMap<TQString,TQString> *map)
{
KStandardDirs *dirs=KGlobal::dirs();
TQStringList list=dirs->findAllResources("data","konqsidebartng/dirtree/*.desktop",false,true);
TQStringList names;
for (TQStringList::ConstIterator it=list.begin();it!=list.end();++it)
{
KSimpleConfig sc(*it);
sc.setGroup("Desktop Entry");
names<<sc.readEntry("Name");
}
TQString item = KInputDialog::getItem( i18n( "Select Type" ),
i18n( "Select type:" ), names );
if (!item.isEmpty())
{
int id=names.tqfindIndex( item );
if (id==-1) return false;
KSimpleConfig ksc2(*list.at(id));
ksc2.setGroup("Desktop Entry");
map->insert("Type","Link");
map->insert("Icon",ksc2.readEntry("Icon"));
map->insert("Name",ksc2.readEntry("Name"));
map->insert("Open","false");
map->insert("URL",ksc2.readEntry("X-KDE-Default-URL"));
map->insert("X-KDE-KonqSidebarModule","konqsidebar_tree");
map->insert("X-KDE-TreeModule",ksc2.readEntry("X-KDE-TreeModule"));
map->insert("X-KDE-TreeModule-ShowHidden",ksc2.readEntry("X-KDE-TreeModule-ShowHidden"));
fn->setLatin1("dirtree%1.desktop");
return true;
}
return false;
}
}