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
|
/***************************************************************************
* copyright : (C) 2009-2017 by Pascal Brachet *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef JSMAINWINDOW_H
#define JSMAINWINDOW_H
#include <QMainWindow>
#include <QAction>
#include <QMenu>
#include "jseditorview.h"
class JSMainWindow : public QMainWindow
{
Q_OBJECT
public:
JSMainWindow(QWidget* parent = 0, int fontsize=12);
protected:
void closeEvent(QCloseEvent *event);
private slots:
void newFile();
void open();
bool save();
bool saveAs();
void documentWasModified();
private:
void createActions();
void createMenus();
void createToolBars();
void createStatusBar();
bool maybeSave();
void loadFile(const QString &fileName);
bool saveFile(const QString &fileName);
void setCurrentFile(const QString &fileName);
QString strippedName(const QString &fullFileName);
JSEditorView *jsEditView;
QString curFile;
QMenu *fileMenu;
QMenu *editMenu;
QToolBar *fileToolBar;
QToolBar *editToolBar;
QAction *newAct;
QAction *openAct;
QAction *saveAct;
QAction *saveAsAct;
QAction *exitAct;
QAction *cutAct;
QAction *copyAct;
QAction *pasteAct;
QAction *undoAct;
QAction *redoAct;
};
#endif
|