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;
|
|
|
|
|
2014-07-26 16:14:29 +02:00
|
|
|
void synctex_edit(const char* editor, 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-05-30 17:07:07 +02:00
|
|
|
const char* input_file, int line, int column, unsigned int* page,
|
|
|
|
girara_list_t** secondary_rects);
|
2012-07-13 15:39:16 +02:00
|
|
|
|
|
|
|
#endif
|