-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathImageListPanel.h
130 lines (102 loc) · 4.05 KB
/
ImageListPanel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//
// Copyright (C) Wojciech Jarosz <wjarosz@gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style license that can
// be found in the LICENSE.txt file.
//
#pragma once
#include <nanogui/widget.h>
#include <vector>
#include "Common.h"
#include "GLImage.h"
#include "Fwd.h"
using namespace nanogui;
class ImageListPanel : public Widget
{
public:
ImageListPanel(Widget *parent, HDRViewScreen * screen, HDRImageViewer * imgViewer);
void draw(NVGcontext *ctx) override;
void repopulateImageList();
// Const access to the loaded images. Modification only possible via modifyImage, undo, redo
int numImages() const {return int(m_images.size());}
int currentImageIndex() const {return m_current;}
int referenceImageIndex() const {return m_reference;}
ConstImagePtr currentImage() const {return image(m_current);}
ImagePtr currentImage() {return image(m_current);}
ConstImagePtr referenceImage() const {return image(m_reference);}
ImagePtr referenceImage() {return image(m_reference);}
ConstImagePtr image(int index) const;
ImagePtr image(int index);
bool setCurrentImageIndex(int newIndex, bool forceCallback = false);
bool setReferenceImageIndex(int newIndex);
bool swapCurrentSelectedWithPrevious() {printf("current: %d; previous: %d\n", m_current, m_previous);return isValid(m_previous) ? setCurrentImageIndex(m_previous) : false;}
bool swapImages(int index1, int index2);
bool sendImageBackward();
bool bringImageForward();
// Loading, saving, closing, and rearranging the images in the image stack
void loadImages(const std::vector<std::string> & filenames);
bool saveImage(const std::string & filename, float exposure = 0.f, float gamma = 2.2f,
bool sRGB = true, bool dither = true);
bool closeImage();
void closeAllImages();
// Modify the image data
void modifyImage(const ImageCommand & command);
void modifyImage(const ImageCommandWithProgress & command);
void undo();
void redo();
//
void runRequestedCallbacks();
void requestButtonsUpdate();
void requestHistogramUpdate(bool force = false);
EBlendMode blendMode() const;
void setBlendMode(EBlendMode mode);
EChannel channel() const;
void setChannel(EChannel channel);
bool nthImageIsVisible(int n) const;
int nextVisibleImage(int index, EDirection direction) const;
int nthVisibleImageIndex(int n) const;
bool useRegex() const;
void setUseRegex(bool value);
bool setFilter(const std::string& filter);
std::string filter() const;
void focusFilter();
private:
void updateButtons();
void enableDisableButtons();
void updateHistogram();
void updateFilter();
bool isValid(int index) const {return index >= 0 && index < numImages();}
std::vector<ImagePtr> m_images; ///< The loaded images
int m_current = -1; ///< The currently selected image
int m_reference = -1; ///< The currently selected reference image
int m_previous = -1; ///< The previously selected image
std::atomic<bool> m_imageModifyDoneRequested;
// various callback functions
std::function<void(int)> m_imageModifyDoneCallback;
std::function<void()> m_numImagesCallback;
std::function<void()> m_currentImageCallback;
std::function<void()> m_referenceImageCallback;
HDRViewScreen * m_screen = nullptr;
HDRImageViewer * m_imageViewer = nullptr;
Button * m_saveButton = nullptr;
Button * m_closeButton = nullptr;
Button * m_bringForwardButton = nullptr;
Button * m_sendBackwardButton = nullptr;
TextBox * m_filter = nullptr;
Button* m_eraseButton = nullptr;
Button* m_regexButton = nullptr;
Button * m_useShortButton = nullptr;
Widget * m_imageListWidget = nullptr;
ComboBox * m_blendModes = nullptr;
ComboBox * m_channels = nullptr;
std::vector<ImageButton*> m_imageButtons;
ComboBox * m_xAxisScale = nullptr,
* m_yAxisScale = nullptr;
MultiGraph * m_graph = nullptr;
bool m_histogramDirty = false;
bool m_histogramUpdateRequested = false;
bool m_updateFilterRequested = true;
bool m_buttonsUpdateRequested = true;
double m_histogramRequestTime;
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};