~ubuntu-branches/ubuntu/saucy/kdepimlibs/saucy-proposed

« back to all changes in this revision

Viewing changes to akonadi/calendar/publishdialog.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Scott Kitterman
  • Date: 2012-11-19 17:32:30 UTC
  • mfrom: (1.1.85)
  • Revision ID: package-import@ubuntu.com-20121119173230-xi32j2vpz82zlmmh
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release
* Remove 03_hide_akonadi_progressbar.diff now upstream
* Update .symbols file

[ Scott Kitterman ]
* Add libqjson-dev to build-depends since it is required for 4.10
* Update symbols files
* Drop FindAkonadi.cmake from debian/kdepimlibs5-dev.install since it is no
  longer provided by upstream
* Add FindQtOAuth.cmake to debian/kdepimlibs5-dev.install
* Document files we don't install in debian/NOT-INSTALLED
* Add new binary, libakonadi-socialutils4
  - Add to debian/control
  - Add to kdepimlibs metapackage depends
  - Add debian/libakonadi-socialutils4.install
  - Add debian/libakonadi-socialutils4.symbols 
* Update kdepimlibs5-dev.install for new headers for 4.10
* Add googletalkprotocol.desktop to debian/libakonadi-contact4.install
* Add missing symbols files for libakonadi-notes4 and libkalarmcal2
* Add dont_break_libkabc_abi.diff to fix ABI break - patch from José Manuel
  Santamaría Lema

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
 
3
 
 
4
  This library is free software; you can redistribute it and/or modify it
 
5
  under the terms of the GNU Library General Public License as published by
 
6
  the Free Software Foundation; either version 2 of the License, or (at your
 
7
  option) any later version.
 
8
 
 
9
  This library is distributed in the hope that it will be useful, but WITHOUT
 
10
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
11
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
 
12
  License for more details.
 
13
 
 
14
  You should have received a copy of the GNU Library General Public License
 
15
  along with this library; see the file COPYING.LIB.  If not, write to the
 
16
  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
17
  02110-1301, USA.
 
18
*/
 
19
#ifndef AKONADI_PUBLISHDIALOG_H
 
20
#define AKONADI_PUBLISHDIALOG_H
 
21
 
 
22
#include "akonadi-calendar_export.h"
 
23
 
 
24
#include <kcalcore/attendee.h>
 
25
#include <KDialog>
 
26
 
 
27
class PublishDialog_base;
 
28
 
 
29
// Uses akonadi-contact, so don't move this class to KCalUtils.
 
30
namespace Akonadi {
 
31
 
 
32
class AKONADI_CALENDAR_EXPORT PublishDialog : public KDialog
 
33
{
 
34
  Q_OBJECT
 
35
  public:
 
36
    explicit PublishDialog( QWidget *parent=0 );
 
37
    ~PublishDialog();
 
38
 
 
39
    void addAttendee( const KCalCore::Attendee::Ptr &attendee );
 
40
    QString addresses() const;
 
41
 
 
42
  Q_SIGNALS:
 
43
    void numMessagesChanged( int );
 
44
  private:
 
45
    //@cond PRIVATE
 
46
    class Private;
 
47
    Private *const d;
 
48
    //@endcond
 
49
};
 
50
 
 
51
}
 
52
 
 
53
#endif