zathura/callbacks.h

35 lines
809 B
C
Raw Normal View History

2010-11-10 20:31:15 +01:00
/* See LICENSE file for license and copyright information */
#ifndef CALLBACKS_H
#define CALLBACKS_H
2010-11-12 13:48:18 +01:00
#include <gtk/gtk.h>
2010-11-13 12:40:48 +01:00
#include <girara.h>
2010-11-12 13:48:18 +01:00
2011-02-01 15:48:16 +01:00
/**
* Quits the current zathura session
*
* @param widget The gtk window of zathura
* @param data NULL
* @return TRUE
*/
2010-11-12 13:48:18 +01:00
gboolean cb_destroy(GtkWidget* widget, gpointer data);
2011-02-01 15:48:16 +01:00
/**
* This function gets called when the buffer of girara changes
*
* @param session The girara session
*/
2010-11-13 12:40:48 +01:00
void buffer_changed(girara_session_t* session);
2011-02-01 15:48:16 +01:00
/**
* This function gets called when the the value of the vertical scrollbars
* changes (e.g.: by scrolling, moving to another page)
*
* @param adjustment The vadjustment of the page view
* @param data NULL
*/
2010-12-29 11:46:13 +01:00
void cb_view_vadjustment_value_changed(GtkAdjustment *adjustment, gpointer data);
2010-11-12 13:48:18 +01:00
#endif // CALLBACKS_H