File: SeqNameWidget.h

package info (click to toggle)
clustalx 2.1%2Blgpl-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,320 kB
  • sloc: cpp: 40,050; sh: 163; xml: 102; makefile: 16
file content (114 lines) | stat: -rw-r--r-- 3,790 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
 * @author Mark Larkin, Conway Institute, UCD. mark.larkin@ucd.ie
 * 
 * Changes:
 *
 * 20-02-07,Nigel Brown(EMBL): made getExtraRowNum() a const member so it can
 * be called inside sizeHint(); added eventFilter() to catch containing
 * viewport resize events; added single setMaxNameLength() member to compute
 * maximum typeset text width; added computeSize() member to determine final
 * widget size from text size or containing viewport size; added
 * horizontalMargin member: Widget now fills viewport and resizes neatly.
 *
 * 11-04-07,Nigel Brown(EMBL): Added new member 'ctrlPressed'.
 *
 * 12-4-07, Mark Larkin, Removed destructor. No need to delete QObjects. 
 *
 * 25-04-07,Nigel Brown(EMBL): removed 'shiftPressed', 'ctrlPressed' members
 * and the keyPressEvent() and keyReleaseEvent() handlers. These are now
 * handled by the external KeyController class.
 *
 * 09-05-07,Nigel Brown(EMBL): added 'mousePressed'. Renamed
 * rowSelected' to 'firstRow' and added 'secondRow'. 'scrollArea' and
 * registerScrollArea() allowing the instance to know its own
 * containing QScrollArea (This is not the same as parentWidget()).
 *
 * 27-06-07,Nigel Brown(EMBL): For screen layout balancing: renamed
 * numSequencesSoFar as numSequences, added numSequences2, which records the
 * number of sequences in the *other* profile window; Added setNumSequences2().
 ****************************************************************************/

#ifndef SEQNAMEWIDGET_H
#define SEQNAMEWIDGET_H

#include <QFont>
#include <QPoint>
#include <QSize>
#include <QString>
#include <QWidget>
#include <QVector>
#include <vector>
#include "clustalW/alignment/Alignment.h"
class QMouseEvent;
class QPaintEvent;
class QMessageBox;
class QScrollArea; //- nige

/**
 * This class is used to display the list of the sequence names. It has funcitons 
 * that deal with the selection of multiple names at a time.
 */
class SeqNameWidget : public QWidget
{
    Q_OBJECT

public:
    SeqNameWidget(int boxSize, QFont* font, QWidget *parent = 0);
    void setNumOfSequences(int num);
    void addSequenceName(QString *seq);
    void changeBoxSizeAndFontSize(int boxSize, QFont* fontPtr);
    void updateSizeHint();
    void setNames(clustalw::Alignment* align);
    void updateDisplay(int fSeq, int lSeq, int nhead, QString ssName);
    void clearSequenceSelection();
    void selectAllSequences();
    int getNumberOfSeqsSelected();
    const std::vector<int>* getSelectedRows(){return &selectedRows;};
    int getExtraRowNum() const; //-nige
    QString getNameSSHeader(){return secStructName;}
    //bool widgetHasFocus 
    void registerScrollArea(QScrollArea *s) { scrollArea = s; }; //- nige
    void setNumSequences2(int count); //nige
    
public slots:

signals:

protected:
    void mousePressEvent( QMouseEvent *event);  
    void mouseMoveEvent(QMouseEvent *event);
    void mouseReleaseEvent(QMouseEvent *event);     
    void paintEvent( QPaintEvent *event);
    int setMaxNameLength();
    bool eventFilter(QObject *o, QEvent *e); //- nige
    QSize computeSize() const; //- nige

private:
    int firstSeq, lastSeq;
    int nHead;
    QFont displayFont;
    int numRowsShowing;
    bool mousePressed; //- nige
    int firstRow; //- nige
    int secondRow; //- nige
    QSize sizeHint() const;
    int boxSize;
    int pixelsize;
    int alignLength;
    int numSequences;
    int numSequences2;
    int offSetFromTop;
    int horizontalMargin;  //margin for identifiers, nige
    clustalw::Alignment* alignment;
    QColor* selectedColor;
    QColor *backGroundGrey;
    std::vector<int> selectedRows; 
    int maxNameLength;
    bool isSet;
    bool showNames;
    QString secStructName;
    QSize viewSize; //containing viewport size, nige
    QScrollArea *scrollArea; //-nige
};

#endif