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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
/***************************************************************************
* Copyright (C) 2006-2012 by Thomas Schweitzer *
* thomas-schweitzer(at)arcor.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License version 2.0 as *
* published by the Free Software Foundation. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program in the file LICENSE.GPL; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <tqmainwindow.h>
#include "UiGuiSettings.h"
class UiGuiSettingsDialog;
class AboutDialog;
class AboutDialogGraphicsView;
class UiGuiHighlighter;
class IndentHandler;
class UpdateCheckDialog;
namespace Ui {
class ToolBarWidget;
class MainWindowUi;
}
class QLabel;
class QScrollBar;
class QActionGroup;
class QTranslator;
class QsciScintilla;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
//! Constructor
MainWindow(QString file2OpenOnStart = "", QWidget *parent = NULL);
~MainWindow() {
_settings.clear();
}
protected:
void closeEvent( QCloseEvent *event );
bool eventFilter(QObject *obj, QEvent *event);
private slots:
void openSourceFileDialog(QString fileName = "");
bool saveasSourceFileDialog(QAction *chosenEncodingAction = NULL);
void saveAsOtherEncoding(QAction *chosenEncodingAction);
bool saveSourceFile();
void callIndenter();
void updateSourceView();
void turnHighlightOnOff(bool turnOn);
void setWhiteSpaceVisibility(bool visible);
void sourceCodeChangedHelperSlot();
void sourceCodeChangedSlot();
void indentSettingsChangedSlot();
void previewTurnedOnOff(bool turnOn);
void exportToPDF();
void exportToHTML();
void languageChanged(int languageIndex);
void encodingChanged(QAction *encodingAction);
void numberOfLinesChanged();
void updateRecentlyOpenedList();
void openFileFromRecentlyOpenedList(QAction* recentlyOpenedAction);
void clearRecentlyOpenedList();
void showAboutDialog();
void setStatusBarCursorPosInfo(int line, int column);
private:
Ui::MainWindowUi *_mainWindowForm;
QString loadFile(QString filePath);
QString openFileDialog(QString dialogHeaderStr, QString startPath, QString fileMaskStr);
void updateWindowTitle();
void loadLastOpenedFile();
void saveSettings();
bool maybeSave();
void createEncodingMenu();
void createHighlighterMenu();
bool initApplicationLanguage();
void initMainWindow();
void initToolBar();
void initTextEditor();
void initSyntaxHighlighter();
void initIndenter();
void changeEvent(QEvent *event);
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
QsciScintilla *_qSciSourceCodeEditor;
QSharedPointer<UiGuiSettings> _settings;
QString _currentEncoding;
QString _sourceFileContent;
QString _sourceFormattedContent;
QString _sourceViewContent;
UiGuiHighlighter *_highlighter;
QScrollBar *_textEditVScrollBar;
AboutDialog *_aboutDialog;
AboutDialogGraphicsView *_aboutDialogGraphicsView;
UiGuiSettingsDialog *_settingsDialog;
int _textEditLastScrollPos;
int _currentIndenterID;
bool _loadLastSourceCodeFileOnStartup;
QString _currentSourceFile;
QString _currentSourceFileExtension;
QString _savedSourceContent;
QActionGroup *_encodingActionGroup;
QActionGroup *_saveEncodedActionGroup;
QActionGroup *_highlighterActionGroup;
QTranslator *_uiGuiTranslator;
QTranslator *_qTTranslator;
bool _isFirstRunOfThisVersion;
bool _sourceCodeChanged;
bool _scrollPositionChanged;
bool _indentSettingsChanged;
bool _previewToggled;
QStringList _encodingsList;
Ui::ToolBarWidget *_toolBarWidget;
IndentHandler *_indentHandler;
UpdateCheckDialog *_updateCheckDialog;
QLabel *_textEditLineColumnInfoLabel;
};
#endif // MAINWINDOW_H
|