This commit is contained in:
Vladislav Khorev 2013-06-22 18:37:18 +00:00
parent 0583acb7aa
commit 6e23ac1eeb
4 changed files with 12 additions and 11 deletions

View File

@ -2,15 +2,14 @@
#define ANIMATION_H #define ANIMATION_H
#include <QObject> #include <QObject>
#include <QGraphicsScene> #include <QtWidgets/QGraphicsScene>
#include <QPicture> #include <QPicture>
#include <QPainter> #include <QPainter>
#include <QMainWindow> #include <QtWidgets/QMainWindow>
#include <QFileDialog> #include <QtWidgets/QFileDialog>
#include <QMessageBox> #include <QtWidgets/QMessageBox>
#include "boost/shared_ptr.hpp" #include "boost/shared_ptr.hpp"
struct TFrame struct TFrame
{ {
boost::shared_ptr<QPixmap> Pixmap; boost::shared_ptr<QPixmap> Pixmap;

View File

@ -4,7 +4,8 @@
# #
#------------------------------------------------- #-------------------------------------------------
QT += core gui QT += core widgets
TARGET = AnimationBuilder TARGET = AnimationBuilder
TEMPLATE = app TEMPLATE = app
@ -17,7 +18,8 @@ SOURCES += main.cpp\
HEADERS += mainwindow.h \ HEADERS += mainwindow.h \
Animation.h Animation.h
INCLUDEPATH += $$(LibsPath)/boost_1_52_0
DEPENDPATH += $$(LibsPath)/boost_1_52_0 INCLUDEPATH += "$$(LibsPath)boost_1_52_0"
DEPENDPATH += "$$(LibsPath)boost_1_52_0"
FORMS += mainwindow.ui FORMS += mainwindow.ui

View File

@ -1,4 +1,4 @@
#include <QtGui/QApplication> #include <QtWidgets/QApplication>
#include "mainwindow.h" #include "mainwindow.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])

View File

@ -1,8 +1,8 @@
#ifndef MAINWINDOW_H #ifndef MAINWINDOW_H
#define MAINWINDOW_H #define MAINWINDOW_H
#include <QMainWindow> #include <QtWidgets/QMainWindow>
#include <QListWidget> #include <QtWidgets/QListWidget>
#include <QTextStream> #include <QTextStream>
#include <QTimer> #include <QTimer>