mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
be66338fe2
- Clean up imports - Comment EmojiData - Reorder TwitchAccount constructor - Fix typo in TwitchChannel - Add emoji parsing test code at the bottom of EmoteManager
27 lines
528 B
C++
27 lines
528 B
C++
#pragma once
|
|
|
|
#include "widgets/helper/rippleeffectbutton.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class TitleBarButton : public RippleEffectButton
|
|
{
|
|
public:
|
|
enum Style { Minimize = 1, Maximize = 2, Unmaximize = 4, Close = 8, User = 16, Settings = 32 };
|
|
|
|
TitleBarButton();
|
|
|
|
Style getButtonStyle() const;
|
|
void setButtonStyle(Style style);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *) override;
|
|
|
|
private:
|
|
Style style;
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|