Package: gdk

GFlags gdk:window-attributes-type

Declaration

(gobject:define-gflags "GdkWindowAttributesType" window-attributes-type
  (:export t
   :type-initializer "gdk_window_attributes_type_get_type")
  (:title 2)
  (:x 4)
  (:y 8)
  (:cursor 16)
  (:visual 32)
  (:wmclass 64)
  (:noredir 128)
  (:type-hint 256))  

Values

:title
Honor the title field.
:x
Honor the x coordinate field.
:y
Honor the y coordinate field.
:cursor
Honor the cursor field.
:visual
Honor the visual field.
:wmclass
Honor the wmclass-class and wmclass-name fields.
:noredir
Honor the override-redirect field.
:type-hint
Honor the type-hint field.

Details

Used to indicate which fields in the gdk:window-attr structure should be honored. For example, if you filled in the cursor and x fields of the gdk:window-attr structure, pass '(:x :cursor) to the gdk:window-new function. Fields in the gdk:window-attr structure not covered by a bit in this enumeration are required. For example, the width/height, wclass, and window-type fields are required, they have no corresponding flag in the gdk:window-attributes-type flags.
 

See also

2023-2-26