Main Page | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

ProgItem.h

00001 /***************************************************************************
00002  *   Copyright (C) 2006 by Graeme Foster                                   *
00003  *   email    foster.graeme@gmail.com                                      *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU General Public License as published by  *
00007  *   the Free Software Foundation; either version 2 of the License, or     *
00008  *   (at your option) any later version.                                   *
00009  *                                                                         *
00010  *   This program is distributed in the hope that it will be useful,       *
00011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00013  *   GNU General Public License for more details.                          *
00014  *                                                                         *
00015  *   You should have received a copy of the GNU General Public License     *
00016  *   along with this program; if not, write to the                         *
00017  *   Free Software Foundation, Inc.,                                       *
00018  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
00019  ***************************************************************************/
00020 #ifndef __PROG_ITEM_H
00021 #define __PROG_ITEM_H
00022 
00023 #include "RootItem.h"
00024 
00025 #include "Programme.h"
00026 
00027 class ProgItem : public RootItem
00028 {
00029         public: // enums
00030                 enum Columns {COL_NAME=0, COL_ABBREV, COL_SEMESTER, COL_INSTITUTE};
00031         private: // Properties
00032                 int semester; // The Number of semesters 
00033         public: // Constructor
00034                 ProgItem(Programme * ProgObj, RootItem *parent = 0, int cc =0, int sem =0);
00035                 ProgItem(ProgItem & pi);
00036                 ~ProgItem(){};
00037         // Get Methods
00038                 inline virtual Programme * getItemData()const {return static_cast<Programme * >(itemData);}
00039                 inline Programme * getProgramme()   {return getItemData();}
00040                 inline Institute * getInstitute()   {return  getItemData()->getInstitute();}
00041                 inline QString getDescription()const{return itemData->getDescription();}
00042                 inline QString getInstName()const   {return getItemData()->getInstName();}
00043                 inline QString getProgName()const   {return getItemData()->getName();}
00044                 inline QString getProgAbbrev()const {return getItemData()->getAbbrev();}
00045                 inline QString getSemDesc()const    {return QString::number(semester);}
00046                 QVariant data(int column) const;
00047         // Set Methods
00048                 inline bool setProgName(QString name)    {return getItemData()->setName(name);}
00049                 inline bool setProgAbbrev(QString abbrev){return getItemData()->setAbbrev(abbrev);}
00050                 bool setData(int column, const QVariant & value);
00051         // database manipulation
00052                 inline void dbSave();
00053                 inline void dbDelete();
00054 };
00055 
00056 void ProgItem::dbSave()
00057 {
00058         getItemData()->save(Programme::insertSQL, Programme::updateSQL, Programme::errorSQL);
00059 }
00060 
00061 void ProgItem::dbDelete()
00062 {
00063         getItemData()->remove(Programme::deleteSQL, Programme::errorSQL);
00064 }
00065 
00066 #endif

Generated on Thu Apr 6 16:27:17 2006 for time-table by  doxygen 1.4.4