blob: 06f6b16b506570979a22debea07ab2f4fcde60e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef _konq_sidebar_test_h_
#define _konq_sidebar_test_h_
#include <konqsidebarplugin.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <kparts/part.h>
#include <kparts/factory.h>
#include <kparts/browserextension.h>
#include <kdialogbase.h>
#include <tqcombobox.h>
#include <tqstringlist.h>
#include <klocale.h>
#include <tqlineedit.h>
class KonqSidebarTree;
class TQVBox;
class KonqSidebar_Tree: public KonqSidebarPlugin
{
Q_OBJECT
public:
KonqSidebar_Tree(KInstance *instance,TQObject *parent,TQWidget *widgetParent, TQString &desktopName_, const char* name=0);
~KonqSidebar_Tree();
virtual void *provides(const TQString &);
// void emitStatusBarText (const TQString &);
virtual TQWidget *getWidget();
protected:
class TQVBox *widget;
class KonqSidebarTree *tree;
virtual void handleURL(const KURL &url);
protected slots:
void copy();
void cut();
void paste();
void trash();
void del();
void shred();
void rename();
signals:
void openURLRequest( const KURL &url, const KParts::URLArgs &args = KParts::URLArgs() );
void createNewWindow( const KURL &url, const KParts::URLArgs &args = KParts::URLArgs() );
void popupMenu( const TQPoint &global, const KURL &url,
const TQString &mimeType, mode_t mode = (mode_t)-1 );
void popupMenu( const TQPoint &global, const KFileItemList &items );
void enableAction( const char * name, bool enabled );
};
#endif
|