~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (1.1.11)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20140128182336-3xenud1kbnwmf3mz
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 Nokia Corporation                                  *
 
3
 *                                                                         *
 
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 3 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
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.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
16
 **************************************************************************/
 
17
#ifndef VIDEOSCENE_H
 
18
#define VIDEOSCENE_H
 
19
 
 
20
#include <QtGui/QGraphicsScene>
 
21
 
 
22
//SFLPhone
 
23
class VideoGLFrame;
 
24
class VideoToolbar;
 
25
 
 
26
class VideoScene : public QGraphicsScene
 
27
{
 
28
   Q_OBJECT
 
29
public:
 
30
   //Constructor
 
31
   VideoScene();
 
32
 
 
33
   //Mutator
 
34
   void drawBackground(QPainter *painter, const QRectF &rect);
 
35
 
 
36
   //Setters
 
37
   void setToolbar( VideoToolbar* tb    );
 
38
   void addFrame  ( VideoGLFrame* frame );
 
39
 
 
40
protected:
 
41
   //Events
 
42
   virtual void mousePressEvent  ( QGraphicsSceneMouseEvent* event      );
 
43
   virtual void mouseReleaseEvent( QGraphicsSceneMouseEvent* event      );
 
44
   virtual void mouseMoveEvent   ( QGraphicsSceneMouseEvent* event      );
 
45
   virtual void wheelEvent       ( QGraphicsSceneWheelEvent* wheelEvent );
 
46
 
 
47
private:
 
48
   //Atributes
 
49
   QList<VideoGLFrame*> m_lFrames        ;
 
50
   QColor               m_backgroundColor;
 
51
   VideoToolbar*        m_pToolbar       ;
 
52
//    QGraphicsRectItem *m_lightItem;
 
53
 
 
54
 
 
55
public Q_SLOTS:
 
56
   void setBackgroundColor();
 
57
   void frameChanged      ();
 
58
};
 
59
 
 
60
#endif