File: TDotPlot.h

package info (click to toggle)
gentle 1.9%2Bcvs20100605%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,172 kB
  • ctags: 6,217
  • sloc: cpp: 41,569; ansic: 3,978; sh: 1,420; makefile: 264
file content (80 lines) | stat: -rw-r--r-- 2,666 bytes parent folder | download | duplicates (7)
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
#ifndef _TDOTPLOT_H_
#define _TDOTPLOT_H_

#include "TGraph.h"
#include <wx/dcmemory.h>

class TDotPlot ;

/**	\class TDotPlotPanel
	\brief The dot plot drawing panel
*/
class TDotPlotPanel : public wxScrolledWindow
    {
    public :
    TDotPlotPanel ( wxWindow *_parent ) ;
    void Run () ;
    void Update () ;
    virtual void OnDraw(wxDC& dc) ; ///< Draw routine
    virtual void OnPaint ( wxPaintEvent &event ) ; ///< Paint event handler
    virtual void OnMouse(wxMouseEvent& event) ; ///< Mouse event handler
    virtual void OnOpenSequence1(wxCommandEvent& event) ; ///< Open sequence 1 event handler
    virtual void OnOpenSequence2(wxCommandEvent& event) ; ///< Open sequence 2 event handler
    virtual void OnCopy(wxCommandEvent& event) ; ///< Copy event handler
    virtual void OnSave(wxCommandEvent& event) ; ///< Save event handler
    
    private :
    void Recalc () ; ///< Recalculate dot-plot
    void Redraw ( wxDC &dc ) ; ///< Draw the visible section of the dot-plot from memory DC
    void Draw2Memory () ; ///< Generate the memory DC
    int CheckWindow ( int x , int y ) ; ///< check for valid scanning window in sequences
    
    TDotPlot *parent ;
    MyChild *seq1 , *seq2 ;
    long window , mismatch ;
    vector <char> data ;
    int len1 , len2 ;
    int x1 , y1 , offx , offy ;
    wxPoint last_mouse_logical_position ;
    wxMemoryDC memdc ;
    wxBitmap membmp ;

    DECLARE_EVENT_TABLE()
    } ;

/**	\class TDotPlot
	\brief The dot plot drawing module
*/
class TDotPlot : public ChildBase
    {
    public :
    TDotPlot(wxWindow *parent, const wxString& title) ; ///< Constructor
    ~TDotPlot () ; ///< Destructor
        
    void initme () ; ///< Initialization
    virtual wxString getName () ; ///< Returns the module name

    virtual void OnZoom(wxScrollEvent& event); ///< Zoom event handler
    virtual void OnDummy(wxCommandEvent& WXUNUSED(event)){}; ///< Dummy event handler
 	virtual void OnCharHook(wxKeyEvent& event) ; ///< Key event handler

    virtual void OnSelectSeq1(wxCommandEvent& event) ; ///< event handler
    virtual void OnSelectSeq2(wxCommandEvent& event) ; ///< event handler
    virtual void OnSelectWindowSize(wxCommandEvent& event) ; ///< event handler
    virtual void OnSelectMismatches(wxCommandEvent& event) ; ///< event handler
    

    private :
    friend class TDotPlotPanel ;
    void update_sequence_lists () ;
    
    TDotPlotPanel *panel ;
    wxSlider *zoom ;
    wxChoice *seq1 , *seq2 , *window_size , *mismatch_limit ;
    wxCheckBox *open_seq1 ;

    DECLARE_EVENT_TABLE()
    } ;


#endif