File: unrooted.h

package info (click to toggle)
seaview 1%3A4.6.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,040 kB
  • ctags: 3,797
  • sloc: cpp: 27,746; ansic: 13,974; xml: 184; makefile: 30
file content (91 lines) | stat: -rw-r--r-- 1,759 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <FL/Fl_Widget.H>
#include <FL/Fl_Scrollbar.H>
#include <math.h>
#ifndef M_PI
#define M_PI           3.14159265358979323846  /* pi */
#endif
#ifndef M_PI_2
#define	M_PI_2		(M_PI/2)
#endif
#ifndef FALSE
#define FALSE 0
#define TRUE (!FALSE)
#endif

typedef enum { NO_HIT, LEFT_HIT, RIGHT_HIT, TOP_HIT, BOTTOM_HIT } hit;

typedef struct {
	int x, y;
} point;


typedef struct _cp_point {
	double x, y, r, angle;
} cp_point;


typedef struct _unrooted_branch {
	cp_point debut, fin;
	int color;
	char *nom;
  int rank;
} unrooted_branch;


typedef struct { /* une branche definie par ses deux extremites */
	struct noeud *bouta;
	struct noeud *boutb;
} branche_noeud;


typedef struct _bignoeud {
	struct _bignoeud *v1, *v2, *v3;
	double l1, l2, l3;
	cp_point position;
	char *nom;
  int rank;
} bignoeud;



 typedef struct {
	unsigned int left : 1;
	unsigned int right : 1;
	unsigned int top : 1;
	unsigned int bottom : 1;
} hits_field; 


class unrooted_panel : public Fl_Widget {
public:
	void draw(void);
	int handle(int);
	unrooted_panel(int x,int y,int w,int h) :
	Fl_Widget(x,y,w,h,NULL) {
		;
	}
};


typedef struct _FD_unrooted {
	unrooted_panel *unrooted_plot;
	Fl_Scrollbar *vert_scroller, *hor_scroller;
	int notu;
	int rooted;
	int x, y, w, h; //dimensions of plot
	int x_offset, y_offset; //offset when zoomed plot is scrolled around
	int previous_w, previous_h;
	int current_font;
	int font_size;
	int comp_phys_bounds;
	struct noeud **tabtax;
	struct noeud *racine;
	double root_br_l;
	int has_br_length;
	unrooted_branch *branches;
	branche_noeud *branche_noeuds;
	int totbranches;
	double log_min_x, log_min_y, log_max_x, log_max_y, mini_br_length;
	int phys_min_x, phys_min_y, phys_max_x, phys_max_y;
	float zoomvalue;
} FD_unrooted;