plucky (3) SDL_HitTestResult.3type.gz

Provided by: libsdl3-doc_3.2.4+ds-2_all bug

NAME

       SDL_HitTestResult - Possible return values from the SDL_HitTest
        callback.

HEADER FILE

       Defined in SDL3/SDL_video.h

SYNOPSIS

       #include "SDL3/SDL.h"

       typedef enum SDL_HitTestResult
       {
           SDL_HITTEST_NORMAL,             /**< Region is normal. No special properties. */
           SDL_HITTEST_DRAGGABLE,          /**< Region can drag entire window. */
           SDL_HITTEST_RESIZE_TOPLEFT,     /**< Region is the resizable top-left corner border. */
           SDL_HITTEST_RESIZE_TOP,         /**< Region is the resizable top border. */
           SDL_HITTEST_RESIZE_TOPRIGHT,    /**< Region is the resizable top-right corner border. */
           SDL_HITTEST_RESIZE_RIGHT,       /**< Region is the resizable right border. */
           SDL_HITTEST_RESIZE_BOTTOMRIGHT, /**< Region is the resizable bottom-right corner border. */
           SDL_HITTEST_RESIZE_BOTTOM,      /**< Region is the resizable bottom border. */
           SDL_HITTEST_RESIZE_BOTTOMLEFT,  /**< Region is the resizable bottom-left corner border. */
           SDL_HITTEST_RESIZE_LEFT         /**< Region is the resizable left border. */
       } SDL_HitTestResult;

THREAD SAFETY

       This function should only be called on the main thread.

AVAILABILITY

       This enum is available since SDL 3.2.0.

SEE ALSO

       (3), SDL_HitTest(3type)