Added agglwindow

This commit is contained in:
arcan1s
2013-08-09 19:45:42 +04:00
parent f7bdd89940
commit abf7bce7df
22 changed files with 4158 additions and 18 deletions

41
mathmech/agglwindow.h Normal file
View File

@ -0,0 +1,41 @@
#ifndef AGGLWINDOW_H
#define AGGLWINDOW_H
#include <QMainWindow>
class ErrorWindow;
namespace Ui {
class AgglWindow;
}
class AgglWindow : public QMainWindow
{
Q_OBJECT
public:
explicit AgglWindow(QWidget *parent = 0, QString inputfile = "");
~AgglWindow();
private slots:
// events
void on_agl_pushButton_input_clicked();
void on_pushButton_clicked();
void on_agl_comboBox_currentIndexChanged(int index);
void on_agl_listWidget_itemActivated();
void on_agl_pushButton_output_clicked();
void on_agl_pushButton_clear_clicked();
void on_agl_pushButton_create_clicked();
private:
Ui::AgglWindow *ui;
ErrorWindow *errorwin;
QStringList inp_file;
QStringList aggl;
QStringList aggl_mol;
// ESC pressed event
void keyPressEvent(QKeyEvent *pressedKey);
};
#endif // AGGLWINDOW_H