mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DolphinQt: Add generic tooltip controls
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
// Copyright 2020 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "DolphinQt/Config/ToolTipControls/ToolTipWidget.h"
|
||||
|
||||
#include <QCheckBox>
|
||||
|
||||
class ToolTipCheckBox : public ToolTipWidget<QCheckBox>
|
||||
{
|
||||
public:
|
||||
explicit ToolTipCheckBox(const QString& label);
|
||||
|
||||
private:
|
||||
QPoint GetToolTipPosition() const override;
|
||||
};
|
Reference in New Issue
Block a user