blob: 4798d7fab775acba925208d04bbaf1a0a44a34a6 (
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
 | #ifndef __TDEVPART_SQLSUPPORT_H__
#define __TDEVPART_SQLSUPPORT_H__
#include <tqguardedptr.h>
#include <tqstringlist.h>
#include <kprocess.h>
#include <kdialogbase.h>
#include "tdevplugin.h"
#include "tdevlanguagesupport.h"
class SqlListAction;
class SqlOutputWidget;
class CodeModel;
class SQLSupportPart : public TDevLanguageSupport
{
  Q_OBJECT
  
public:
    SQLSupportPart(TQObject *parent, const char *name, const TQStringList &);
    virtual ~SQLSupportPart();
    static TQString cryptStr(const TQString& aStr);
    const TQStringList& connections() const { return conNames; }
protected:
    virtual Features features();
    virtual KMimeType::List mimeTypes();
private slots:
    void slotRun();
    void projectConfigWidget(KDialogBase *dlg);
    void projectOpened();
    void projectClosed();
    void savedFile(const KURL &fileName);
    void addedFilesToProject(const TQStringList &fileList);
    void removedFilesFromProject(const TQStringList &fileList);
    void parse();
    void loadConfig();
    void activeConnectionChanged();
private:
    void clearConfig();
    void updateCatalog();
    SqlListAction* dbAction;
    SqlOutputWidget* m_widget;
    TQStringList conNames;
    CodeModel *m_store;
};
#endif
 |