mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-13 18:30:02 +01:00
first commit
This commit is contained in:
12
src/Acid.Cam.v2.Qt.pro
Normal file
12
src/Acid.Cam.v2.Qt.pro
Normal file
@@ -0,0 +1,12 @@
|
||||
######################################################################
|
||||
# Automatically generated by qmake (2.01a) Wed Feb 1 02:31:01 2017
|
||||
######################################################################
|
||||
|
||||
TEMPLATE = app
|
||||
TARGET = Acid.Cam.v2.Qt
|
||||
DEPENDPATH += .
|
||||
INCLUDEPATH += .
|
||||
|
||||
# Input
|
||||
HEADERS += main_window.h new_dialog.h plugin.h qtheaders.h select_image.h
|
||||
SOURCES += main.cpp main_window.cpp new_dialog.cpp plugin.cpp select_image.cpp
|
||||
11
src/main.cpp
Normal file
11
src/main.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include"qtheaders.h"
|
||||
#include "main_window.h"
|
||||
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
QApplication app(argc, argv);
|
||||
AC_MainWindow window;
|
||||
window.show();
|
||||
return app.exec();
|
||||
|
||||
}
|
||||
6
src/main_window.cpp
Normal file
6
src/main_window.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "main_window.h"
|
||||
|
||||
|
||||
AC_MainWindow::AC_MainWindow(QWidget *parent) : QMainWindow(parent) {
|
||||
|
||||
}
|
||||
16
src/main_window.h
Normal file
16
src/main_window.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef __MAIN_WINDOW_H__
|
||||
#define __MAIN_WINDOW_H__
|
||||
|
||||
#include "qtheaders.h"
|
||||
|
||||
|
||||
class AC_MainWindow : public QMainWindow {
|
||||
Q_OBJECT
|
||||
public:
|
||||
AC_MainWindow(QWidget *parent = 0);
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
1
src/new_dialog.cpp
Normal file
1
src/new_dialog.cpp
Normal file
@@ -0,0 +1 @@
|
||||
#include "new_dialog.h"
|
||||
6
src/new_dialog.h
Normal file
6
src/new_dialog.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#ifndef _NEW_DIALOG_H_
|
||||
#define _NEW_DIALOG_H_
|
||||
|
||||
#include "qtheaders.h"
|
||||
|
||||
#endif
|
||||
1
src/plugin.cpp
Normal file
1
src/plugin.cpp
Normal file
@@ -0,0 +1 @@
|
||||
#include "plugin.h"
|
||||
8
src/plugin.h
Normal file
8
src/plugin.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef _PLUGIN_H
|
||||
#define _PLUGIN_H
|
||||
|
||||
#include "qtheaders.h"
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
11
src/qtheaders.h
Normal file
11
src/qtheaders.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef _QT_HEADERS__
|
||||
#define _QT_HEADERS__
|
||||
|
||||
#include<QApplication>
|
||||
#include<QMainWindow>
|
||||
#include<QDialog>
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
1
src/select_image.cpp
Normal file
1
src/select_image.cpp
Normal file
@@ -0,0 +1 @@
|
||||
#include "select_image.h"
|
||||
8
src/select_image.h
Normal file
8
src/select_image.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef __SELECT_IMAGE__
|
||||
#define __SELECT_IMAGE__
|
||||
|
||||
#include "qtheaders.h"
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user