Package: gdk

Flags gdk-window-attributes-type

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 gdk-window-attr, pass '(:x :cursor) to the function gdk-window-new. Fields in gdk-window-attr not covered by a bit in this enum are required. For example, the width/height, wclass, and window-type fields are required, they have no corresponding flag in gdk-window-attributes-type.
(define-g-flags "GdkWindowAttributesType" gdk-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))  
: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.
 

See also

2020-9-6