mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-09-09 15:54:43 +00:00
fbf7281338
Added a significant amount more of the UI code
24 lines
408 B
C
24 lines
408 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* acceptfunc_add_files()
|
|
*
|
|
* Accept Function for add files
|
|
*
|
|
* Show that the "Accept" button was pressed
|
|
*
|
|
*/
|
|
void acceptfunc_add_files(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("Add function goes here.\n");
|
|
|
|
/* --- Close it. --- */
|
|
gtk_widget_destroy(GTK_WIDGET(data));
|
|
}
|
|
|