digiKam
Loading...
Searching...
No Matches
showfotosetuptooltip.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2006-07-09
7 * Description : item tool tip configuration setup tab
8 *
9 * SPDX-FileCopyrightText: 2006-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QScrollArea>
20
21namespace ShowFoto
22{
23
24class ShowfotoSetupToolTip : public QScrollArea
25{
26 Q_OBJECT
27
28public:
29
30 explicit ShowfotoSetupToolTip(QWidget* const parent = nullptr);
31 ~ShowfotoSetupToolTip() override;
32
33 void applySettings();
34
35private:
36
37 void readSettings();
38
39private:
40
41 class Private;
42 Private* const d = nullptr;
43};
44
45} // namespace ShowFoto
Definition showfotosetuptooltip.h:25
~ShowfotoSetupToolTip() override
Definition showfotosetuptooltip.cpp:189
void applySettings()
Definition showfotosetuptooltip.cpp:220
Definition showfotofolderviewbar.cpp:43