-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmainwindow.h
88 lines (64 loc) · 1.62 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <iostream>
#include <fstream>
#include <sys/stat.h>
#include <vector>
#include <variable.h>
#include <dx_data.h>
#include <dx_iface.h>
#include <cubic_spline.h>
using namespace Eigen;
#include "opencascade.h"
#include "draw_primitives.h"
using namespace occ;
#include "contours.h"
#include "offsets.h"
#include "gcode.h"
#include <QMainWindow>
#include <QTimer>
// File read operations.
#include <iostream>
#include <fstream>
#include <string>
// Dialog file open library, https://github.com/samhocevar/portable-file-dialogs/blob/master/examples/example.cpp
#include <portable-file-dialogs.h>
#if _WIN32
#define DEFAULT_PATH "C:\\"
#else
#define DEFAULT_PATH "/tmp"
#endif
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
bool open_dxf_file(std::string filename);
bool save_dxf_file(std::string filename);
bool write_entity();
void Update_Opencascade();
void load_opencascade_primitives();
void gcode_preview();
void gcode_get_user_settings();
void generate_contours();
void generate_pockets();
private slots:
void process();
void rotate_lead_in_out();
void add_operation();
void clear_operations();
void process_operations();
void on_toolButton_open_dxf_pressed();
private:
Ui::MainWindow *ui;
// Dxf data
dx_data fData;
dx_data fCleanData; // To clean the fData.
dx_iface *iface = new dx_iface;
Opencascade* OpencascadeWidget;
};
#endif // MAINWINDOW_H