Last change
on this file was
11126,
checked in by westram, 11 years ago
|
- reintegrates 'redev' into 'trunk':
- fixed key-bindings (mark, fold, …)
- improved several -commands (move, rotate, spread, length, width)
- fixed #68
- adds:
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.3 KB
|
Line | |
---|
1 | // =============================================================== // |
---|
2 | // // |
---|
3 | // File : pars_dtree.hxx // |
---|
4 | // Purpose : // |
---|
5 | // // |
---|
6 | // Institute of Microbiology (Technical University Munich) // |
---|
7 | // http://www.arb-home.de/ // |
---|
8 | // // |
---|
9 | // =============================================================== // |
---|
10 | |
---|
11 | #ifndef PARS_DTREE_HXX |
---|
12 | #define PARS_DTREE_HXX |
---|
13 | |
---|
14 | #ifndef TREEDISPLAY_HXX |
---|
15 | #include <TreeDisplay.hxx> |
---|
16 | #endif |
---|
17 | |
---|
18 | class arb_progress; |
---|
19 | class ArbParsimony; |
---|
20 | |
---|
21 | class AWT_graphic_parsimony : public AWT_graphic_tree, virtual Noncopyable { |
---|
22 | ArbParsimony& parsimony; |
---|
23 | |
---|
24 | AW_gc_manager init_devices(AW_window *, AW_device *, AWT_canvas *ntw) OVERRIDE; |
---|
25 | |
---|
26 | void show(AW_device *device) OVERRIDE; |
---|
27 | |
---|
28 | void handle_command(AW_device *device, AWT_graphic_event& event) OVERRIDE; |
---|
29 | |
---|
30 | public: |
---|
31 | AWT_graphic_parsimony(ArbParsimony& parsimony_, GBDATA *gb_main_, AD_map_viewer_cb map_viewer_cb_); |
---|
32 | }; |
---|
33 | |
---|
34 | void PARS_tree_init(AWT_graphic_tree *agt); |
---|
35 | |
---|
36 | #else |
---|
37 | #error pars_dtree.hxx included twice |
---|
38 | #endif // PARS_DTREE_HXX |
---|
Note: See
TracBrowser
for help on using the repository browser.