From fb58d275c10c990cdeef439085a2c40137277ab6 Mon Sep 17 00:00:00 2001 From: laserpants Date: Mon, 18 Apr 2016 16:08:45 +0300 Subject: [PATCH] add Scrollbar stub --- components/scrollbar.cpp | 1 + components/scrollbar.h | 4 ++++ qt-material-widgets.pro | 6 ++++-- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 components/scrollbar.cpp create mode 100644 components/scrollbar.h diff --git a/components/scrollbar.cpp b/components/scrollbar.cpp new file mode 100644 index 0000000..d7a5791 --- /dev/null +++ b/components/scrollbar.cpp @@ -0,0 +1 @@ +#include "scrollbar.h" diff --git a/components/scrollbar.h b/components/scrollbar.h new file mode 100644 index 0000000..22e976b --- /dev/null +++ b/components/scrollbar.h @@ -0,0 +1,4 @@ +#ifndef SCROLLBAR_H +#define SCROLLBAR_H + +#endif // SCROLLBAR_H diff --git a/qt-material-widgets.pro b/qt-material-widgets.pro index 5f98049..907feb5 100644 --- a/qt-material-widgets.pro +++ b/qt-material-widgets.pro @@ -47,7 +47,8 @@ SOURCES += main.cpp\ components/avatar.cpp \ examples/avatarexamples.cpp \ examples/menuexamples.cpp \ - components/menu.cpp + components/menu.cpp \ + components/scrollbar.cpp HEADERS += mainwindow.h \ style.h \ @@ -88,4 +89,5 @@ HEADERS += mainwindow.h \ components/avatar.h \ examples/avatarexamples.h \ examples/menuexamples.h \ - components/menu.h + components/menu.h \ + components/scrollbar.h