Add a bunch of stubs for new components
This commit is contained in:
parent
146de0e0a4
commit
8859e2ae2f
|
@ -38,7 +38,10 @@ SOURCES = \
|
||||||
qtmaterialdialog.cpp \
|
qtmaterialdialog.cpp \
|
||||||
qtmaterialdrawer_internal.cpp \
|
qtmaterialdrawer_internal.cpp \
|
||||||
qtmaterialdrawer.cpp \
|
qtmaterialdrawer.cpp \
|
||||||
qtmaterialappbar.cpp
|
qtmaterialappbar.cpp \
|
||||||
|
qtmaterialautocomplete.cpp \
|
||||||
|
qtmaterialpaper.cpp \
|
||||||
|
qtmaterialtable.cpp
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
qtmaterialavatar_p.h \
|
qtmaterialavatar_p.h \
|
||||||
qtmaterialavatar.h \
|
qtmaterialavatar.h \
|
||||||
|
@ -100,6 +103,12 @@ HEADERS = \
|
||||||
qtmaterialdrawer_p.h \
|
qtmaterialdrawer_p.h \
|
||||||
qtmaterialdrawer.h \
|
qtmaterialdrawer.h \
|
||||||
qtmaterialappbar.h \
|
qtmaterialappbar.h \
|
||||||
qtmaterialappbar_p.h
|
qtmaterialappbar_p.h \
|
||||||
|
qtmaterialautocomplete.h \
|
||||||
|
qtmaterialautocomplete_p.h \
|
||||||
|
qtmaterialpaper.h \
|
||||||
|
qtmaterialpaper_p.h \
|
||||||
|
qtmaterialtable.h \
|
||||||
|
qtmaterialtable_p.h
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
resources.qrc
|
resources.qrc
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
#include "qtmaterialautocomplete.h"
|
||||||
|
#include "qtmaterialautocomplete_p.h"
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALAUTOCOMPLETE_H
|
||||||
|
#define QTMATERIALAUTOCOMPLETE_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALAUTOCOMPLETE_H
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALAUTOCOMPLETE_P_H
|
||||||
|
#define QTMATERIALAUTOCOMPLETE_P_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALAUTOCOMPLETE_P_H
|
|
@ -0,0 +1,2 @@
|
||||||
|
#include "qtmaterialpaper.h"
|
||||||
|
#include "qtmaterialpaper_p.h"
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALPAPER_H
|
||||||
|
#define QTMATERIALPAPER_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALPAPER_H
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALPAPER_P_H
|
||||||
|
#define QTMATERIALPAPER_P_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALPAPER_P_H
|
|
@ -0,0 +1,2 @@
|
||||||
|
#include "qtmaterialtable.h"
|
||||||
|
#include "qtmaterialtable_p.h"
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALTABLE_H
|
||||||
|
#define QTMATERIALTABLE_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALTABLE_H
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALTABLE_P_H
|
||||||
|
#define QTMATERIALTABLE_P_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALTABLE_P_H
|
Loading…
Reference in New Issue