summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
blob: f5c9d9ddf07ee64189bd45564f8eb9d536a5b52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* -*- c++ -*- */
/***************************************************************************
 *            mainwindow.cc
 *
 *  Sat Apr 23 18:59:48 CEST 2022
 *  Copyright 2022 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Qookie.
 *
 *  Qookie is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  Qookie is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Qookie; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "mainwindow.h"

#include <iostream>

#include <QToolBar>
#include <QDockWidget>
#include <QLabel>
#include <QPixmap>
#include <QListWidget>

#include "database.h"
#include "viewer.h"

MainWindow::MainWindow(Database& db)
	: db(db)
{
	//connect(document, SIGNAL(documentStatusChanged(bool)), this, SLOT(updateDocumentStatus(bool)));
	//updateDocumentStatus(document->hasChanged());

	//
	// Create the toolbar
	//
	QToolBar *toolbar = new QToolBar("A toolbar");
	/*
	QAction *act_load = toolbar->addAction("Load");
	//  connect(act_load, SIGNAL(triggered()), &document, SLOT(load()));

	QAction *act_save = toolbar->addAction("Save");
	//  connect(act_save, SIGNAL(triggered()), &document, SLOT(save()));
	*/
	//
	// Create the browser docking widget
	//
	QDockWidget *browser = new QDockWidget("Browser");
	listWidget = new QListWidget(this);
	listWidget->setIconSize({64, 64});
	browser->setWidget(listWidget);

	//
	// Create the viewer
	//
	viewer = new Viewer();
	setCentralWidget(viewer);

	addToolBar(Qt::TopToolBarArea, toolbar);
	addDockWidget(Qt::LeftDockWidgetArea, browser);

	QObject::connect(listWidget, &QListWidget::currentRowChanged,
	                 this, &MainWindow::itemChanged);

	listWidget->setSortingEnabled(true);
	readDatabase();
}

MainWindow::~MainWindow()
{
}

//void MainWindow::updateDocumentStatus(bool changed)
//{
//	setWindowTitle(QString("foo bar") + (changed?"*":""));
//}

void MainWindow::readDatabase()
{
	auto items = db.getRecipes();
	for(const auto& item : items)
	{
		QListWidgetItem* listItem = new QListWidgetItem();
		listItem->setText(QString::fromUtf8(item.title.data()));
		if(!item.image.empty())
		{
			QIcon icon;
			QImage image;
			if(item.image.substr(0, 4) == "/9j/") // Image is base64 encoded
			{
				QByteArray data = QByteArray::fromBase64(QByteArray(item.image.data(), item.image.size()));
				image = QImage::fromData(data);
			}
			else
			{
				image = QImage::fromData((const uchar*)item.image.data(), item.image.size());
			}
			icon.addPixmap(QPixmap::fromImage(image));
			listItem->setIcon(icon);
		}
		else
		{
			QIcon icon;
			QImage image(QSize({1,1}), QImage::Format_RGBA8888);
			image.fill(0);
			icon.addPixmap(QPixmap::fromImage(image));
			listItem->setIcon(icon);
		}
		listItem->setData(Qt::UserRole, item.id);
		listWidget->addItem(listItem);
	}
}

void MainWindow::itemChanged(int)
{
	auto item = listWidget->currentItem();
	auto id = item->data(Qt::UserRole).toInt();
	auto recipe = db.getRecipe(id);
	viewer->show(recipe);
}