File indexing completed on 2025-01-05 03:57:55
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2017-05-06 0007 * Description : interface to item information for Showfoto 0008 * 0009 * SPDX-FileCopyrightText: 2017-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * SPDX-FileCopyrightText: 2019-2020 by Minh Nghia Duong <minhnghiaduong997 at gmail dot com> 0011 * 0012 * SPDX-License-Identifier: GPL-2.0-or-later 0013 * 0014 * ============================================================ */ 0015 0016 #ifndef SHOWFOTO_INFO_IFACE_H 0017 #define SHOWFOTO_INFO_IFACE_H 0018 0019 // Local includes 0020 0021 #include "dmetainfoiface.h" 0022 0023 using namespace Digikam; 0024 0025 namespace ShowFoto 0026 { 0027 0028 class ShowfotoInfoIface : public DMetaInfoIface 0029 { 0030 Q_OBJECT 0031 0032 public: 0033 0034 explicit ShowfotoInfoIface(QObject* const parent, 0035 const QList<QUrl>& lst); 0036 ~ShowfotoInfoIface() override; 0037 0038 void openSetupPage(SetupPage page) override; 0039 }; 0040 0041 } // namespace ShowFoto 0042 0043 #endif // SHOWFOTO_INFO_IFACE_H