-
Notifications
You must be signed in to change notification settings - Fork 20
/
nifskope.h
311 lines (241 loc) · 7.11 KB
/
nifskope.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/***** BEGIN LICENSE BLOCK *****
BSD License
Copyright (c) 2005-2012, NIF File Format Library and Tools
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the NIF File Format Library and Tools project may not be
used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***** END LICENCE BLOCK *****/
#ifndef NIFSKOPE_H
#define NIFSKOPE_H
#include <QMainWindow>
#include <QProgressDialog>
#define NIFSKOPE_IPC_PORT 12583
class NifModel;
class NifProxyModel;
class KfmModel;
class NifTreeView;
class ReferenceBrowser;
class InspectView;
class GLView;
class FileSelector;
class QModelIndex;
class QAction;
class QActionGroup;
class QSettings;
class QSlider;
class QSpinBox;
class QTextEdit;
class QTranslator;
class QLocale;
class QUdpSocket;
#include "message.h"
#include "ui/about_dialog.h"
//! \file nifskope.h The main header for NifSkope
//! The main application class for NifSkope.
/*!
* This class encapsulates the main NifSkope window. It has members for saving
* and restoring settings, loading and saving nif files, loading an xml
* description, widgets for the various subwindows, menu's, and a socket by
* which NifSkope can communicate with itself.
*/
class NifSkope : public QMainWindow
{
Q_OBJECT
public:
//! Constructor
NifSkope();
//! Destructor
~NifSkope();
//! Create and initialize a new NifSkope application window.
/*!
* \param fname The name of the file to load in the new NifSkope window.
* \return The newly created NifSkope instance.
*/
static NifSkope * createWindow( const QString & fname = QString() );
//! Save NifSkope application settings.
/*!
* \param settings The QSettings object used to store the settings.
*/
void save( QSettings & settings ) const;
//! Restore NifSkope application settings.
/*!
* \param settings The QSettings object to restore the settings from.
*/
void restore( const QSettings & settings );
//! Get Loaded filename
/*!
* \return QString of loaded filename
*/
QString getLoadFileName();
public slots:
//! Set the lineLoad string and load a nif, kf, or kfm file.
/*!
* \param filepath The file to load.
*/
void load( const QString & filepath );
//! Load a nif, kf, or kfm file, taking the file path from the lineLoad widget.
void load();
//! Save a nif, kf, or kfm file, taking the file path from the lineSave widget.
void save();
//! Reparse the nif.xml and kfm.xml files.
void loadXML();
//! Reparse the nif.xml and kfm.xml files and reload the current file.
void reload();
//! A slot that creates a new NifSkope application window.
void sltWindow();
//! A slot for starting the XML checker.
void sltShredder();
//! Reset "block details"
void sltResetBlockDetails();
protected slots:
//! Select a NIF index
void select( const QModelIndex & );
//! Display a context menu at the specified position
void contextMenu( const QPoint & pos );
//! Set the list mode
void setListMode();
//! Select the font to use
void sltSelectFont();
//! Send a Message
void dispatchMessage( const Message & msg );
//! Override the view font
void overrideViewFont();
//! Copy file name from load to save
void copyFileNameLoadSave();
//! Copy file name from save to load
void copyFileNameSaveLoad();
//! Sets Import/Export menus
/*!
* see importex/importex.cpp
*/
void fillImportExportMenus();
//! Perform Import or Export
void sltImportExport( QAction * action );
//! Open a URL using the system handler
void openURL();
//! Change system locale and notify user that restart may be required
void sltLocaleChanged();
protected:
void closeEvent( QCloseEvent * e );
bool eventFilter( QObject * o, QEvent * e );
private:
void initActions();
void initDockWidgets();
void initToolBars();
void initMenu();
//! "About NifSkope" dialog.
QWidget *aboutDialog;
void setViewFont( const QFont & );
//! Migrate settings from older versions of nifskope.
void migrateSettings() const;
//! Stores the nif file in memory.
NifModel * nif;
//! A hierarchical proxy for the nif file.
NifProxyModel * proxy;
//! Stores the kfm file in memory.
KfmModel * kfm;
//! This view shows the block list.
NifTreeView * list;
//! This view shows the whole nif file or the block details.
NifTreeView * tree;
//! This view shows the KFM file, if any
NifTreeView * kfmtree;
//! Help browser
ReferenceBrowser * refrbrwsr;
//! Transform inspect view
InspectView * inspect;
//! The main window
GLView * ogl;
bool selecting;
bool initialShowEvent;
FileSelector * lineLoad;
FileSelector * lineSave;
QDockWidget * dList;
QDockWidget * dTree;
QDockWidget * dKfm;
QDockWidget * dRefr;
QDockWidget * dInsp;
QToolBar * tool;
QAction * aSanitize;
QAction * aLoadXML;
QAction * aReload;
QAction * aWindow;
QAction * aShredder;
QAction * aQuit;
QAction * aLineLoad;
QAction * aLineSave;
QAction * aCpFileName;
#ifdef FSENGINE
QAction * aResources;
#endif
QActionGroup * gListMode;
QAction * aList;
QAction * aHierarchy;
QAction * aCondition;
QAction * aRCondition;
QAction * aSelectFont;
QAction * aHelpWebsite;
QAction * aHelpForum;
QAction * aNifToolsWebsite;
QAction * aNifToolsDownloads;
QAction * aNifSkope;
QAction * aAboutQt;
QMenu * mExport;
QMenu * mImport;
};
//! UDP communication between instances
class IPCsocket : public QObject
{
Q_OBJECT
public:
//! Creates a socket
static IPCsocket * create();
//! Sends a command
static void sendCommand( const QString & cmd );
public slots:
//! Acts on a command
void execCommand( const QString & cmd );
//! Opens a NIF from a URL
void openNif( const QUrl & );
protected slots:
void processDatagram();
protected:
IPCsocket( QUdpSocket * );
~IPCsocket();
QUdpSocket * socket;
};
//! Progress dialog
class ProgDlg : public QProgressDialog
{
Q_OBJECT
public:
//! Constructor
ProgDlg() {}
public slots:
//! Update progress
/*!
* \param x The amount done
* \param y The total amount
*/
void sltProgress( int x, int y );
};
#endif