mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
2db140d5af
Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
26 lines
428 B
C++
26 lines
428 B
C++
#pragma once
|
|
|
|
#include "widgets/BaseWindow.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
class Split;
|
|
|
|
class FramelessEmbedWindow : public BaseWindow
|
|
{
|
|
public:
|
|
FramelessEmbedWindow();
|
|
|
|
protected:
|
|
#ifdef USEWINSDK
|
|
bool nativeEvent(const QByteArray &eventType, void *message,
|
|
long *result) override;
|
|
void showEvent(QShowEvent *event) override;
|
|
#endif
|
|
|
|
private:
|
|
Split *split_{};
|
|
};
|
|
|
|
} // namespace chatterino
|