move components to separate directory
This commit is contained in:
parent
2235ab1991
commit
709aa9e58b
|
@ -4,9 +4,9 @@
|
||||||
#include <QMenuBar>
|
#include <QMenuBar>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "flatbutton.h"
|
#include "components/flatbutton.h"
|
||||||
#include "iconbutton.h"
|
#include "components/iconbutton.h"
|
||||||
#include "appbar.h"
|
#include "components/appbar.h"
|
||||||
|
|
||||||
MainWindow::MainWindow(QWidget *parent)
|
MainWindow::MainWindow(QWidget *parent)
|
||||||
: QMainWindow(parent)
|
: QMainWindow(parent)
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
#-------------------------------------------------
|
|
||||||
#
|
|
||||||
# Project created by QtCreator 2016-03-18T11:23:14
|
|
||||||
#
|
|
||||||
#-------------------------------------------------
|
|
||||||
|
|
||||||
QT += core gui qml
|
QT += core gui qml
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
@ -11,40 +5,39 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
TARGET = qt-material-widgets
|
TARGET = qt-material-widgets
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
|
|
||||||
SOURCES += main.cpp\
|
SOURCES += main.cpp\
|
||||||
mainwindow.cpp \
|
mainwindow.cpp \
|
||||||
style.cpp \
|
style.cpp \
|
||||||
appbar.cpp \
|
components/appbar.cpp \
|
||||||
checkbox.cpp \
|
components/checkbox.cpp \
|
||||||
dialog.cpp \
|
components/dialog.cpp \
|
||||||
flatbutton.cpp \
|
components/flatbutton.cpp \
|
||||||
iconbutton.cpp \
|
components/iconbutton.cpp \
|
||||||
iconmenu.cpp \
|
components/iconmenu.cpp \
|
||||||
list.cpp \
|
components/list.cpp \
|
||||||
radiobutton.cpp \
|
components/radiobutton.cpp \
|
||||||
slider.cpp \
|
components/slider.cpp \
|
||||||
tab.cpp \
|
components/tab.cpp \
|
||||||
tabs.cpp \
|
components/tabs.cpp \
|
||||||
textfield.cpp \
|
components/textfield.cpp \
|
||||||
table.cpp \
|
components/table.cpp \
|
||||||
ripple.cpp \
|
ripple.cpp \
|
||||||
rippleoverlay.cpp
|
rippleoverlay.cpp
|
||||||
|
|
||||||
HEADERS += mainwindow.h \
|
HEADERS += mainwindow.h \
|
||||||
style.h \
|
style.h \
|
||||||
appbar.h \
|
components/appbar.h \
|
||||||
checkbox.h \
|
components/checkbox.h \
|
||||||
dialog.h \
|
components/dialog.h \
|
||||||
flatbutton.h \
|
components/flatbutton.h \
|
||||||
iconbutton.h \
|
components/iconbutton.h \
|
||||||
iconmenu.h \
|
components/iconmenu.h \
|
||||||
list.h \
|
components/list.h \
|
||||||
radiobutton.h \
|
components/radiobutton.h \
|
||||||
slider.h \
|
components/slider.h \
|
||||||
tab.h \
|
components/tab.h \
|
||||||
tabs.h \
|
components/tabs.h \
|
||||||
textfield.h \
|
components/textfield.h \
|
||||||
table.h \
|
components/table.h \
|
||||||
ripple.h \
|
ripple.h \
|
||||||
rippleoverlay.h
|
rippleoverlay.h
|
||||||
|
|
Loading…
Reference in New Issue