Package: gdk

GEnum gdk:frame-clock-phase

Declaration

(gobject:define-genum "GdkFrameClockPhase" frame-clock-phase
  (:export t
   :type-initializer "gdk_frame_clock_phase_get_type")
  (:none 0)
  (:flush-events 1)
  (:before-paint 2)
  (:update 3)
  (:layout 4)
  (:paint 5)
  (:resume-events 6)
  (:after-paint 7))  

Values

:none
No phase.
:flush-events
Corresponds to the signal "flush-events". Should not be handled by applications.
:before-paint
Corresponds to the signal "before-paint". Should not be handled by applications.
:update
Corresponds to the signal "update".
:layout
Corresponds to the signal "layout".
:paint
Corresponds to the signal "paint".
:resume-events
Corresponds tol the signal "resume-events". Should not be handled by applications.
:after-paint
Corresponds to the signal "after-paint". Should not be handled by applications.

Details

The gdk:frame-clock-phase enumeration is used to represent the different paint clock phases that can be requested. The elements of the enumeration correspond to the signals of the gdk:frame-clock class.
 

See also

#2023-3-10