summaryrefslogtreecommitdiffstats
path: root/kate/kjswrapper/bindings.h
blob: bb0758b42fba412192233f46e6c6fee05d7e6cfb (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#ifndef _KATE_JS_BINDINGS_H_
#define _KATE_JS_BINDINGS_H_

#include <kjsembed/jsbindingplugin.h>
#include <kjsembed/jsproxy_imp.h>
#include <kjsembed/jsobjectproxy.h>
#include <kjsembed/jsfactory.h>
#include <tqptrdict.h>

class PluginKateKJSWrapper;

namespace Kate {
	namespace JS {


		struct ObjectEntry {
			KJS::Object obj;
		};

		class RefCountedObjectDict: public TQObject, public TQPtrDict<ObjectEntry> {
			Q_OBJECT
  
		public:
			RefCountedObjectDict(int size);
			void incRef();
			void decRef();
			KJS::Object jsObject(KJS::ExecState *exec, TQObject *obj, KJSEmbed::JSObjectProxy *proxy);
		public slots:
			void removeSender();
		private:
			int m_usageCount;
		};


		class Bindings: public KJSEmbed::Bindings::JSBindingPlugin {
		public:
			Bindings(TQObject *parent);
			virtual ~Bindings();
			KJS::Object createBinding(KJSEmbed::KJSEmbedPart *jspart, KJS::ExecState *exec, const KJS::List &args) const;
			void addBindings(KJS::ExecState *exec, KJS::Object &target) const;
		};

		class DocumentManager: public KJSEmbed::JSProxyImp {
		public:
			enum MethodID {
				Document,
				ActiveDocument,
				DocumentWithID,
				FindDocument,
				IsOpen,
				OpenURL,
				Documents,
				CloseDocument,
				CloseAllDocuments
			};
			virtual bool implementsCall() const { return true; }
		    	virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
			static void addBindings(KJS::ExecState *exec, KJSEmbed::JSObjectProxy *proxy,KJS::Object &target);
			private:
			DocumentManager( KJS::ExecState *exec, int id, KJSEmbed::JSObjectProxy *parent, RefCountedObjectDict *dict );
			virtual ~DocumentManager();
		private:
			RefCountedObjectDict *m_dict;
			int m_id;
			KJSEmbed::JSObjectProxy *m_proxy;

		};

		class Management: public KJSEmbed::JSProxyImp {
		public:
			enum MethodID {
				AddConfigPage,
				SetConfigPages,
				RemoveConfigPage,
				SetWindowConfiguration,
				KJSConsole
			};
			Management( KJS::ExecState *exec, int id, class PluginKateKJSWrapper *kateplug);
			virtual bool implementsCall() const { return true; }
		    	virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );

		private:
			int m_id;
			class PluginKateKJSWrapper *m_wrapper;

		};
		
		class Application: public KJSEmbed::JSProxyImp {
		public:
			enum MethodID {
				ToolView,
				WindowCount,
				Window,
				ActiveWindow,
				
			};
			virtual bool implementsCall() const { return true; }
		    	virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
			static void addBindings(KJS::ExecState *exec, KJSEmbed::JSObjectProxy *proxy,KJS::Object &target);
			private:
			Application( KJS::ExecState *exec, int id, KJSEmbed::JSObjectProxy *parent, PluginKateKJSWrapper *plugin );
			~Application();
		private:
			int m_id;
			KJSEmbed::JSObjectProxy *m_proxy;
			PluginKateKJSWrapper *m_plugin;
		};

		class General: public KJSEmbed::JSProxyImp {
		public:
			enum MethodID {
				MethodMethods,
				MethodFields
			};
			virtual bool implementsCall() const { return true; }
		    	virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
		    	virtual KJS::Value fieldz( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
		    	virtual KJS::Value methodz( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
			static void addBindings(KJS::ExecState *exec,KJSEmbed::JSObjectProxy *proxy,KJS::Object &target);
			private:
			General( KJS::ExecState *exec,KJS::Interpreter *interpreter,int id);

		private:
			int m_id;
			KJS::Interpreter *m_interpreter;
		};


		class MainWindow: public KJSEmbed::JSProxyImp {
		public:
			enum MethodID {
				ActionCollection
				
			};
			virtual bool implementsCall() const { return true; }
		    	virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
			static void addBindings(KJS::ExecState *exec, KJSEmbed::JSObjectProxy *proxy,KJS::Object &target);
			private:
			MainWindow( KJS::ExecState *exec, int id, KJSEmbed::JSObjectProxy *parent, PluginKateKJSWrapper *plugin );
			~MainWindow();
		private:
			int m_id;
			KJSEmbed::JSObjectProxy *m_proxy;
			PluginKateKJSWrapper *m_plugin;
		};


	}
}

#endif