-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditor.h
More file actions
58 lines (54 loc) · 1.29 KB
/
editor.h
File metadata and controls
58 lines (54 loc) · 1.29 KB
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
#ifndef EDITOR_H
#define EDITOR_H
#include "textedit.h"
#include "highlighter.h"
#include <QApplication>
#include <QWidget>
#include <QTextEdit>
#include <QLayout>
#include <QSpacerItem>
#include <QKeyEvent>
#include <QString>
#include <QFileDialog>
#include <QTextStream>
#include <QFile>
#include <QMessageBox>
#include <QPair>
class TextEdit;
class Highlighter;
class Editor : public QWidget
{
private:
// Q_OBJECT macro
Q_OBJECT
// Objects
TextEdit * textField;
Highlighter * highlighter;
QHBoxLayout * textLayout;
// Variables
QString openFilename;
bool fileIsOpen;
public:
// Constructors
Editor(QWidget *parent = 0);
// Destructors
~Editor();
// Methods
QString fileToStr(QString filename);
QString dataToStr();
QString getConfHelper(QString str, QString conf);
void strToFile(QString str, QString filename);
void strToData(QString str);
void setStyle();
void setSyntax(QString filename);
void chooseSyntax();
void openFile();
void openFile(QString filename);
void saveFile();
void saveFileAs();
void newFile();
bool checkAndSave();
// Public shortcut vector
QVector< QPair<QString,QString> > quickInsert;
};
#endif // EDITOR_H