mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-12-09 08:49:16 +00:00
fbf7281338
Added a significant amount more of the UI code
27 lines
465 B
C
27 lines
465 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* findfunc_file_viewer()
|
|
*
|
|
* Find Function for file viewer image
|
|
*
|
|
* Show that the "Find" button was pressed
|
|
*
|
|
*/
|
|
void findfunc_file_viewer(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("Find function for file viewer goes here.\n");
|
|
|
|
/* --- Close it. --- */
|
|
gtk_widget_destroy(GTK_WIDGET(data));
|
|
|
|
/* Now open the find dialog */
|
|
/*FIXME*/
|
|
}
|
|
|