File indexing completed on 2025-03-09 03:50:51
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2009-11-13 0007 * Description : a tool to blend bracketed images. 0008 * 0009 * SPDX-FileCopyrightText: 2009-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_EXPO_BLENDING_INTRO_PAGE_H 0016 #define DIGIKAM_EXPO_BLENDING_INTRO_PAGE_H 0017 0018 // Local includes 0019 0020 #include "dwizardpage.h" 0021 #include "expoblendingmanager.h" 0022 0023 using namespace Digikam; 0024 0025 namespace DigikamGenericExpoBlendingPlugin 0026 { 0027 0028 class ExpoBlendingIntroPage : public DWizardPage 0029 { 0030 Q_OBJECT 0031 0032 public: 0033 0034 explicit ExpoBlendingIntroPage(ExpoBlendingManager* const mngr, QWizard* const dlg); 0035 ~ExpoBlendingIntroPage() override; 0036 0037 bool binariesFound(); 0038 0039 Q_SIGNALS: 0040 0041 void signalExpoBlendingIntroPageIsValid(bool); 0042 0043 private Q_SLOTS: 0044 0045 void slotExpoBlendingIntroPageIsValid(); 0046 0047 private: 0048 0049 class Private; 0050 Private* const d; 0051 }; 0052 0053 } // namespace DigikamGenericExpoBlendingPlugin 0054 0055 #endif // DIGIKAM_EXPO_BLENDING_INTRO_PAGE_H