Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,41 @@
with Gtk.Window; use Gtk.Window;
with Gtk.Widget; use Gtk.Widget;
with Gtk.Handlers;
with Gtk.Main;
procedure Windowed_Application is
Window : Gtk_Window;
package Handlers is new Gtk.Handlers.Callback (Gtk_Widget_Record);
package Return_Handlers is
new Gtk.Handlers.Return_Callback (Gtk_Widget_Record, Boolean);
function Delete_Event (Widget : access Gtk_Widget_Record'Class)
return Boolean is
begin
return False;
end Delete_Event;
procedure Destroy (Widget : access Gtk_Widget_Record'Class) is
begin
Gtk.Main.Main_Quit;
end Destroy;
begin
Gtk.Main.Init;
Gtk.Window.Gtk_New (Window);
Return_Handlers.Connect
( Window,
"delete_event",
Return_Handlers.To_Marshaller (Delete_Event'Access)
);
Handlers.Connect
( Window,
"destroy",
Handlers.To_Marshaller (Destroy'Access)
);
Show (Window);
Gtk.Main.Main;
end Windowed_Application;

View file

@ -0,0 +1,9 @@
GUICreate("Test")
GUISetState(@SW_SHOW)
Do
Switch GUIGetMsg()
Case -3 ; $GUI_EVENT_CLOSE
Exit
EndSwitch
Until False

View file

@ -0,0 +1 @@
mshta javascript:void(0)

View file

@ -0,0 +1 @@
mshta vbscript:Execute("")

View file

@ -0,0 +1 @@
(make-frame)

View file

@ -0,0 +1,5 @@
include arwen.ew
constant win = create(Window, "ARWEN window", 0, 0,100,100,640,480,{0,0})
WinMain(win, SW_NORMAL)

View file

@ -0,0 +1,6 @@
include GtkEngine.e
constant win = create(GtkWindow,"title=EuGTK Window;size=640x480;border=10;$destroy=Quit")
show_all(win)
main()

View file

@ -0,0 +1,10 @@
include EuWinGUI.ew
Window("EuWinGUI window",100,100,640,480)
-- Event loop
while True do
WaitEvent()
end while
CloseApp(0)

View file

@ -0,0 +1,5 @@
include Win32Lib.ew
constant win = createEx( Window, "Win32Lib", 0, Default, Default, 640, 480, 0, 0 )
WinMain( win, Normal )

View file

@ -0,0 +1,5 @@
include wxeu/wxeud.e
constant win = create( wxFrame, {0, -1, "wxEuphoria window", -1, -1, 640, 480} )
wxMain( win )

View file

@ -0,0 +1 @@
GraphicsWindow.Show()

View file

@ -0,0 +1 @@
New-Window -Show

View file

@ -0,0 +1,4 @@
$form = New-Object Windows.Forms.Form
$form.Text = "A Window"
$form.Size = New-Object Drawing.Size(150,150)
$form.ShowDialog() | Out-Null

View file

@ -0,0 +1 @@
view layout [size 100x100]

View file

@ -0,0 +1,6 @@
fyne: import\go "fyne"
app: import\go "fyne/app"
widget: import\go "fyne/widget"
a: app/new
w: a .window "hello"
w .show-and-run