blob: 5654d1ef64d584583edfab4a2a231631d78d353f (
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
48
49
50
51
52
53
54
55
56
|
/*
* Copyright (C) 2001 Matthias Hoelzer-Kluepfel <mhk@caldera.de>
*/
#ifndef __KDEVPART_TOOLS_H__
#define __KDEVPART_TOOLS_H__
#include <tqguardedptr.h>
#include <kdevplugin.h>
#include <kdevgenericfactory.h>
class TQPopupMenu;
class KDialogBase;
class Context;
class ConfigWidgetProxy;
class ToolsWidget;
class ToolsPart : public KDevPlugin
{
Q_OBJECT
TQ_OBJECT
public:
ToolsPart( TQObject *tqparent, const char *name, const TQStringList & );
~ToolsPart();
private slots:
void insertConfigWidget( const KDialogBase * dlg, TQWidget * page, unsigned int pagenumber );
void updateMenu();
void slotToolActivated();
void contextMenu(TQPopupMenu *popup, const Context *context);
void updateToolsMenu();
void toolsMenuActivated();
void fileContextActivated(int id);
void dirContextActivated(int id);
private:
void startCommand(TQString cmdline, bool captured, TQString fileName);
TQPopupMenu *m_contextPopup;
TQString m_contextFileName;
ConfigWidgetProxy * m_configProxy;
};
typedef KDevGenericFactory<ToolsPart> ToolsFactory;
#endif
|