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

InstItem.cpp

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 #include <QStringList>
00021 
00022 #include "InstItem.h"
00023 
00024 InstItem::InstItem(Institute * InstObj, RootItem *parent, int cc)
00025 :RootItem(parent,cc)
00026 {
00027         RTTI = INST_ITEM;
00028         itemData = InstObj;
00029         setColumnOrder(2, COL_NAME, COL_ABBREV);
00030         GUIPref * pref = GUIPref::Instance();
00031         setTextColour(2
00032                      ,pref->getColour(GUIPref::CT_INSTITUTE_TEXT,0)
00033                      ,pref->getColour(GUIPref::CT_INSTITUTE_TEXT,1));
00034         setBGColour(2
00035                    ,pref->getColour(GUIPref::CT_INSTITUTE_BG,0)
00036                    ,pref->getColour(GUIPref::CT_INSTITUTE_BG,1));
00037 }
00038 
00039 InstItem::InstItem(InstItem & ii)
00040 :RootItem(ii)
00041 {
00042         setColumnOrder(2, COL_NAME, COL_ABBREV);
00043         GUIPref * pref = GUIPref::Instance();
00044         setTextColour(2
00045                      ,pref->getColour(GUIPref::CT_INSTITUTE_TEXT,0)
00046                      ,pref->getColour(GUIPref::CT_INSTITUTE_TEXT,1));
00047         setBGColour(2
00048                    ,pref->getColour(GUIPref::CT_INSTITUTE_BG,0)
00049                    ,pref->getColour(GUIPref::CT_INSTITUTE_BG,1));
00050 }
00051 
00052 QVariant InstItem::data(int column) const
00053 {
00054         if (column >= columnCount())
00055                 return "";
00056         switch ((Columns)(col_order[column]))
00057         {
00058                 case COL_NAME:
00059                         return getInstName();
00060                 case COL_ABBREV:
00061                         return getInstAbbrev();
00062         }
00063         return "";
00064 }
00065 
00066 bool InstItem::setData(int column, const QVariant & value)
00067 {
00068         if (column >= columnCount())
00069                 return false;
00070         switch ((Columns)(col_order[column]))
00071         {
00072                 case COL_NAME:
00073                         return setInstName(value.toString());
00074                 case COL_ABBREV:
00075                         return setInstAbbrev(value.toString());
00076                 default:
00077                         return false;
00078         }
00079 }

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