mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-12-03 00:51:48 +00:00
fbf7281338
Added a significant amount more of the UI code
27 lines
486 B
C
27 lines
486 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* help_func_create_disk_image()
|
|
*
|
|
* Help Function for create disk image
|
|
*
|
|
* Show that the "Help" button was pressed
|
|
*
|
|
*/
|
|
void help_func_create_disk_image(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("Help function for create disk images goes here.\n");
|
|
|
|
/* --- Close it. --- */
|
|
gtk_widget_destroy(GTK_WIDGET(data));
|
|
|
|
/* Now open the help dialog */
|
|
/*FIXME*/
|
|
}
|
|
|