summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
blob: c1b05f774b8ddf0240968651a9a3156e6a384e4c (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
/* -*- 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 2 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 <QToolBar>
#include <QDockWidget>
#include <QLabel>
#include <QPixmap>
#include <QListWidget>

#include "database.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({128, 128});
	browser->setWidget(listWidget);

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

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

//	connect signal:
//	void itemChanged(QListWidgetItem *item) in listWidget to itemchanged slot

	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 = QImage::fromData((const uchar*)item.image.data(), item.image.size());
			icon.addPixmap(QPixmap::fromImage(image));
			listItem->setIcon(icon);
		}
		listItem->setData(Qt::UserRole, item.id);
		//listItem->setSizeHint({200,200});
		listWidget->addItem(listItem);
	}
}

//itemchanged slot(item*)
//{
//	id = item->data(Qt::UserRole);
//	auto recipe = db.getRecipe(id);
//	viewer->show(recipe);
//}