~vcs-imports/xdrawchem/1.9.9

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
#ifndef TOOL_IR_H
#define TOOL_IR_H

#include <qdialog.h>
#include <qptrlist.h>
#include <qpixmap.h>
#include <qtextedit.h>

#include "molecule.h"
#include "tooldialog.h"
#include "ngw.h"

using namespace OpenBabel;

class Tool_IR_Dialog:public ToolDialog {
  Q_OBJECT
    public:
  Tool_IR_Dialog(QWidget *parent = 0, QString name = "");
  void process();
 private:
  NewGraphWidget *ngw;
  QTextEdit *peaktext;
};

#endif