Walls And Holes  1
imagefinderbar.h
Go to the documentation of this file.
1 #ifndef IMAGEFINDERBAR_H
2 #define IMAGEFINDERBAR_H
3 
4 #include "imageandsource.h"
5 
6 #include <QWidget>
7 #include <QLineEdit>
8 
9 class ImageFinderBar : public QWidget
10 {
11  Q_OBJECT
12 
13 public:
14  explicit ImageFinderBar(QString source, QWidget *parent = nullptr);
15 
16 signals:
18 
19 private slots:
20  void findImage();
21 
22 private:
23  QLineEdit *mLine;
24 };
25 
26 #endif // IMAGEFINDERBAR_H
QSharedPointer< ImageAndSource > SharedImageAndSource
Definition: imageandsource.h:8
void imageChanged(SharedImageAndSource image)
Definition: imagefinderbar.h:9
ImageFinderBar(QString source, QWidget *parent=nullptr)
Definition: imagefinderbar.cpp:9