summaryrefslogtreecommitdiffstats
path: root/source/WebPlugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/WebPlugin.h')
-rw-r--r--source/WebPlugin.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/source/WebPlugin.h b/source/WebPlugin.h
new file mode 100644
index 000000000..35af88167
--- /dev/null
+++ b/source/WebPlugin.h
@@ -0,0 +1,47 @@
+
+#pragma once
+
+struct lua_State;
+struct HTTPRequest;
+
+
+
+
+
+// tolua_begin
+class cWebPlugin
+{
+public:
+ // tolua_end
+ cWebPlugin();
+ virtual ~cWebPlugin();
+
+ virtual const AString & GetName(void) const = 0;
+ // tolua_begin
+
+ virtual AString HandleWebRequest( HTTPRequest * a_Request ) = 0;
+
+ static AString SafeString( const AString & a_String );
+ //tolua_end
+
+ struct sWebPluginTab
+ {
+ std::string Title;
+ std::string SafeTitle;
+
+ int UserData;
+ };
+
+ typedef std::list< sWebPluginTab* > TabList;
+ TabList & GetTabs() { return m_Tabs; }
+
+ std::list< std::pair<AString, AString> > GetTabNames();
+ std::pair< AString, AString > GetTabNameForRequest( HTTPRequest* a_Request );
+
+private:
+ TabList m_Tabs;
+}; // tolua_export
+
+
+
+