-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmainwindow.h
89 lines (71 loc) · 2 KB
/
mainwindow.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QResizeEvent>
#include <QDebug>
#include <QThread>
#include <math.h>
#include <QItemSelectionModel>
#include <QModelIndexList>
#include <QtAlgorithms>
#include "itemmaker.h"
#include <QDirIterator>
#include <QtCore/QCoreApplication>
#include <QSettings>
#include <QTableWidget>
#include <QProcess>
#include <QCompleter>
#include <QMessageBox>
#include <QStringListModel>
#include "lifesupport.h"
#include "imagesetprocessor.h"
namespace Ui {
class MainWindow;
}
class ImageWidget ;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
void addTab(QWidget* newTab, QString title);
bool findTab (QWidget* tab);
void refreshTable();
QList<ImageWidget*>* getItems();
~MainWindow();
private slots:
void on_loadButton_clicked();
void on_addItemButton_clicked();
void on_editButton_clicked();
void on_deleteItemButton_clicked();
void ReadOut();
void ReadErr();
friend class MainLoader;
void on_MainWindow_destroyed();
void on_tabWidget_tabCloseRequested(int index);
void on_consoleCommander_returnPressed();
void on_actionProcess_Image_Set_triggered();
protected:
void resizeEvent(QResizeEvent *e);
void resizeTable();
void addItem(QString filePath);
void appendItem(QString folderPath, QString filePath, QString imagePath, QString title, int numTargets);
void setColumnCount(int col);
void listFiles(QDir directory, QString indent, QList<QString> &files);
void indexToCoordinates(int index, int *r, int *c);
private:
Ui::MainWindow *ui;
QList<ImageWidget *> *items;
LifeSupport* dataPackage ;
QProcess *classifier;
QCompleter *completer;
QStringList prevCommands;
QString currentFile, currentImage ;
int tableWidth;
int cellHeight;
int cellWidth;
int rowCount;
int colCount;
bool noTabs ; //if no images are open or if all of them are closed
};
#endif // MAINWINDOW_H