Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • a9197b19f52cfd104676c1546789be71b44b66c6
  • master par défaut protégée
2 résultats

mainwindow.h

Blame
  • mainwindow.h 953 o
    #ifndef MAINWINDOW_H
    #define MAINWINDOW_H
    
    #include <QMainWindow>
    #include <QMessageBox>
    #include <QInputDialog>
    #include <QDir>
    #include "generalstatus.h"
    #include "elementstablemodel.h"
    #include "elementslistmodel.h"
    #include <QFileDialog>
    
    namespace Ui {
    class MainWindow;
    }
    
    class MainWindow : public QMainWindow
    {
        Q_OBJECT
    
    public:
        explicit MainWindow(QWidget *parent = 0);
        ~MainWindow();
        void update_status(GeneralStatus &genStatus);
        void set_task(ElementsTableModel * eltCollection);
        void update_tasks();
        ElementsTableModel * model;
    
    
    private slots:
        void on_commandLinkButton_7_clicked();
    
        void on_actionExport_actual_state_triggered();
    
        void on_tableView_clicked(const QModelIndex &index);
    
        void on_commandLinkButton_6_clicked();
    
        void on_comboBox_currentTextChanged(const QString &arg1);
    
    private:
        Ui::MainWindow *ui;
        int PIDselected;
        int rowSelectedIndex;
    };
    
    #endif // MAINWINDOW_H