File indexing completed on 2025-01-05 03:56:44

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2006-04-19
0007  * Description : A tab to display general item information
0008  *
0009  * SPDX-FileCopyrightText: 2006-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  * SPDX-FileCopyrightText: 2013      by Michael G. Hansen <mike at mghansen dot de>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #include "itempropertiestab_p.h"
0017 
0018 namespace Digikam
0019 {
0020 
0021 ItemPropertiesTab::Private::Private()
0022     : caption                   (nullptr),
0023       title                     (nullptr),
0024       pickLabel                 (nullptr),
0025       colorLabel                (nullptr),
0026       rating                    (nullptr),
0027       tags                      (nullptr),
0028       peoples                   (nullptr),
0029       versionned                (nullptr),
0030       grouped                   (nullptr),
0031       labelFile                 (nullptr),
0032       labelFolder               (nullptr),
0033       labelSymlink              (nullptr),
0034       labelFileModifiedDate     (nullptr),
0035       labelFileSize             (nullptr),
0036       labelFileOwner            (nullptr),
0037       labelFilePermissions      (nullptr),
0038       labelImageMime            (nullptr),
0039       labelImageDimensions      (nullptr),
0040       labelImageRatio           (nullptr),
0041       labelImageBitDepth        (nullptr),
0042       labelImageColorMode       (nullptr),
0043       labelHasSidecar           (nullptr),
0044       labelHasGPSInfo           (nullptr),
0045       labelVersionnedInfo       (nullptr),
0046       labelGroupedInfo          (nullptr),
0047       labelPhotoMake            (nullptr),
0048       labelPhotoModel           (nullptr),
0049       labelPhotoDateTime        (nullptr),
0050       labelPhotoLens            (nullptr),
0051       labelPhotoAperture        (nullptr),
0052       labelPhotoFocalLength     (nullptr),
0053       labelPhotoExposureTime    (nullptr),
0054       labelPhotoSensitivity     (nullptr),
0055       labelPhotoExposureMode    (nullptr),
0056       labelPhotoFlash           (nullptr),
0057       labelPhotoWhiteBalance    (nullptr),
0058       labelCaption              (nullptr),
0059       labelTitle                (nullptr),
0060       labelTags                 (nullptr),
0061       labelPeoples              (nullptr),
0062       labelLocation             (nullptr),
0063       labelRights               (nullptr),
0064       labelPickLabel            (nullptr),
0065       labelColorLabel           (nullptr),
0066       labelRating               (nullptr),
0067       labelVideoAspectRatio     (nullptr),
0068       labelVideoDuration        (nullptr),
0069       labelVideoFrameRate       (nullptr),
0070       labelVideoVideoCodec      (nullptr),
0071       labelVideoAudioBitRate    (nullptr),
0072       labelVideoAudioChannelType(nullptr),
0073       labelVideoAudioCodec      (nullptr)
0074 {
0075 }
0076 
0077 ItemPropertiesTab::Private::~Private()
0078 {
0079 }
0080 
0081 } // namespace Digikam