New Blinds Raise Interval Selector Component for ListViews

Outsourced Styles for RadioButton and TextField
This commit is contained in:
Felix Hammer
2015-08-17 14:51:30 +02:00
parent ee897f17ef
commit 27946480cd
9 changed files with 361 additions and 0 deletions
@@ -0,0 +1,7 @@
#include "createlocalgameimpl.h"
CreateLocalGameImpl::CreateLocalGameImpl(QObject *parent) : QObject(parent)
{
}
+16
View File
@@ -0,0 +1,16 @@
#ifndef CREATELOCALGAMEIMPL_H
#define CREATELOCALGAMEIMPL_H
class CreateLocalGameImpl : public QObject
{
Q_OBJECT
public:
explicit CreateLocalGameImpl(QObject *parent = 0);
signals:
public slots:
};
#endif // CREATELOCALGAMEIMPL_H
+7
View File
@@ -0,0 +1,7 @@
#include "startimpl.h"
StartImpl::StartImpl(QObject *parent) : QObject(parent)
{
}
+16
View File
@@ -0,0 +1,16 @@
#ifndef STARTIMPL_H
#define STARTIMPL_H
class StartImpl : public QObject
{
Q_OBJECT
public:
explicit StartImpl(QObject *parent = 0);
signals:
public slots:
};
#endif // STARTIMPL_H