mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-11 09:20:04 +01:00
added new window source file and added to pro files
This commit is contained in:
@@ -12,7 +12,7 @@ LIBS += `pkg-config acidcam opencv --libs`
|
|||||||
#LIBS += -L/usr/local/lib -lopencv_world
|
#LIBS += -L/usr/local/lib -lopencv_world
|
||||||
QMAKE_CXXFLAGS += -std=c++11 `pkg-config acidcam opencv --cflags`
|
QMAKE_CXXFLAGS += -std=c++11 `pkg-config acidcam opencv --cflags`
|
||||||
RESOURCES += qresource.qrc
|
RESOURCES += qresource.qrc
|
||||||
|
QMAKE_CFLAGS_ISYSTEM = -I
|
||||||
# Input
|
# Input
|
||||||
HEADERS += main_window.h new_dialog.h plugin.h qtheaders.h select_image.h display_window.h playback_thread.h search_box.h goto_window.h chroma_window.h user_define.h dl-man.h
|
HEADERS += main_window.h new_dialog.h plugin.h qtheaders.h select_image.h display_window.h playback_thread.h search_box.h goto_window.h chroma_window.h user_define.h dl-man.h image_window.h
|
||||||
SOURCES += main.cpp main_window.cpp new_dialog.cpp plugin.cpp select_image.cpp display_window.cpp playback_thread.cpp search_box.cpp goto_window.cpp chroma_window.cpp user_define.cpp dl-man.cpp
|
SOURCES += main.cpp main_window.cpp new_dialog.cpp plugin.cpp select_image.cpp display_window.cpp playback_thread.cpp search_box.cpp goto_window.cpp chroma_window.cpp user_define.cpp dl-man.cpp image_window.cpp
|
||||||
|
|||||||
@@ -14,5 +14,5 @@ QMAKE_CXXFLAGS += -std=c++11 `pkg-config acidcam opencv4 --cflags`
|
|||||||
RESOURCES += qresource.qrc
|
RESOURCES += qresource.qrc
|
||||||
|
|
||||||
# Input
|
# Input
|
||||||
HEADERS += main_window.h new_dialog.h plugin.h qtheaders.h select_image.h display_window.h playback_thread.h search_box.h goto_window.h chroma_window.h user_define.h dl-man.h
|
HEADERS += main_window.h new_dialog.h plugin.h qtheaders.h select_image.h display_window.h playback_thread.h search_box.h goto_window.h chroma_window.h user_define.h dl-man.h image_window.h
|
||||||
SOURCES += main.cpp main_window.cpp new_dialog.cpp plugin.cpp select_image.cpp display_window.cpp playback_thread.cpp search_box.cpp goto_window.cpp chroma_window.cpp user_define.cpp dl-man.cpp
|
SOURCES += main.cpp main_window.cpp new_dialog.cpp plugin.cpp select_image.cpp display_window.cpp playback_thread.cpp search_box.cpp goto_window.cpp chroma_window.cpp user_define.cpp dl-man.cpp image_window.cpp
|
||||||
|
|||||||
5
src/image_window.cpp
Normal file
5
src/image_window.cpp
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#include "image_window.h"
|
||||||
|
|
||||||
|
ImageWindow::ImageWindow(QWidget *parent) : QDialog(parent) {
|
||||||
|
|
||||||
|
}
|
||||||
13
src/image_window.h
Normal file
13
src/image_window.h
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#ifndef __IMAGE_WINDOW__H_
|
||||||
|
#define __IMAGE_WINDOW__H_
|
||||||
|
|
||||||
|
#include "qtheaders.h"
|
||||||
|
|
||||||
|
class ImageWindow : public QDialog {
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
ImageWindow(QWidget *parent);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
Reference in New Issue
Block a user