diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-22 18:41:30 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-22 20:55:03 +0900 | 
| commit | 5bed6e4a4c916a97f8fe4d1b07f7eecf4d733b90 (patch) | |
| tree | f89cc49efc9ca1d0e1579ecb079ee7e7088ff8c8 /src/utilities/lighttable/lighttablewindowprivate.h | |
| parent | 0bfbf616d9c1fd7abb1bd02732389ab35e5f8771 (diff) | |
| download | digikam-5bed6e4a4c916a97f8fe4d1b07f7eecf4d733b90.tar.gz digikam-5bed6e4a4c916a97f8fe4d1b07f7eecf4d733b90.zip | |
Rename 'digikam' folder to 'src'
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ee0d99607c14cb63d3ebdb3a970b508949fa8219)
Diffstat (limited to 'src/utilities/lighttable/lighttablewindowprivate.h')
| -rw-r--r-- | src/utilities/lighttable/lighttablewindowprivate.h | 158 | 
1 files changed, 158 insertions, 0 deletions
| diff --git a/src/utilities/lighttable/lighttablewindowprivate.h b/src/utilities/lighttable/lighttablewindowprivate.h new file mode 100644 index 00000000..a96e0b08 --- /dev/null +++ b/src/utilities/lighttable/lighttablewindowprivate.h @@ -0,0 +1,158 @@ +/* ============================================================ + * + * This file is a part of digiKam project + * http://www.digikam.org + * + * Date        : 2007-03-05 + * Description : digiKam light table GUI + * + * Copyright (C) 2007-2008 by Gilles Caulier <caulier dot gilles at gmail dot com> + * + * This program is free software; you can redistribute it + * and/or modify it under the terms of the GNU General + * Public License as published by the Free Software Foundation; + * either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * ============================================================ */ + +// TQt includes. + +#include <tqsplitter.h> + +// KDE includes. + +#include <tdeaction.h> +#include <tdeaccel.h> + +// Local includes. + +#include "imagepropertiessidebardb.h" +#include "statusprogressbar.h" +#include "statuszoombar.h" +#include "lighttableview.h" +#include "lighttablebar.h" + +namespace Digikam +{ + +class LightTableWindowPriv +{ + +public: + +    LightTableWindowPriv() +    { +        autoLoadOnRightPanel   = true; +        autoSyncPreview        = true; +        fullScreenHideToolBar  = false; +        fullScreen             = false; +        removeFullScreenButton = false; +        cancelSlideShow        = false; +        star0                  = 0; +        star1                  = 0; +        star2                  = 0; +        star3                  = 0; +        star4                  = 0; +        star5                  = 0; +        accelerators           = 0; +        leftSidebar            = 0; +        rightSidebar           = 0; +        previewView            = 0; +        barView                = 0; +        hSplitter              = 0; +        vSplitter              = 0; +        syncPreviewAction      = 0; +        clearListAction        = 0; +        setItemLeftAction      = 0; +        setItemRightAction     = 0; +        editItemAction         = 0; +        removeItemAction       = 0; +        fileDeleteAction       = 0; +        slideShowAction        = 0; +        fullScreenAction       = 0; +        donateMoneyAction      = 0; +        zoomFitToWindowAction  = 0; +        zoomTo100percents      = 0; +        zoomPlusAction         = 0; +        zoomMinusAction        = 0; +        statusProgressBar      = 0; +        leftZoomBar            = 0; +        rightZoomBar           = 0; +        forwardAction          = 0; +        backwardAction         = 0; +        firstAction            = 0; +        lastAction             = 0; +        navigateByPairAction   = 0; +        rawCameraListAction    = 0; +        themeMenuAction        = 0; +        contributeAction       = 0; +        showMenuBarAction      = 0; +    } + +    bool                      autoLoadOnRightPanel; +    bool                      autoSyncPreview; +    bool                      fullScreenHideToolBar; +    bool                      fullScreen; +    bool                      removeFullScreenButton; +    bool                      cancelSlideShow; + +    TQSplitter                *hSplitter; +    TQSplitter                *vSplitter; + +    // Rating actions. +    TDEAction                  *star0; +    TDEAction                  *star1; +    TDEAction                  *star2; +    TDEAction                  *star3; +    TDEAction                  *star4; +    TDEAction                  *star5; + +    TDEAction                  *forwardAction; +    TDEAction                  *backwardAction; +    TDEAction                  *firstAction; +    TDEAction                  *lastAction; + +    TDEAction                  *setItemLeftAction; +    TDEAction                  *setItemRightAction; +    TDEAction                  *clearListAction; +    TDEAction                  *editItemAction; +    TDEAction                  *removeItemAction; +    TDEAction                  *fileDeleteAction; +    TDEAction                  *slideShowAction; +    TDEAction                  *donateMoneyAction; +    TDEAction                  *contributeAction; +    TDEAction                  *zoomPlusAction; +    TDEAction                  *zoomMinusAction; +    TDEAction                  *zoomTo100percents; +    TDEAction                  *zoomFitToWindowAction; +    TDEAction                  *rawCameraListAction; + +    TDESelectAction            *themeMenuAction; + +    TDEToggleAction            *fullScreenAction; +    TDEToggleAction            *syncPreviewAction; +    TDEToggleAction            *navigateByPairAction; +    TDEToggleAction            *showMenuBarAction; + +    TDEAccel                   *accelerators; + +    LightTableBar            *barView; + +    LightTableView           *previewView; + +    StatusZoomBar            *leftZoomBar; +    StatusZoomBar            *rightZoomBar; + +    StatusProgressBar        *statusProgressBar; + +    ImagePropertiesSideBarDB *leftSidebar; +    ImagePropertiesSideBarDB *rightSidebar; +}; + +}  // namespace Digikam | 
