summaryrefslogtreecommitdiff
path: root/widgetform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'widgetform.cpp')
-rw-r--r--widgetform.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/widgetform.cpp b/widgetform.cpp
new file mode 100644
index 0000000..61d31ae
--- /dev/null
+++ b/widgetform.cpp
@@ -0,0 +1,19 @@
+#include <skygi/skygi.h>
+
+#include "widgetform.h"
+
+CForm::CForm() {
+ this->hWnd = NULL;
+}
+
+HRESULT CForm::Create(HANDLE parent, char * name, int x, int y, int w, int h, int style, unsigned int flags) {
+ this->hWnd = GI_WidgetFormCreate(parent, name, x, y, w, h, style, flags);
+ if (this->hWnd) {
+ return S_OK;
+ }
+ return E_HANDLE;
+}
+
+HRESULT CForm::UseParentBackground(bool use) {
+ return GI_WidgetFormUseParentBackground(this->hWnd, use);
+}