File: SearchForString.h

package info (click to toggle)
clustalx 2.1%2Blgpl-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,336 kB
  • sloc: cpp: 40,050; sh: 163; xml: 102; makefile: 11
file content (41 lines) | stat: -rw-r--r-- 678 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
/**
 * Changes: 
 * 12-4-07, Mark Larkin, Removed destructor. No need to delete QObjects. 
 */
#ifndef SEARCHFORSTRING_H
#define SEARCHFORSTRING_H

#include <QDialog>
class QPushButton;
class QGroupBox;
class QLineEdit;
class QVBoxLayout;

class SearchForString : public QDialog
{
    Q_OBJECT
public:
    SearchForString();
    QString getSearchString();
signals:
    void searchFromStartSignal();
    void searchAgainSignal();    
    
protected:


private slots:
    void cancel();
    
private: 
    
    QVBoxLayout* mainLayout;
    
    QPushButton* searchFromStart;
    QPushButton* searchAgain;
    QPushButton* closeButton;
    
    QLineEdit* searchString;
};

#endif