![]() |
![]() |
![]() |
GNOME Video Arcade Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
void gva_play_back_init (void
); void gva_play_back_show (const gchar *inpname
); void gva_play_back_clicked_cb (GtkButton *button
); void gva_play_back_close_clicked_cb (GtkWindow *window
,GtkButton *button
); void gva_play_back_delete_clicked_cb (GtkTreeView *view
,GtkButton *button
); void gva_play_back_row_activated_cb (GtkTreeView *view
,GtkTreePath *path
,GtkTreeViewColumn *column
); void gva_play_back_window_hide_cb (GtkWindow *window
);
void gva_play_back_init (void
);
Initializes the Recorded Games window.
This function should be called once when the application starts.
void gva_play_back_show (const gchar *inpname
);
Refreshes the contents of the Recorded Games window, attempts to
select the row corresponding to inpname
(if inpname
is not NULL
),
and finally shows the window.
|
an input filename or NULL
|
void gva_play_back_clicked_cb (GtkButton *button
);
Handler for "clicked" signals to the "Play Back" button.
Activates the GVA_ACTION_PLAY_BACK action.
|
the "Play Back" button |
void gva_play_back_close_clicked_cb (GtkWindow *window
,GtkButton *button
);
Handler for "clicked" signals to the "Close" button.
Hides window
.
|
the "Recorded Games" window |
|
the "Close" button |
void gva_play_back_delete_clicked_cb (GtkTreeView *view
,GtkButton *button
);
Handler for "clicked" signals to the "Delete" button.
Displays a confirmation dialog, then deletes the MAME input files
corresponding to the selected rows in view
.
|
the "Recorded Games" tree view |
|
the "Delete" button |
void gva_play_back_row_activated_cb (GtkTreeView *view
,GtkTreePath *path
,GtkTreeViewColumn *column
);
Handler for "row-activated" signals to the "Recorded Games" tree view.
Activates the GVA_ACTION_PLAY_BACK action.
|
the "Recorded Games" tree view |
|
the GtkTreePath for the activated row |
|
the GtkTreeViewColumn in which the activation occurred |