File indexing completed on 2025-01-05 04:00:06

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2008-01-20
0007  * Description : User interface for searches
0008  *
0009  * SPDX-FileCopyrightText: 2008-2012 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
0010  * SPDX-FileCopyrightText: 2011-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_SEARCH_GROUP_P_H
0017 #define DIGIKAM_SEARCH_GROUP_P_H
0018 
0019 #include "searchgroup.h"
0020 
0021 // Qt includes
0022 
0023 #include <QGridLayout>
0024 #include <QLabel>
0025 #include <QPainter>
0026 #include <QRadioButton>
0027 #include <QStackedLayout>
0028 #include <QVBoxLayout>
0029 #include <QStandardPaths>
0030 #include <QIcon>
0031 
0032 // KDE includes
0033 
0034 #include <klocalizedstring.h>
0035 
0036 // Local includes
0037 
0038 #include "digikam_debug.h"
0039 #include "searchfieldgroup.h"
0040 #include "searchfields.h"
0041 #include "searchutilities.h"
0042 #include "searchview.h"
0043 
0044 namespace Digikam
0045 {
0046 
0047 class Q_DECL_HIDDEN RadioButtonHBox : public QHBoxLayout
0048 {
0049     Q_OBJECT
0050 
0051 public:
0052 
0053     RadioButtonHBox(QWidget* const left, QWidget* const right, Qt::LayoutDirection dir);
0054 };
0055 
0056 } // namepace Digikam
0057 
0058 #endif // DIGIKAM_SEARCH_GROUP_P_H