first commit

This commit is contained in:
lostjared
2017-02-01 02:35:23 -08:00
commit 69076f98b1
12 changed files with 82 additions and 0 deletions

1
README.md Normal file
View File

@@ -0,0 +1 @@
# Acid.Cam.v2.Qt

12
src/Acid.Cam.v2.Qt.pro Normal file
View 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
View 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
View File

@@ -0,0 +1,6 @@
#include "main_window.h"
AC_MainWindow::AC_MainWindow(QWidget *parent) : QMainWindow(parent) {
}

16
src/main_window.h Normal file
View 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
View File

@@ -0,0 +1 @@
#include "new_dialog.h"

6
src/new_dialog.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef _NEW_DIALOG_H_
#define _NEW_DIALOG_H_
#include "qtheaders.h"
#endif

1
src/plugin.cpp Normal file
View File

@@ -0,0 +1 @@
#include "plugin.h"

8
src/plugin.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _PLUGIN_H
#define _PLUGIN_H
#include "qtheaders.h"
#endif

11
src/qtheaders.h Normal file
View 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
View File

@@ -0,0 +1 @@
#include "select_image.h"

8
src/select_image.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef __SELECT_IMAGE__
#define __SELECT_IMAGE__
#include "qtheaders.h"
#endif