aboutsummaryrefslogtreecommitdiff
path: root/tsalis/include/printer.h
blob: 4430e88963e2955f3c7911a7535256d571c3fb71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef TSALIS_PRINTER_H
#define TSALIS_PRINTER_H

extern const int PROC_ELEMENT_COUNT;

extern int   g_currentPage;
extern sword g_selectedProcess;
extern sbool g_processShowGenes;
extern sword g_processVertScroll;
extern sword g_processDataScroll;
extern sword g_processGeneScroll;
extern sword g_worldPos;
extern sword g_worldZoom;

sbool tsp_check            (void);
void  tsp_init             (void);
void  tsp_quit             (void);
void  tsp_onResize         (void);
void  tsp_prevPage         (void);
void  tsp_nextPage         (void);
void  tsp_scrollUp         (void);
void  tsp_scrollDown       (void);
void  tsp_fastScrollUp     (void);
void  tsp_fastScrollDown   (void);
void  tsp_scrollLeft       (void);
void  tsp_scrollRight      (void);
void  tsp_scrollToTop      (void);
void  tsp_scrollToLeft     (void);
void  tsp_zoomIn           (void);
void  tsp_zoomOut          (void);
void  tsp_prevOrganism     (void);
void  tsp_nextOrganism     (void);
void  tsp_gotoSelectedProc (void);
void  tsp_selectProcess    (sword proc);
void  tsp_moveTo           (sword loc);
void  tsp_printData        (void);

#endif