// Copyright 2019 Dolphin Emulator Project // Licensed under GPLv2+ // Refer to the license.txt file included. #pragma once #include "DolphinQt/Config/ToolTipControls/ToolTipSpinBox.h" namespace Config { template class Info; } class GraphicsInteger : public ToolTipSpinBox { Q_OBJECT public: GraphicsInteger(int minimum, int maximum, const Config::Info& setting, int step = 1); void Update(int value); private: const Config::Info& m_setting; };