| Top |
Functions
|
|
ags_piano_set_base_note () |
|
|
ags_piano_get_base_note () |
|
|
ags_piano_set_base_key_code () |
|
|
ags_piano_get_base_key_code () |
|
|
ags_piano_set_key_width () |
|
|
ags_piano_get_key_width () |
|
|
ags_piano_set_key_height () |
|
|
ags_piano_get_key_height () |
|
|
ags_piano_set_key_count () |
|
|
ags_piano_get_key_count () |
|
|
ags_piano_key_code_to_note () |
|
|
ags_piano_key_pressed () |
|
|
ags_piano_key_released () |
|
|
ags_piano_key_clicked () |
|
|
ags_piano_get_active_key () |
| AgsPiano * | ags_piano_new () |
| #define | AGS_IS_PIANO() |
| #define | AGS_IS_PIANO_CLASS() |
| #define | AGS_PIANO() |
| #define | AGS_PIANO_CLASS() |
| #define | AGS_PIANO_GET_CLASS() |
|
|
ags_piano_get_type () |
Properties
| base-key-code | Read / Write | |
|
|
base-note | Read / Write |
| key-count | Read / Write | |
| key-height | Read / Write | |
| key-width | Read / Write |
Types and Values
| #define | AGS_PIANO_DEFAULT_BASE_NOTE |
| #define | AGS_PIANO_DEFAULT_BASE_KEY_CODE |
| #define | AGS_PIANO_DEFAULT_KEY_WIDTH |
| #define | AGS_PIANO_DEFAULT_KEY_HEIGHT |
| #define | AGS_PIANO_DEFAULT_KEY_COUNT |
| enum | AgsPianoFlags |
| enum | AgsPianoButtonState |
| enum | AgsPianoLayout |
| enum | AgsPianoAction |
| enum | AgsPianoOctave |
| #define | AGS_TYPE_PIANO |
| struct | AgsPiano |
| struct | AgsPianoClass |
Functions
ags_piano_set_base_note ()
void ags_piano_set_base_note (AgsPiano *piano,);gchar *base_note
Set base note of piano
.
Since:
ags_piano_get_base_note ()
gchar * ags_piano_get_base_note (AgsPiano *piano);
Get base note of piano
.
Since:
ags_piano_set_base_key_code ()
void ags_piano_set_base_key_code (AgsPiano *piano,);gint base_key_code
Set base key code of piano
.
Since:
ags_piano_get_base_key_code ()
gint ags_piano_get_base_key_code (AgsPiano *piano);
Get base key code of piano
.
Since:
ags_piano_set_key_width ()
void ags_piano_set_key_width (AgsPiano *piano,);guint key_width
Set key width of piano
.
Since:
ags_piano_get_key_width ()
guint ags_piano_get_key_width (AgsPiano *piano);
Get key width of piano
.
Since:
ags_piano_set_key_height ()
void ags_piano_set_key_height (AgsPiano *piano,);guint key_height
Set key width of piano
.
Since:
ags_piano_get_key_height ()
guint ags_piano_get_key_height (AgsPiano *piano);
Get key height of piano
.
Since:
ags_piano_set_key_count ()
void ags_piano_set_key_count (AgsPiano *piano,);guint key_count
Set key count of piano
.
Since:
ags_piano_get_key_count ()
guint ags_piano_get_key_count (AgsPiano *piano);
Get key count of piano
.
Since:
ags_piano_key_code_to_note ()
gchar * ags_piano_key_code_to_note ();gint key_code
Get note from key code.
Since:
ags_piano_key_pressed ()
void ags_piano_key_pressed (AgsPiano *piano,,gchar *note);gint key_code
Emits ::key-pressed event.
Since:
ags_piano_key_released ()
void ags_piano_key_released (AgsPiano *piano,,gchar *note);gint key_code
Emits ::key-released event.
Since:
ags_piano_key_clicked ()
void ags_piano_key_clicked (AgsPiano *piano,,gchar *note);gint key_code
Emits ::key-clicked event.
Since:
ags_piano_get_active_key ()
gint * ags_piano_get_active_key (AgsPiano *piano,);guint *active_key_count
Get active keys.
Since:
AGS_IS_PIANO_CLASS()
#define AGS_IS_PIANO_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE((class), AGS_TYPE_PIANO))
AGS_PIANO_CLASS()
#define AGS_PIANO_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_PIANO, AgsPianoClass))
AGS_PIANO_GET_CLASS()
#define AGS_PIANO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_PIANO, AgsPianoClass))
Property Details
The “base-key-code” property
“base-key-code”guint
The base key code.
Owner: AgsPiano
Flags: Read / Write
Default value: 0
Since:
The “base-note” property
“base-note”gchar *
The base note to use as lower.
Owner: AgsPiano
Flags: Read / Write
Default value: "C,,"
Since:
The “key-count” property
“key-count”guint
The count of keys to be drawn.
Owner: AgsPiano
Flags: Read / Write
Default value: 128
Since:
The “key-height” property
“key-height”guint
The key height to use for drawing a key.
Owner: AgsPiano
Flags: Read / Write
Default value: 14
Since:
Signal Details
The “key-clicked” signal
void user_function (AgsPiano *piano,gchar *note,gint key_code,gpointer user_data)
The ::key-clicked signal notifies about key clicked.
Parameters
piano |
the AgsPiano |
|
note |
the note as string |
|
key_code |
the numeric representation of the note |
|
user_data |
user data set when the signal handler was connected. |
Flags:
Since:
The “key-pressed” signal
void user_function (AgsPiano *piano,gchar *note,gint key_code,gpointer user_data)
The ::key-pressed signal notifies about key pressed.
Parameters
piano |
the AgsPiano |
|
note |
the note as string |
|
key_code |
the numeric representation of the note |
|
user_data |
user data set when the signal handler was connected. |
Flags:
Since:
The “key-released” signal
void user_function (AgsPiano *piano,gchar *note,gint key_code,gpointer user_data)
The ::key-released signal notifies about key released.
Parameters
piano |
the AgsPiano |
|
note |
the note as string |
|
key_code |
the numeric representation of the note |
|
user_data |
user data set when the signal handler was connected. |
Flags:
Since: