2012-07-13 15:39:16 +02:00
|
|
|
/* See LICENSE file for license and copyright information */
|
|
|
|
|
|
|
|
#ifndef SYNCTEX_H
|
|
|
|
#define SYNCTEX_H
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2014-01-14 15:05:09 +01:00
|
|
|
typedef struct synctex_page_rect_s {
|
|
|
|
int page;
|
|
|
|
zathura_rectangle_t rect;
|
|
|
|
} synctex_page_rect_t;
|
|
|
|
|
2012-07-13 15:39:16 +02:00
|
|
|
void synctex_edit(zathura_t* zathura, zathura_page_t* page, int x, int y);
|
2014-01-14 15:05:09 +01:00
|
|
|
girara_list_t* synctex_rectangles_from_position(const char* filename,
|
2014-01-17 16:31:01 +01:00
|
|
|
const char* position, unsigned int* page, girara_list_t** secondary_rects);
|
2012-07-13 15:39:16 +02:00
|
|
|
|
|
|
|
#endif
|