List
Add
Info
Contact
Stats
To edit this entry i need username and password!
Fields marked * are required!
* Username:
* Password:
Type:
Sourcecode (WITHOUT BBCode support)
Name:
GTK
* Data:
(max. 1 MB)
Available TAG's (new window)
#include once "gtk/gtk.bi" declare function GtkCreateWin(sizeX as integer,sizeY as integer, title as String) as GtkWidget PTR Function GtkCreateWin(sizeX as integer,sizeY as integer,title as String) as GtkWidget PTR Dim as GtkWidget Ptr windowT windowT = gtk_window_new(GTK_WINDOW_TOPLEVEL) gtk_window_set_title(GTK_WINDOW(windowT), title) gtk_widget_set_size_request(windowT, sizeX, sizeY) gtk_window_set_position(GTK_WINDOW(windowT), GTK_WIN_POS_CENTER) return windowT End function
Filetype / Highlight:
freeBASIC
Action: