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

« back to all changes in this revision

Viewing changes to kde/src/AccountView.h

  • 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 : 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, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 **************************************************************************/
 
20
#ifndef ACCOUNT_VIEW_H
 
21
#define ACCOUNT_VIEW_H
 
22
 
 
23
#include "lib/Item.h"
 
24
#include "lib/Account.h"
 
25
#include "widgets/AccountItemWidget.h"
 
26
 
 
27
//Qt
 
28
class QListWidgetItem;
 
29
 
 
30
//SFLPhone
 
31
class AccountItemWidget;
 
32
 
 
33
///@class AccountView List widgets displaying accounts
 
34
class AccountView : public Account, public Item<AccountItemWidget> {
 
35
   public:
 
36
      //Constructor
 
37
      AccountView   ();
 
38
      void initItem ();
 
39
 
 
40
      //Destructor
 
41
      ~AccountView(){};
 
42
 
 
43
      //Getters
 
44
      QListWidgetItem*   getItem           ()      ;
 
45
      AccountItemWidget* getItemWidget     ()      ;
 
46
      QColor             getStateColor     ()      ;
 
47
      const QString&     getStateColorName ()      ;
 
48
      bool               isChecked         () const;
 
49
 
 
50
      //Mutators
 
51
      static AccountView* buildExistingAccountFromId (const QString& _accountId );
 
52
      static AccountView* buildNewAccountFromAlias   (const QString& alias      );
 
53
      virtual void updateState();
 
54
 
 
55
   private:
 
56
      //Attributes
 
57
      QListWidgetItem*   m_pItem;
 
58
      AccountItemWidget* m_pWidget;
 
59
 
 
60
      //Private constructor
 
61
      void initItemWidget();
 
62
};
 
63
#endif