3c8efd56e9
* NEW: Update chinese translations. [EXAMPLES] * NEW: Add screenshots, switch to 1.0 version, and publish. [INTERPRETER] * NEW: Allow WAIT to raise errors. [GB.DESKTOP] * NEW: DesktopWindow.Geometry is a new property that returns the geometry of the window inside as a rectangle. * NEW: DesktopWindow.Frame is a new property that returns the geometry of the window outside (with the frame) as a rectangle. * NEW: DesktopWindow.GetScreenshot() is a new method that returns a screenshot of a window, with or without the frame. * BUG: DesktopWindow X, Y, Width and Height properties return the window geometry without the frame. [GB.GTK] * NEW: Raise an error if WAIT is called during a keyboard event. [GB.GTK3] * NEW: Raise an error if WAIT is called during a keyboard event. [GB.QT4] * NEW: Raise an error if WAIT is called during a keyboard event. git-svn-id: svn://localhost/gambas/trunk@6746 867c0c6c-44f3-4631-809d-bfa615b0a4ec
65 lines
1.2 KiB
Text
65 lines
1.2 KiB
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(30,14,96,73)
|
|
Resizable = False
|
|
{ Button1 Button
|
|
MoveScaled(1,6,14,4)
|
|
Text = ("GET!")
|
|
}
|
|
{ TextArea1 TextArea
|
|
MoveScaled(1,11,63,14)
|
|
}
|
|
{ Navigator TextEdit
|
|
MoveScaled(1,26,94,46)
|
|
ReadOnly = True
|
|
}
|
|
{ Label1 Label
|
|
MoveScaled(1,1,7,4)
|
|
Text = ("URL :")
|
|
}
|
|
{ TxtHost TextBox
|
|
MoveScaled(8,1,56,4)
|
|
Text = ("http://gambasdoc.org/help")
|
|
}
|
|
{ BtnStop Button
|
|
MoveScaled(16,6,14,4)
|
|
Text = ("Stop")
|
|
}
|
|
{ ChkPassword CheckBox
|
|
MoveScaled(66,6,29,4)
|
|
Text = ("Page needs authorization")
|
|
}
|
|
{ TxtUser TextBox
|
|
MoveScaled(66,16,29,4)
|
|
Enabled = False
|
|
Text = ("User")
|
|
}
|
|
{ TxtPassword TextBox
|
|
MoveScaled(66,21,29,4)
|
|
Enabled = False
|
|
Text = ("Password")
|
|
Password = True
|
|
}
|
|
{ CmbAuth ComboBox
|
|
MoveScaled(66,11,29,4)
|
|
Enabled = False
|
|
ReadOnly = True
|
|
List = [("Basic"), ("NTLM"), ("DIGEST"), ("GSS")]
|
|
Text = (" ")
|
|
}
|
|
{ MyHttp #HttpClient
|
|
#MoveScaled(27,36)
|
|
}
|
|
{ mnuOptions Button
|
|
MoveScaled(66,1,29,4)
|
|
Text = ("&Configuration...")
|
|
}
|
|
{ txtInfo Label
|
|
MoveScaled(32,6,32,4)
|
|
Font = Font["Bold"]
|
|
Background = Color.SelectedBackground
|
|
Foreground = &HFFFF00&
|
|
Padding = 8
|
|
}
|
|
}
|