Vcl.Controls.TStandardGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TStandardGesture = (
sgLeft            = sgiLeft,
sgRight           = sgiRight,
sgUp              = sgiUp,
sgDown            = sgiDown,
sgUpLeft          = sgiUpLeft,
sgUpRight         = sgiUpRight,
sgDownLeft        = sgiDownLeft,
sgDownRight       = sgiDownRight,
sgLeftUp          = sgiLeftUp,
sgLeftDown        = sgiLeftDown,
sgRightUp         = sgiRightUp,
sgRightDown       = sgiRightDown,
sgUpDown          = sgiUpDown,
sgDownUp          = sgiDownUp,
sgLeftRight       = sgiLeftRight,
sgRightLeft       = sgiRightLeft,
sgUpLeftLong      = sgiUpLeftLong,
sgUpRightLong     = sgiUpRightLong,
sgDownLeftLong    = sgiDownLeftLong,
sgDownRightLong   = sgiDownRightLong,
sgScratchout      = sgiScratchout,
sgTriangle        = sgiTriangle,
sgSquare          = sgiSquare,
sgCheck           = sgiCheck,
sgCurlicue        = sgiCurlicue,
sgDoubleCurlicue  = sgiDoubleCurlicue,
sgCircle          = sgiCircle,
sgDoubleCircle    = sgiDoubleCircle,
sgSemiCircleLeft  = sgiSemiCircleLeft,
sgSemiCircleRight = sgiSemiCircleRight,
sgChevronUp       = sgiChevronUp,
sgChevronDown     = sgiChevronDown,
sgChevronLeft     = sgiChevronLeft,
sgChevronRight    = sgiChevronRight);

C++

enum DECLSPEC_DENUM TStandardGesture : unsigned char { sgLeft = 1, sgRight, sgUp, sgDown, sgUpLeft, sgUpRight, sgDownLeft, sgDownRight, sgLeftUp, sgLeftDown, sgRightUp, sgRightDown, sgUpDown, sgDownUp, sgLeftRight, sgRightLeft, sgUpLeftLong, sgUpRightLong, sgDownLeftLong, sgDownRightLong, sgScratchout, sgTriangle, sgSquare, sgCheck, sgCurlicue, sgDoubleCurlicue, sgCircle, sgDoubleCircle, sgSemiCircleLeft, sgSemiCircleRight, sgChevronUp, sgChevronDown, sgChevronLeft, sgChevronRight };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Enumerates the supported standard gestures.

TStandardGesture enumerates the standard gestures supported by the VCL framework.


The possible values of TStandardGesture are listed in the following table:

Value Meaning

sgDoubleCircle

Identifies a standard "Double Circle" gesture.

sgDoubleCurlicue

Identifies a standard "Double Curlicue" gesture.

sgDown

Identifies a standard "Down" gesture.

sgDownLeft

Identifies a standard "Down, then Left" gesture.

sgDownLeftLong

Identifies a standard "Down, then long Left" gesture.

sgDownRight

Identifies a standard "Down, then Right" gesture.

sgDownRightLong

Identifies a standard "Down, then long Right" gesture.

sgDownUp

Identifies a standard "Down, then Up" gesture.

sgLeft

Identifies a standard "Left" gesture.

sgLeftDown

Identifies a standard "Left, then Down" gesture.

sgLeftRight

Identifies a standard "Left, then Right" gesture.

sgDownLeftLong

Identifies a standard "Down, then long Left" gesture.

sgLeftUp

Identifies a standard "Left, then Up" gesture.

sgRight

Identifies a standard "Right" gesture.

sgRightDown

Identifies a standard "Right, then Down" gesture.

sgRightLeft

Identifies a standard "Right, then Left" gesture.

sgRightUp

Identifies a standard "Right, then Up" gesture.

sgScratchout

Identifies a standard "Scratch-out" gesture.

sgSemiCircleLeft

Identifies a standard "Right-to-Left Semicircle" gesture.

sgSemiCircleRight

Identifies a standard "Left-to-Right Semicircle" gesture.

sgSquare

Identifies a standard "Square" gesture.

sgTriangle

Identifies a standard "Triangular" gesture.

sgUp

Identifies a standard "Up" gesture.

sgUpDown

Identifies a standard "Up, then Down" gesture.

sgUpLeft

Identifies a standard "Up, then Left" gesture.

sgUpLeftLong

Identifies a standard "Up, then long Left" gesture.

sgUpRight

Identifies a standard "Up, then Right" gesture.

sgUpRightLong

Identifies a standard "Up, then long Right" gesture.

sgCheck

Identifies a standard "Checkmark-like" gesture.

sgChevronDown

Identifies a standard "Down-oriented Chevron" gesture.

sgChevronLeft

Identifies a standard "Left-oriented Chevron" gesture.

sgChevronRight

Identifies a standard "Right-oriented Chevron" gesture.

sgChevronUp

Identifies a standard "Upwards-oriented Chevron" gesture.

sgCircle

Identifies a standard "Circle" gesture.

sgCurlicue

Identifies a standard "Curlicue" gesture.


See Also