mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-12-12 14:30:24 +00:00
fbf7281338
Added a significant amount more of the UI code
24 lines
411 B
C
24 lines
411 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* donefunc_file_viewer()
|
|
*
|
|
* Done Function for file viewer
|
|
*
|
|
* Show that the "Done" button was pressed
|
|
*
|
|
*/
|
|
void donefunc_file_viewer(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("File viewer done function goes here.\n");
|
|
|
|
/* --- Close it. --- */
|
|
gtk_widget_destroy(GTK_WIDGET(data));
|
|
}
|
|
|