summaryrefslogtreecommitdiff
path: root/new/ui_unix.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-16 20:33:28 -0400
committerPietro Gagliardi <[email protected]>2015-04-16 20:33:28 -0400
commite34c561ed5bedeb180437ec165882b98d70d38c1 (patch)
treed095e5db16d7a23e883526c8c1d3c524639c97cf /new/ui_unix.h
parentde9d72299fb89a8b6cdc8963cd6b6ae708a81e80 (diff)
Split the rewrite into a new repository.
Diffstat (limited to 'new/ui_unix.h')
-rw-r--r--new/ui_unix.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/new/ui_unix.h b/new/ui_unix.h
deleted file mode 100644
index 3911416..0000000
--- a/new/ui_unix.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// 7 april 2015
-
-/*
-This file assumes that you have included <gtk/gtk.h> and "ui.h" beforehand. It provides API-specific functions for interfacing with foreign controls on Unix systems that use GTK+ to provide their UI (currently all except Mac OS X).
-*/
-
-#ifndef __UI_UI_UNIX_H__
-#define __UI_UI_UNIX_H__
-
-// uiUnixNewControl() creates a new uiControl with the given GTK+ control inside, storing it in the uiControl at c.
-// The second parameter is the type of the control, as passed to the first argument of g_object_new().
-// The two scrolledWindow parameters allow placing scrollbars on the new control.
-// The firstProperty parameter and beyond allow passing construct properties to the new control, as with g_object_new(); end this list with NULL.
-extern void uiUnixNewControl(uiControl *c, GType type, gboolean inScrolledWindow, gboolean scrolledWindowHasBorder, const char *firstProperty, ...);
-
-struct uiSizingSys {
- // this structure currently left blank
-};
-
-#endif