mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 14:51:41 +00:00
42 lines
821 B
C++
42 lines
821 B
C++
#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 */
|