calvados/donefunc_file_viewer.c
Leeland Heins fbf7281338 Update to current
Added a significant amount more of the UI code
2017-04-11 18:22:23 -05:00

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));
}