UltraScan III
us_rasmol_control.h
Go to the documentation of this file.
1 #ifndef US_RASMOL_CTRL_H
2 #define US_RASMOL_CTRL_H
3 
4 #include <QtGui>
5 
6 #include "us_extern.h"
7 #include "us_widgets.h"
8 #include "us_window_message.h"
9 #include "us_help.h"
10 #include "us_editor.h"
11 #include "us_plot.h"
12 
13 #define DbgLv(a) if(dbg_level>=a)qDebug()
14 
16 {
17  Q_OBJECT
18 
19  public:
21 
22  private:
24 
25  QComboBox* cb_intname;
26  QComboBox* cb_commcmd;
27 
28  QTextEdit* te_status;
29 
30  QLineEdit* le_sendcmd;
31 
32  QPushButton* pb_listints;
33  QPushButton* pb_close;
34  QPushButton* pb_sendcmd;
35 
36  int dbg_level;
37  private slots:
38  void list_interps ( void );
39  void send_command ( void );
40  void choose_command ( const QString& );
41 };
42 #endif