Initial commit of litehtml_viewer
[claws.git] / src / plugins / litehtml_viewer / litehtml / context.h
diff --git a/src/plugins/litehtml_viewer/litehtml/context.h b/src/plugins/litehtml_viewer/litehtml/context.h
new file mode 100644 (file)
index 0000000..ce62991
--- /dev/null
@@ -0,0 +1,16 @@
+#pragma once\r
+#include "stylesheet.h"\r
+\r
+namespace litehtml\r
+{\r
+       class context\r
+       {\r
+               litehtml::css   m_master_css;\r
+       public:\r
+               void                    load_master_stylesheet(const tchar_t* str);\r
+               litehtml::css&  master_css()\r
+               {\r
+                       return m_master_css;\r
+               }\r
+       };\r
+}
\ No newline at end of file