mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
// SPDX-License-Identifier: LicenseRef-AGPL-3.0-only-OpenSSL
|
|
|
|
#ifndef CHIAKI_GUI_STREAMWINDOW_H
|
|
#define CHIAKI_GUI_STREAMWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include "streamsession.h"
|
|
|
|
class QLabel;
|
|
class AVOpenGLWidget;
|
|
|
|
class StreamWindow: public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit StreamWindow(const StreamSessionConnectInfo &connect_info, QWidget *parent = nullptr);
|
|
~StreamWindow() override;
|
|
|
|
private:
|
|
const StreamSessionConnectInfo connect_info;
|
|
StreamSession *session;
|
|
|
|
QAction *fullscreen_action;
|
|
QAction *stretch_action;
|
|
QAction *zoom_action;
|
|
AVOpenGLWidget *av_widget;
|
|
|
|
void Init();
|
|
void UpdateVideoTransform();
|
|
void UpdateTransformModeActions();
|
|
|
|
protected:
|
|
void keyPressEvent(QKeyEvent *event) override;
|
|
void keyReleaseEvent(QKeyEvent *event) override;
|
|
void closeEvent(QCloseEvent *event) override;
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
void moveEvent(QMoveEvent *event) override;
|
|
void changeEvent(QEvent *event) override;
|
|
|
|
private slots:
|
|
void SessionQuit(ChiakiQuitReason reason, const QString &reason_str);
|
|
void LoginPINRequested(bool incorrect);
|
|
void ToggleFullscreen();
|
|
void ToggleStretch();
|
|
void ToggleZoom();
|
|
void Quit();
|
|
};
|
|
|
|
#endif // CHIAKI_GUI_STREAMWINDOW_H
|