File indexing completed on 2025-01-19 03:50:39
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2008-12-10 0007 * Description : album icon view tool tip 0008 * 0009 * SPDX-FileCopyrightText: 2008-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #ifndef DIGIKAM_TOOL_TIP_FILLER_H 0016 #define DIGIKAM_TOOL_TIP_FILLER_H 0017 0018 // Qt includes 0019 0020 #include <QString> 0021 0022 namespace Digikam 0023 { 0024 0025 class FilterAction; 0026 class ItemInfo; 0027 class PAlbum; 0028 0029 namespace ToolTipFiller 0030 { 0031 0032 QString imageInfoTipContents(const ItemInfo& info); 0033 QString albumTipContents(PAlbum* const album, int count); 0034 QString filterActionTipContents(const FilterAction& action); 0035 0036 } // namespace ToolTipFiller 0037 0038 } // namespace Digikam 0039 0040 #endif // DIGIKAM_TOOL_TIP_FILLER_H