Window (gb.gtk)

This class implements a window.

Questa classe eredita Container.

Questa classe è creabile.

Questa classe si comporta come un solo-lettura array.

Costanti
Above  
Below  
Normal  

Proprietà
Arrangement  
AutoResize  
Border   Return or set if the window has a border.
Caption  
Centered  
Closed  
Controls  
FullScreen  
Geometry  
Icon  
Indent  
Invert  
Margin  
Mask  
Maximized  
Menus  
MinH  
MinHeight  
MinW  
MinWidth  
Minimized  
Modal  
Opacity  
Padding  
Persistent  
Picture  
Resizable   Constant used by the Border property to indicate that the window is freely resizable.
Screen  
SkipTaskbar  
Spacing  
Stacking  
Sticky  
TakeFocus  
Text  
Title  
TopLevel  
TopOnly  
Transparent  
Utility  

Proprietà ereditate
Action  
Background   Returns or sets the background color used by the control.
Children  
ClientH  
ClientHeight  
ClientW  
ClientWidth  
ClientX  
ClientY  
Cursor   Use this property for assigning a custom cursor to a control.
Design   Indicates that the control is in design mode.
Direction  
Drop   Returns or sets if a control accepts drops.
Enabled   Indicates that the control is enabled.
Expand   Returns or sets if a control will expand if included in a container that arranges its contents.
Font   Returns or sets the font used to draw text in the control.
Foreground   Returns or sets the foreground color used by the control.
H  
Handle  
HasFocus  
Height  
Hovered  
Id  
Ignore  
Left  
Mouse   Returns or sets the appearence of the cursor when it points inside the control.
Name  
Next  
NoTabFocus  
Parent  
PopupMenu  
Previous  
Proxy  
ProxyFor  
RightToLeft  
ScreenX  
ScreenY  
Tag  
Tooltip  
Top  
Tracking  
Visible  
W  
Width  
Window  
X  
Y  

Metodi
Activate  
Center  
Close  
Raise  
Show  
ShowDialog  
ShowModal  
ShowPopup  

Metodi ereditati
Delete  
Drag  
FindChild  
Grab  
Hide  
Lower  
Move  
MoveScaled  
Refresh  
Reparent  
Resize  
ResizeScaled  
SetFocus  

Eventi
Activate  
Close  
Deactivate  
Font  
Hide  
Icon  
Move  
Open  
Resize  
Show  
State  
Title  

Eventi ereditati
Arrange  
BeforeArrange  
DblClick  
Drag  
DragLeave  
DragMove  
Drop  
Enter  
GotFocus  
KeyPress  
KeyRelease  
Leave  
LostFocus  
Menu  
MouseDown  
MouseDrag  
MouseMove  
MouseUp  
MouseWheel  
NewChild  

Wayland Warning...

Properties/function/events related to positioning like Form.X, Form.Y, Form.Move() function, Form_Move() event will not work as expected or give correct information with wayland.

Gambas cannot see the main top level window (desktop screen) with wayland.
With wayland the compositor provides a window space the size of your window but it controls the positioning and sandboxes the application inside. the gambas applications main Form is then all that can be seen as the top level window.

This causes problems with Form_Move() events and getting/setting positions will not work as expected as nothing relates to the underlying screen size just the compositors provided space (Form.X and Form.X remain the same regardless of where you place the form on the desktop)

A Form can only be moved reliably by code with wayland if it is opened within it's own larger parent workspace.

There is nothing gambas can do about this, the Wayland developers insist we do not need to control window positions, the compositor should know best, and they will not provide any means to do so.

See also