~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to kaddressbook/contactselectionwidget.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <kabc/addressee.h>
26
26
 
27
 
class QAbstractItemModel;
28
27
class QCheckBox;
29
28
class QItemSelectionModel;
30
29
class QLabel;
31
30
class QRadioButton;
32
31
 
33
 
class KJob;
34
32
 
35
33
namespace Akonadi
36
34
{
51
49
    /**
52
50
     * Creates a new contact selection widget.
53
51
     *
54
 
     * @param model The model that contains all available contacts.
55
52
     * @param selectionModel The model that contains the currently selected contacts.
56
53
     * @param parent The parent widget.
57
54
     */
58
 
    ContactSelectionWidget( QAbstractItemModel *model, QItemSelectionModel *selectionModel, QWidget *parent = 0 );
 
55
    ContactSelectionWidget( QItemSelectionModel *selectionModel, QWidget *parent = 0 );
59
56
 
60
57
    /**
61
58
     * Sets the @p message text.
79
76
    KABC::Addressee::List collectSelectedContacts() const;
80
77
    KABC::Addressee::List collectAddressBookContacts() const;
81
78
 
82
 
    QAbstractItemModel *mModel;
83
79
    QItemSelectionModel *mSelectionModel;
84
80
 
85
81
    QLabel *mMessageLabel;