| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
#ifndef ALIGNMENT_CLOSEUP_VIEW_HH |
|---|
| 23 |
#define ALIGNMENT_CLOSEUP_VIEW_HH |
|---|
| 24 |
|
|---|
| 25 |
#include <FL/Fl_Double_Window.H> |
|---|
| 26 |
#include <FL/Fl_Pack.H> |
|---|
| 27 |
#include <FL/Fl_Button.H> |
|---|
| 28 |
|
|---|
| 29 |
#include "SimpleMappingContainer.hh" |
|---|
| 30 |
#include "MappingView.hh" |
|---|
| 31 |
#include "TextLabel.hh" |
|---|
| 32 |
#include "PairwiseMappingView.hh" |
|---|
| 33 |
#include "HorizontalSequenceView.hh" |
|---|
| 34 |
#include "SimpleFeaturesContainer.hh" |
|---|
| 35 |
#include "SimpleMappingContainer.hh" |
|---|
| 36 |
#include "SlavedHorizontalSequenceView.hh" |
|---|
| 37 |
#include "ClickableFeaturesSequenceView.hh" |
|---|
| 38 |
#include "AlignedSequencePairWidget.hh" |
|---|
| 39 |
|
|---|
| 40 |
class AlignmentCloseupView : public Fl_Double_Window { |
|---|
| 41 |
protected: |
|---|
| 42 |
gui::SimpleMappingContainer * hilite; |
|---|
| 43 |
gui::PairwiseMappingView * new_view; |
|---|
| 44 |
Fl_Pack * tiling; |
|---|
| 45 |
gui::HorizontalSequenceView * line_view_a; |
|---|
| 46 |
gui::ClickableFeaturesSequenceView * line_view_b; |
|---|
| 47 |
gui::TextLabel * aln_label; |
|---|
| 48 |
gui::AlignedSequencePairWidget * aln_view; |
|---|
| 49 |
Fl_Pack * aln_info_pack; |
|---|
| 50 |
Fl_Button * view_info; |
|---|
| 51 |
public: |
|---|
| 52 |
AlignmentCloseupView(const gui::SimpleMappingContainer * map, |
|---|
| 53 |
const gui::MappingView * view, |
|---|
| 54 |
unsigned int w, unsigned int h); |
|---|
| 55 |
|
|---|
| 56 |
void change_viewed_feature(const gui::Feature * f); |
|---|
| 57 |
|
|---|
| 58 |
~AlignmentCloseupView(); |
|---|
| 59 |
}; |
|---|
| 60 |
|
|---|
| 61 |
#endif |
|---|
| 62 |
|
|---|