2022-06-16 19:05:23 +08:00
|
|
|
/*
|
|
|
|
* Qt5-UKUI's Library
|
|
|
|
*
|
2023-10-08 15:46:08 +08:00
|
|
|
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
2022-06-16 19:05:23 +08:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this library. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2023-10-08 15:46:08 +08:00
|
|
|
* Authors: xibowen <lanyue@kylinos.cn>
|
2022-06-16 19:05:23 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef TOOLTIPPARAMETERS_H
|
|
|
|
#define TOOLTIPPARAMETERS_H
|
|
|
|
|
|
|
|
#include <QBrush>
|
|
|
|
|
|
|
|
class ToolTipParameters
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ToolTipParameters();
|
2023-08-25 11:24:16 +08:00
|
|
|
~ToolTipParameters(){}
|
2022-06-16 19:05:23 +08:00
|
|
|
|
|
|
|
//private:
|
|
|
|
int radius;
|
|
|
|
|
|
|
|
QBrush toolTipBackgroundBrush;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TOOLTIPPARAMETERS_H
|