AgsLedArray

AgsLedArray — A led array widget

Stability Level

Stable, unless otherwise indicated

Functions

Properties

guint led-count Read / Write
guint segment-height Read / Write
guint segment-width Read / Write

Types and Values

Object Hierarchy

    GObject
    ╰── GInitiallyUnowned
        ╰── GtkWidget
            ╰── GtkBox
                ╰── AgsLedArray

Implemented Interfaces

AgsLedArray implements GtkAccessible, GtkBuildable, GtkConstraintTarget and GtkOrientable.

Includes

#include <ags/widget/ags_led_array.h>

Description

AgsLedArray is a widget representing an array of leds.

Functions

ags_led_array_get_led_count ()

guint
ags_led_array_get_led_count (AgsLedArray *led_array);

Get led count of led_array .

Parameters

led_array

the AgsLedArray

 

Returns

the led count

Since: 3.2.0


ags_led_array_set_led_count ()

void
ags_led_array_set_led_count (AgsLedArray *led_array,
                             guint led_count);

Set led count of led_array .

Parameters

led_array

the AgsLedArray

 

led_count

the led count

 

Since: 3.0.0


ags_led_array_unset_all ()

void
ags_led_array_unset_all (AgsLedArray *led_array);

Unset all led active.

Parameters

led_array

the AgsLedArray

 

Since: 3.0.0


ags_led_array_set_nth ()

void
ags_led_array_set_nth (AgsLedArray *led_array,
                       guint nth);

Set nth led active.

Parameters

led_array

the AgsLedArray

 

nth

the nth led

 

Since: 3.0.0


ags_led_array_new ()

AgsLedArray *
ags_led_array_new (GtkOrientation orientation,
                   guint segment_width,
                   guint segment_height,
                   guint led_count);

Create a new instance of AgsLedArray.

Parameters

segment_width

the width of the segment

 

segment_height

the height of the segment

 

Returns

the new AgsLedArray

Since: 3.0.0


AGS_IS_LED_ARRAY()

#define AGS_IS_LED_ARRAY(obj)             (G_TYPE_CHECK_INSTANCE_TYPE((obj), AGS_TYPE_LED_ARRAY))

AGS_IS_LED_ARRAY_CLASS()

#define AGS_IS_LED_ARRAY_CLASS(class)     (G_TYPE_CHECK_CLASS_TYPE((class), AGS_TYPE_LED_ARRAY))

AGS_LED_ARRAY()

#define AGS_LED_ARRAY(obj)                (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_LED_ARRAY, AgsLedArray))

AGS_LED_ARRAY_CLASS()

#define AGS_LED_ARRAY_CLASS(class)        (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_LED_ARRAY, AgsLedArrayClass))

AGS_LED_ARRAY_GET_CLASS()

#define AGS_LED_ARRAY_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_LED_ARRAY, AgsLedArrayClass))

ags_led_array_get_type ()

GType
ags_led_array_get_type (void);

Types and Values

AGS_TYPE_LED_ARRAY

#define AGS_TYPE_LED_ARRAY                (ags_led_array_get_type())

struct AgsLedArray

struct AgsLedArray;

struct AgsLedArrayClass

struct AgsLedArrayClass {
  GtkBoxClass box;
};

Property Details

The “led-count” property

  “led-count”                guint

The count of leds available.

Owner: AgsLedArray

Flags: Read / Write

Default value: 0

Since: 3.0.0


The “segment-height” property

  “segment-height”           guint

The segment height of one led.

Owner: AgsLedArray

Flags: Read / Write

Default value: 10

Since: 4.0.0


The “segment-width” property

  “segment-width”            guint

The segment width of one led.

Owner: AgsLedArray

Flags: Read / Write

Default value: 10

Since: 4.0.0