git-svn-id: file:///svnroot/family-shop-mgr@19 26eb2498-383b-47a6-be48-5d6f36779e85
[family-shop-mgr] / code / family-shop-mgr / FamilyShoppingManagerMainWindow.cpp
1 /*
2  * This file is part of family-shop-mgr.
3  *
4  * family-shop-mgr is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * family-shop-mgr is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with family-shop-mgr.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  * Author: Unai IRIGOYEN
18  * Date: 12/07/2009
19  *
20  */
21
22 #include "FamilyShoppingManagerMainWindow.h"
23 #include <QMenuBar>
24 #include <QMessageBox>
25
26 #include "ListManagerView.h"
27 #include "GoShoppingView.h"
28
29 FamilyShoppingManagerMainWindow::FamilyShoppingManagerMainWindow(QWidget *parent)
30     : QMainWindow(parent), activityView(NULL)
31 {
32     showListManager();
33
34     editMenu = new QMenu(tr("&Edit"), this);
35     editMenu->addAction(tr("Add category"));
36     editMenu->addAction(tr("Remove category"));
37     editMenu->addAction(tr("Add item"));
38     editMenu->addAction(tr("Remove item"));
39     menuBar()->addMenu(editMenu);
40
41     goShoppingAction = new QAction(tr("Go shopping!"), this);
42     connect(goShoppingAction, SIGNAL(triggered()),
43             this, SLOT(showGoShopping()));
44     menuBar()->addAction(goShoppingAction);
45
46     aboutAction = new QAction(tr("&About"), this);
47     connect(aboutAction, SIGNAL(triggered()), this, SLOT(showAbout()));
48     menuBar()->addAction(aboutAction);
49
50     setCentralWidget(activityView);
51     update();
52 }
53
54 FamilyShoppingManagerMainWindow::~FamilyShoppingManagerMainWindow()
55 {
56     delete activityView;
57 }
58
59 void FamilyShoppingManagerMainWindow::showListManager()
60 {
61     menuBar()->clear();
62     (showCheckedItemsAction) ? delete showCheckedItemsAction:;
63     (endShoppingAction) ? delete endShoppingAction:;
64
65     delete activityView;
66     activityView = new ListManagerView("ShoppingList.xml", this);
67
68     editMenu = new QMenu(tr("&Edit"), this);
69     editMenu->addAction(tr("Add category"));
70     editMenu->addAction(tr("Remove category"));
71     editMenu->addAction(tr("Add item"));
72     editMenu->addAction(tr("Remove item"));
73     menuBar()->addMenu(editMenu);
74
75     goShoppingAction = new QAction(tr("Go shopping!"), this);
76     connect(goShoppingAction, SIGNAL(triggered()),
77             this, SLOT(showGoShopping()));
78     menuBar()->addAction(goShoppingAction);
79
80     menuBar()->addAction(aboutAction);
81 }
82
83 void FamilyShoppingManagerMainWindow::showGoShopping()
84 {
85     menuBar()->clear();
86     delete editMenu;
87     delete goShoppingAction;
88
89     delete activityView;
90     activityView = new GoShoppingView("ShoppingList.xml", this);
91
92     showCheckedItemsAction = new QAction(tr("&Show checked"), this);
93     showCheckedItemsAction->setCheckable(true);
94     connect(showCheckedItemsAction, SIGNAL(toggled(bool)),
95             activityView, SLOT(showChecked(bool)));
96     menuBar()->addAction(showCheckedItemsAction);
97
98     endShoppingAction = new QAction(tr("&End shopping"), this);
99     connect(endShoppingAction, SIGNAL(triggered()),
100             this, SLOT(showListManager()));
101     menuBar()->addAction(endShoppingAction);
102
103     menuBar()->addAction(aboutAction);
104 }
105
106 void FamilyShoppingManagerMainWindow::showAbout()
107 {
108     QString text;
109     text = "Application name: Family shopping manager\n";
110     text += "Author: Unai IRIGOYEN\n\n";
111     text += "Licence: GPL";
112     QMessageBox::about(this,tr("About"), text);
113 }