Init commit for GitHub.

This commit is contained in:
mfreiholz
2015-12-09 12:21:38 +01:00
commit 343c5cc727
40 changed files with 1961 additions and 0 deletions

View File

@@ -0,0 +1,98 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QTime>
#include <QLabel>
#include <QTextEdit>
#include <QCalendarWidget>
#include <QFrame>
#include <QTreeView>
#include <QFileSystemModel>
#include "ads/container_widget.h"
#include "ads/section_widget.h"
#include "ads/section_content.h"
#include "icontitlewidget.h"
///////////////////////////////////////////////////////////////////////
static int CONTENT_COUNT = 0;
static ads::SectionContent::RefPtr createLongTextLabelSC()
{
auto w = new QLabel();
w->setWordWrap(true);
w->setAlignment(Qt::AlignTop | Qt::AlignLeft);
w->setText(QString("Lorem Ipsum ist ein einfacher Demo-Text für die Print- und Schriftindustrie. Lorem Ipsum ist in der Industrie bereits der Standard Demo-Text seit 1500, als ein unbekannter Schriftsteller eine Hand voll Wörter nahm und diese durcheinander warf um ein Musterbuch zu erstellen. Es hat nicht nur 5 Jahrhunderte überlebt, sondern auch in Spruch in die elektronische Schriftbearbeitung geschafft (bemerke, nahezu unverändert). Bekannt wurde es 1960, mit dem erscheinen von Letrase, welches Passagen von Lorem Ipsum enhielt, so wie Desktop Software wie Aldus PageMaker - ebenfalls mit Lorem Ipsum."));
return ads::SectionContent::newSectionContent(new IconTitleWidget(QIcon(), QString("Title %1").arg(++CONTENT_COUNT)), w);
}
static ads::SectionContent::RefPtr createCalendarSC()
{
auto w = new QCalendarWidget();
return ads::SectionContent::newSectionContent(new IconTitleWidget(QIcon(), QString("Title %1").arg(++CONTENT_COUNT)), w);
}
static ads::SectionContent::RefPtr createTreeSC()
{
auto m = new QFileSystemModel();
m->setRootPath(QDir::currentPath());
auto w = new QTreeView();
w->setModel(m);
return ads::SectionContent::newSectionContent(new IconTitleWidget(QIcon(), QString("Title %1").arg(++CONTENT_COUNT)), w);
}
///////////////////////////////////////////////////////////////////////
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QObject::connect(ui->actionAddSectionContent, &QAction::triggered, this, &MainWindow::onActionAddSectionContentTriggered);
// CREATE SOME TESTING DOCKS
_container = new ads::ContainerWidget();
_container->setOrientation(Qt::Vertical);
setCentralWidget(_container);
auto leftSection = new ads::SectionWidget(_container);
leftSection->addContent(createLongTextLabelSC());
_container->addSection(leftSection);
auto middleSection = new ads::SectionWidget(_container);
middleSection->addContent(createCalendarSC());
_container->addSection(middleSection);
auto middleBottom = new ads::SectionWidget(_container);
middleBottom->addContent(createLongTextLabelSC());
_container->addSection(middleBottom);
// _container->splitSections(middleSection, middleBottom, Qt::Vertical);
auto rightSection = new ads::SectionWidget(_container);
rightSection->addContent(createLongTextLabelSC());
_container->addSection(rightSection);
// auto middleTopRight = new ads::SectionWidget(_container);
// middleTopRight->addContent(createLongTextLabelSC());
// _container->splitSections(middleSection, middleTopRight);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::onActionAddSectionContentTriggered()
{
return;
// auto titleWidget = new IconTitleWidget(QIcon(), QString("Title"));
// auto contentWidget = createRandomWidget(-1, -1);
// auto content = ads::SectionContent::newSectionContent(titleWidget, contentWidget);
// auto section = new ads::SectionWidget(_container);
// _container->addSection(section);
// section->addContent(content);
}