CCIMXDesktop
 
Loading...
Searching...
No Matches
ImageInfoWindow.h
1#ifndef IMAGEINFOWINDOW_H
2#define IMAGEINFOWINDOW_H
3
4#include <QMainWindow>
5
6namespace Ui {
8}
9
14class ImageInfoWindow : public QMainWindow {
15 Q_OBJECT
16
17public:
22 explicit ImageInfoWindow(QWidget* parent = nullptr);
23
24 void set_image_path(const QString& path);
25 QString get_image_path() { return image_path; }
27
28private:
29 QString image_path {};
30 Ui::ImageInfoWindow* ui;
31 ImageInfoWindow* infoWindow;
32};
33
34#endif // IMAGEINFOWINDOW_H
ImageInfo Window class holds the display of image info.
Definition ImageInfoWindow.h:14
QString get_image_path()
get the analysis image path
Definition ImageInfoWindow.h:25
void set_image_path(const QString &path)
set the analysis image path
Definition ImageInfoWindow.cpp:12