File: TreeFormatOptions.h

package info (click to toggle)
clustalx 2.1%2Blgpl-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,332 kB
  • ctags: 3,424
  • sloc: cpp: 40,050; sh: 163; xml: 102; makefile: 11
file content (44 lines) | stat: -rw-r--r-- 722 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
#ifndef TREEFORMATOPTIONS_H
#define TREEFORMATOPTIONS_H

#include <QDialog>
class QPushButton;
class QGroupBox;
class QComboBox;
class QLabel;
class QCheckBox;

class TreeFormatOptions : public QDialog
{
    Q_OBJECT
public:
    TreeFormatOptions();

protected:


private slots:
    void accept();

private:
    void setUpLayout();
    void setUpRadioButtons(); 
    void setUpOtherParams();   
    
    QPushButton* okButton;
    QGroupBox* fileGridBox;
    QGroupBox* otherParams;
    QGroupBox* verticalBox;
    
    QCheckBox* clustal;
    QCheckBox* percIdentMat;
    QCheckBox* phylip;
    QCheckBox* phylipDistMat;  
    QCheckBox* nexus; 
    
    QComboBox* bootStrap;
    
    QLabel* bootStrapLabel;
};

#endif