~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to kde/src/widgets/calltreeitemdelegate.h

  • Committer: Jackson Doak
  • Date: 2013-07-10 21:04:46 UTC
  • mfrom: (20.1.3 sid)
  • Revision ID: noskcaj@ubuntu.com-20130710210446-y8f587vza807icr9
Properly merged from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009-2013 by Savoir-Faire Linux                         *
 
3
 *   Author : Emmanuel Lepage Valle <emmanuel.lepage@savoirfairelinux.com >*
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 3 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
17
 **************************************************************************/
 
18
#ifndef CALL_TREE_ITEM_DELEGATE_H
 
19
#define CALL_TREE_ITEM_DELEGATE_H
 
20
 
 
21
#include <QtGui/QStyledItemDelegate>
 
22
 
 
23
//SFLPhone
 
24
#include "conferencebox.h"
 
25
class CallView;
 
26
 
 
27
///CallTreeItemDelegate: Delegates for CallTreeItem
 
28
class CallTreeItemDelegate : public QStyledItemDelegate
 
29
{
 
30
public:
 
31
   CallTreeItemDelegate(CallView* widget,QPalette pal);
 
32
   QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const;
 
33
   QRect fullCategoryRect(const QStyleOptionViewItem& option, const QModelIndex& index) const;
 
34
   virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
 
35
 
 
36
private:
 
37
   CallView*      m_tree            ;
 
38
   ConferenceBox  m_ConferenceDrawer;
 
39
   QSize          m_SH              ;
 
40
   int            m_LeftMargin      ;
 
41
   int            m_RightMargin     ;
 
42
   QPalette       m_Pal             ;
 
43
};
 
44
 
 
45
#endif