Implement console window tray icon, console window hiding, better scrolling

This commit is contained in:
Petr Mrázek
2014-01-06 02:52:51 +01:00
parent ddb961fad5
commit fcb8612c10
2 changed files with 96 additions and 27 deletions

View File

@ -16,6 +16,7 @@
#pragma once
#include <QMainWindow>
#include <QSystemTrayIcon>
#include "logic/MinecraftProcess.h"
namespace Ui
@ -77,7 +78,8 @@ slots:
// failures)
void on_btnPaste_clicked();
void iconActivated(QSystemTrayIcon::ActivationReason);
void toggleConsole();
protected:
void closeEvent(QCloseEvent *);
@ -87,4 +89,6 @@ private:
bool m_mayclose = true;
int m_last_scroll_value = 0;
bool m_scroll_active = true;
QSystemTrayIcon *m_trayIcon = nullptr;
int m_saved_offset = 0;
};