Interface

AgsCountable

Description

interface Ags.Countable : GObject.Object
No description available.

Prerequisite

In order to implement Countable, your type must inherit fromGObject.

Instance methods

ags_countable_get_midi_counter

Retrieve current position of MIDI.

since: 3.0.0

ags_countable_get_notation_counter

Retrieve current position of notation.

since: 3.0.0

ags_countable_get_sequencer_counter

Retrieve current position of sequencer.

since: 3.0.0

ags_countable_get_wave_counter

Retrieve current position of wave.

since: 3.0.0

Interface structure

struct AgsCountableInterface {
  GTypeInterface ginterface;
  guint64 (* get_sequencer_counter) (
    AgsCountable* countable
  );
  guint64 (* get_notation_counter) (
    AgsCountable* countable
  );
  guint64 (* get_wave_counter) (
    AgsCountable* countable
  );
  guint64 (* get_midi_counter) (
    AgsCountable* countable
  );
  
}
No description available.
Interface members
ginterface
GTypeInterface
 No description available.
get_sequencer_counter
guint64 (* get_sequencer_counter) (
    AgsCountable* countable
  )
 No description available.
get_notation_counter
guint64 (* get_notation_counter) (
    AgsCountable* countable
  )
 No description available.
get_wave_counter
guint64 (* get_wave_counter) (
    AgsCountable* countable
  )
 No description available.
get_midi_counter
guint64 (* get_midi_counter) (
    AgsCountable* countable
  )
 No description available.

Virtual methods

Ags.Countable.get_midi_counter

Retrieve current position of MIDI.

since: 3.0.0

Ags.Countable.get_notation_counter

Retrieve current position of notation.

since: 3.0.0

Ags.Countable.get_sequencer_counter

Retrieve current position of sequencer.

since: 3.0.0

Ags.Countable.get_wave_counter

Retrieve current position of wave.

since: 3.0.0