~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to apps/konqueror/sidebar/trees/konqsidebar_oldtreemodule.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-02 13:28:20 UTC
  • mto: This revision was merged to the branch mainline in revision 258.
  • Revision ID: james.westby@ubuntu.com-20091202132820-tpxn348l9frx5zd5
Tags: upstream-4.3.80
ImportĀ upstreamĀ versionĀ 4.3.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef KONQSIDEBAR_OLDTREEMODULE_H
 
2
#define KONQSIDEBAR_OLDTREEMODULE_H
 
3
 
 
4
#include <konqsidebarplugin.h>
 
5
 
 
6
class KonqSidebarTree;
 
7
 
 
8
class KonqSidebarOldTreeModule : public KonqSidebarModule
 
9
{
 
10
    Q_OBJECT
 
11
public:
 
12
    KonqSidebarOldTreeModule(const KComponentData &componentData, QWidget *parent,
 
13
                     const QString &desktopName_, const KConfigGroup& configGroup);
 
14
    ~KonqSidebarOldTreeModule();
 
15
    virtual QWidget *getWidget();
 
16
 
 
17
public Q_SLOTS:
 
18
    void copy();
 
19
    void cut();
 
20
    void paste();
 
21
    void pasteToSelection();
 
22
 
 
23
protected:
 
24
    QWidget *widget;
 
25
    KonqSidebarTree *tree;
 
26
    virtual void handleURL(const KUrl &url);
 
27
};
 
28
 
 
29
#endif // KONQSIDEBAR_TREEMODULE_H