[go: up one dir, main page]

File: matpt.h

package info (click to toggle)
seaview 1%3A4.3.3-3
  • links: PTS, VCS
  • area: non-free
  • in suites: wheezy
  • size: 1,480 kB
  • sloc: cpp: 25,034; ansic: 7,442; xml: 135; makefile: 55
file content (41 lines) | stat: -rw-r--r-- 841 bytes parent folder | download | duplicates (5)
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
39
40
41
#ifndef FD_matpt_h_
#define FD_matpt_h_
#include "seaview.h"

typedef struct {
	Fl_Window *form;
	Fl_Widget *mat_panel, *ident_type_box, *win_size_type_box, 
		*compute_butt, *x_slider, *y_slider, *region_box, 
		*region_slider, *align_button, *choice_ref_seq,
		*interrupt_butt;
	int phys_width;
	int view_x, view_y;
	int view_size;
	int longmax;
	int seqlong1, seqlong2;
	int maxseqlength;
	char *seq1, *seq2;
	char *seqname1, *seqname2;
	char *plotname;
	int margin;
	int hitx, hity;
	int region_size;
	int fenetre, identites;
	char regionboxtext[300];
	char *title;
	int totsegments;
	int need_compute;
	int modif_but_not_saved;
	double factor, kx, ky;
	int interrupted;
	int rect_only;
	gap_site *gap_sites;
	int tot_gap_sites;
	void *seaview_data;
} FD_matpt;

typedef struct {
	int x, y, w, h;
	} rectangle;

#endif /* FD_matpt_h_ */