summaryrefslogtreecommitdiff
path: root/src/gui/mainwindow.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-03-17 19:01:02 -0400
committerAleks Kissinger <aleks0@gmail.com>2018-03-17 19:01:02 -0400
commit3cea1514203a451c0a8806d276807863b463a78f (patch)
treed6850ab0f41a6d85f3504e8c92fcecf79b37689b /src/gui/mainwindow.h
parent39c2c74c664a6c770639ead8f45322352cacb997 (diff)
added saving, style application, and copy and paste
Diffstat (limited to 'src/gui/mainwindow.h')
-rw-r--r--src/gui/mainwindow.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/mainwindow.h b/src/gui/mainwindow.h
index ba680b0..613bfcb 100644
--- a/src/gui/mainwindow.h
+++ b/src/gui/mainwindow.h
@@ -33,17 +33,19 @@ public:
TikzView *tikzView() const;
TikzScene *tikzScene() const;
TikzDocument *tikzDocument() const;
-
+ ToolPalette *toolPalette() const;
+ void updateFileName();
+ void refreshTikz();
protected:
void closeEvent(QCloseEvent *event);
void changeEvent(QEvent *event);
+
private:
TikzScene *_tikzScene;
TikzDocument *_tikzDocument;
MainMenu *_menu;
- ToolPalette *_tools;
+ ToolPalette *_toolPalette;
Ui::MainWindow *ui;
- QString _fileName;
bool _pristine;
int _windowId;
static int _numWindows;