SVN_SILENT made messages (after extraction)
[kdepim.git] / calendarsupport / cellitem.h
blobade978e9152a68ce511b08abb0e742f14c6d18f1
1 /*
2 Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
4 This program 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 2 of the License, or
7 (at your option) any later version.
9 This program 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.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 As a special exception, permission is given to link this program
19 with any edition of Qt, and distribute the resulting executable,
20 without including the source code for Qt in the source distribution.
22 #ifndef CALENDARSUPPORT_CELLITEM_H
23 #define CALENDARSUPPORT_CELLITEM_H
25 #include "calendarsupport_export.h"
26 #include <QList>
28 namespace CalendarSupport
31 class CALENDARSUPPORT_EXPORT CellItem
33 public:
34 CellItem()
35 : mSubCells(0), mSubCell(-1)
38 virtual ~CellItem() {}
39 void setSubCells(int v)
41 mSubCells = v;
43 int subCells() const
45 return mSubCells;
48 void setSubCell(int v)
50 mSubCell = v;
52 int subCell() const
54 return mSubCell;
57 virtual bool overlaps(CellItem *other) const = 0;
59 virtual QString label() const;
61 /**
62 Place item @p placeItem into stripe containing items @p cells in a
63 way that items don't overlap.
64 @param cells The list of other cell items to be laid out parallel to the placeItem.
65 @param placeItem The item to be laid out.
67 @return Placed items
69 static QList<CellItem *> placeItem(QList<CellItem *> cells, CellItem *placeItem);
71 private:
72 int mSubCells;
73 int mSubCell;
78 #endif