add "Save to File" option to the context dialog for the log window

This commit is contained in:
Axel Kohlmeyer
2023-09-29 17:59:47 -04:00
parent 5a750c8633
commit 1689c306b6
2 changed files with 46 additions and 0 deletions

View File

@ -22,8 +22,12 @@ class LogWindow : public QPlainTextEdit {
public:
LogWindow(QWidget *parent = nullptr);
private slots:
void save_as();
protected:
void closeEvent(QCloseEvent *event) override;
void contextMenuEvent(QContextMenuEvent *event) override;
};
#endif