mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-15 06:45:50 +00:00
Added agglwindow
This commit is contained in:
41
mathmech/agglwindow.h
Normal file
41
mathmech/agglwindow.h
Normal 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
|
Reference in New Issue
Block a user