File: TSequencingAssistantDialog.h

package info (click to toggle)
gentle 1.9%2Bcvs20100605%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,512 kB
  • sloc: cpp: 41,571; ansic: 3,978; sh: 1,420; makefile: 294
file content (34 lines) | stat: -rw-r--r-- 768 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
#ifndef _TSEQUENCING_ASSISTANT_DIALOG_H_
#define _TSEQUENCING_ASSISTANT_DIALOG_H_

#include "main.h"

class TStorage ;
class MyFrame ;
class MyChild ;
class TRestrictionEnzyme ;
class ChildBase ;
class TPrimer ;
class TPrimerDesign ;

class TSequencingAssistantDialog : public wxDialog
	{
	public :
	TSequencingAssistantDialog (wxWindow *parent , const wxString& title ) ; ///< Constructor
	virtual ~TSequencingAssistantDialog () ;
	void fix_rev_compl ( int sel = -2 ) ;
	
	wxChoice *sequence , *abi1 , *abi2 ;
    vector <ChildBase*> dna , abi ;
	
	private :
	void OnCheckOK ( wxCommandEvent &ev ) ;
    void OnCharHook(wxKeyEvent& event) ; ///< Key event handler
    
    wxButton *ok ;
    
    DECLARE_EVENT_TABLE()
	} ;


#endif