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

« back to all changes in this revision

Viewing changes to kde/src/widgets/SFLPhoneTray.cpp

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-02-18 21:47:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120218214709-6362d71gqdsdkrj5
Tags: 1.0.2-1
* New upstream release
  - remove logging patch (applied upstream)
  - update s390 patch since it was partially applied upstream
* Include the Evolution plugin as a separate binary package

* Fix compilation issues on SH4 (closes: #658987)
* Merge Ubuntu's binutils-gold linking fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009-2012 by Savoir-Faire Linux                         *
 
3
 *   Author : Jérémy Quentin <jeremy.quentin@savoirfairelinux.com>         *
 
4
 *            Emmanuel Lepage Vallee <emmanuel.lepage@savoirfairelinux.com>*
 
5
 *                                                                         *
 
6
 *   This program is free software; you can redistribute it and/or modify  *
 
7
 *   it under the terms of the GNU General Public License as published by  *
 
8
 *   the Free Software Foundation; either version 3 of the License, or     *
 
9
 *   (at your option) any later version.                                   *
 
10
 *                                                                         *
 
11
 *   This program is distributed in the hope that it will be useful,       *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU General Public License for more details.                          *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU General Public License     *
 
17
 *   along with this program; if not, write to the                         *
 
18
 *   Free Software Foundation, Inc.,                                       *
 
19
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
20
 **************************************************************************/
 
21
 
 
22
//Parent
 
23
#include "SFLPhoneTray.h"
 
24
 
 
25
//Qt
 
26
#include <QtGui/QMenu>
 
27
#include <QtGui/QIcon>
 
28
 
 
29
//KDE
 
30
#include <KDebug>
 
31
#include <KAction>
 
32
 
 
33
///Constructor
 
34
SFLPhoneTray::SFLPhoneTray(QIcon icon, QWidget *parent)
 
35
      : KSystemTrayIcon(icon, parent),
 
36
         m_pTrayIconMenu(0),
 
37
         m_Init(false)
 
38
{
 
39
}
 
40
 
 
41
///Destructor
 
42
SFLPhoneTray::~SFLPhoneTray()
 
43
{
 
44
}
 
45
 
 
46
///Initializer
 
47
bool SFLPhoneTray::initialize()
 
48
{
 
49
   if ( m_Init ) {
 
50
      kDebug() << "Already initialized.";
 
51
      return false;
 
52
   }
 
53
 
 
54
   m_pTrayIconMenu = new QMenu(parentWidget());
 
55
   setContextMenu(m_pTrayIconMenu);
 
56
 
 
57
   m_Init = true;
 
58
 
 
59
   return true;
 
60
}
 
61
 
 
62
 
 
63
/*****************************************************************************
 
64
 *                                                                           *
 
65
 *                                  Mutator                                  *
 
66
 *                                                                           *
 
67
 ****************************************************************************/
 
68
 
 
69
///Add a new action
 
70
void SFLPhoneTray::addAction(KAction *action)
 
71
{
 
72
   m_pTrayIconMenu->addAction(action);
 
73
}
 
 
b'\\ No newline at end of file'