From: onil Date: Thu, 17 Dec 2009 11:02:39 +0000 (+0000) Subject: git-svn-id: file:///svnroot/family-shop-mgr@13 26eb2498-383b-47a6-be48-5d6f36779e85 X-Git-Url: http://git.maemo.org/git/?p=family-shop-mgr;a=commitdiff_plain;h=13c12ed50a187eb9d101a6243170d623433869df git-svn-id: file:///svnroot/family-shop-mgr@13 26eb2498-383b-47a6-be48-5d6f36779e85 --- diff --git a/code/family-shop-mgr/GoShopping.ui b/code/family-shop-mgr/GoShopping.ui index 92e0978..b756f7d 100644 --- a/code/family-shop-mgr/GoShopping.ui +++ b/code/family-shop-mgr/GoShopping.ui @@ -1,7 +1,7 @@ - Form - + GoShoppingView + 0 diff --git a/code/family-shop-mgr/GoShoppingView.cpp b/code/family-shop-mgr/GoShoppingView.cpp new file mode 100644 index 0000000..e841f7d --- /dev/null +++ b/code/family-shop-mgr/GoShoppingView.cpp @@ -0,0 +1,34 @@ +/* + * This file is part of family-shop-mgr. + * + * family-shop-mgr 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. + * + * family-shop-mgr 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 family-shop-mgr. If not, see . + * + * Author: Unai IRIGOYEN + * Date: 12/17/2009 + * + */ + +#include "GoShoppingView.h" +#include "ui_GoShopping.h" + +GoShoppingView::GoShoppingView(QWidget *parent) + :QWidget(parent), ui(new Ui::GoShoppingView) +{ + ui->setupUi(this); +} + +GoShoppingView::~GoShoppingView() +{ + delete ui; +} diff --git a/code/family-shop-mgr/GoShoppingView.h b/code/family-shop-mgr/GoShoppingView.h new file mode 100644 index 0000000..c91ad79 --- /dev/null +++ b/code/family-shop-mgr/GoShoppingView.h @@ -0,0 +1,44 @@ +/* + * This file is part of family-shop-mgr. + * + * family-shop-mgr 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. + * + * family-shop-mgr 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 family-shop-mgr. If not, see . + * + * Author: Unai IRIGOYEN + * Date: 12/17/2009 + * + */ + +#ifndef GOSHOPPINGVIEW_H +#define GOSHOPPINGVIEW_H + +#include + +namespace Ui +{ + class GoShoppingView; +} + +class GoShoppingView : public QWidget +{ +Q_OBJECT + +public: + GoShoppingView(QWidget *parent = 0); + ~GoShoppingView(); + +private: + Ui::GoShoppingView *ui; +}; + +#endif // GOSHOPPINGVIEW_H diff --git a/code/family-shop-mgr/ListManager.ui b/code/family-shop-mgr/ListManager.ui index 205ddf7..39751ad 100644 --- a/code/family-shop-mgr/ListManager.ui +++ b/code/family-shop-mgr/ListManager.ui @@ -1,12 +1,12 @@ - Form - + ListManagerView + 0 0 - 233 + 257 300 diff --git a/code/family-shop-mgr/ListManagerView.cpp b/code/family-shop-mgr/ListManagerView.cpp new file mode 100644 index 0000000..d602753 --- /dev/null +++ b/code/family-shop-mgr/ListManagerView.cpp @@ -0,0 +1,34 @@ +/* + * This file is part of family-shop-mgr. + * + * family-shop-mgr 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. + * + * family-shop-mgr 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 family-shop-mgr. If not, see . + * + * Author: Unai IRIGOYEN + * Date: 12/17/2009 + * + */ + +#include "ListManagerView.h" +#include "ui_ListManager.h" + +ListManagerView::ListManagerView(QWidget *parent) + :QWidget(parent), ui(new Ui::ListManagerView) +{ + ui->setupUi(this); +} + +ListManagerView::~ListManagerView() +{ + delete ui; +} diff --git a/code/family-shop-mgr/ListManagerView.h b/code/family-shop-mgr/ListManagerView.h new file mode 100644 index 0000000..a91263a --- /dev/null +++ b/code/family-shop-mgr/ListManagerView.h @@ -0,0 +1,44 @@ +/* + * This file is part of family-shop-mgr. + * + * family-shop-mgr 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. + * + * family-shop-mgr 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 family-shop-mgr. If not, see . + * + * Author: Unai IRIGOYEN + * Date: 12/17/2009 + * + */ + +#ifndef LISTMANAGERVIEW_H +#define LISTMANAGERVIEW_H + +#include + +namespace Ui +{ + class ListManagerView; +} + +class ListManagerView : public QWidget +{ +Q_OBJECT + +public: + ListManagerView(QWidget *parent = 0); + ~ListManagerView(); + +private: + Ui::ListManagerView *ui; +}; + +#endif // LISTMANAGERVIEW_H diff --git a/code/family-shop-mgr/family-shop-mgr.pro b/code/family-shop-mgr/family-shop-mgr.pro index 8283873..2ed95e0 100644 --- a/code/family-shop-mgr/family-shop-mgr.pro +++ b/code/family-shop-mgr/family-shop-mgr.pro @@ -7,10 +7,14 @@ TEMPLATE = app SOURCES += main.cpp \ FamilyShoppingManagerStartView.cpp \ ShoppingTreeModel.cpp \ - ShoppingTreeItem.cpp + ShoppingTreeItem.cpp \ + GoShoppingView.cpp \ + ListManagerView.cpp HEADERS += FamilyShoppingManagerStartView.h \ ShoppingTreeModel.h \ - ShoppingTreeItem.h + ShoppingTreeItem.h \ + GoShoppingView.h \ + ListManagerView.h FORMS += FamilyShoppingManagerStartView.ui \ ListManager.ui \ GoShopping.ui diff --git a/code/family-shop-mgr/family-shop-mgr.pro.user b/code/family-shop-mgr/family-shop-mgr.pro.user index 3a373c0..9a81fae 100644 --- a/code/family-shop-mgr/family-shop-mgr.pro.user +++ b/code/family-shop-mgr/family-shop-mgr.pro.user @@ -67,7 +67,7 @@ Release 0 - 202 + 2 0 @@ -76,7 +76,9 @@ buildConfiguration-S60_3rd_FP1 (Qt ) Debug S60_3rd_FP1 (Qt ) Debug - 7 + 0 + 2 + 10 @@ -86,6 +88,7 @@ S60_3rd_FP1 (Qt ) Release 0 2 + 8