move components to separate directory

This commit is contained in:
laserpants 2016-03-19 14:07:25 +03:00
parent 2235ab1991
commit 709aa9e58b
30 changed files with 29 additions and 36 deletions

View File

@ -4,9 +4,9 @@
#include <QMenuBar>
#include <QLabel>
#include "mainwindow.h"
#include "flatbutton.h"
#include "iconbutton.h"
#include "appbar.h"
#include "components/flatbutton.h"
#include "components/iconbutton.h"
#include "components/appbar.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)

View File

@ -1,9 +1,3 @@
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-18T11:23:14
#
#-------------------------------------------------
QT += core gui qml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
@ -11,40 +5,39 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qt-material-widgets
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
style.cpp \
appbar.cpp \
checkbox.cpp \
dialog.cpp \
flatbutton.cpp \
iconbutton.cpp \
iconmenu.cpp \
list.cpp \
radiobutton.cpp \
slider.cpp \
tab.cpp \
tabs.cpp \
textfield.cpp \
table.cpp \
components/appbar.cpp \
components/checkbox.cpp \
components/dialog.cpp \
components/flatbutton.cpp \
components/iconbutton.cpp \
components/iconmenu.cpp \
components/list.cpp \
components/radiobutton.cpp \
components/slider.cpp \
components/tab.cpp \
components/tabs.cpp \
components/textfield.cpp \
components/table.cpp \
ripple.cpp \
rippleoverlay.cpp
HEADERS += mainwindow.h \
style.h \
appbar.h \
checkbox.h \
dialog.h \
flatbutton.h \
iconbutton.h \
iconmenu.h \
list.h \
radiobutton.h \
slider.h \
tab.h \
tabs.h \
textfield.h \
table.h \
components/appbar.h \
components/checkbox.h \
components/dialog.h \
components/flatbutton.h \
components/iconbutton.h \
components/iconmenu.h \
components/list.h \
components/radiobutton.h \
components/slider.h \
components/tab.h \
components/tabs.h \
components/textfield.h \
components/table.h \
ripple.h \
rippleoverlay.h