File: main.h

package info (click to toggle)
picview 0.8-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 604 kB
  • ctags: 98
  • sloc: ansic: 1,496; sh: 175; makefile: 75
file content (21 lines) | stat: -rw-r--r-- 1,074 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "picview.h"

void fullscreen_toggle(GtkWidget *widget, gpointer data);
void preview_size_toggle(GtkWidget *widget, gpointer data);
void slideshow_callback(GtkWidget *widget, gpointer data);
void about_callback(GtkWidget *widget, gpointer data);
void create_menus(picwindow *pwindow);
void close_application( GtkWidget *widget, GdkEvent *event, gpointer data );
void button_clicked( GtkWidget *widget, gpointer data );
void dir_button_clicked( GtkWidget *widget, gpointer data );
void create_table(picwindow *pwindow);
void resize_table(picwindow *pwindow);
void drop_callback(GtkWidget *widget, GdkDragContext *context,
	gint x, gint y, GtkSelectionData *selection_data,
	guint info, guint time, gpointer data);
void resize_cb(GtkWidget *widget, GdkEventConfigure *event);
GtkWidget* create_dir_button(gchar *path, gchar *filename, gboolean large);
GtkWidget* create_preview_button(gchar *path, gchar *filename, gboolean large);
picwindow *create_window(gchar *path);
GList *load_dir(gchar *path, gboolean get_dirs);
gint valcomp(gconstpointer a, gconstpointer b);