Documentation: Menus.docbook Composer menu Message and correcct formatting.
[kdepim.git] / korganizer / publishdialog.h
blob23f9895fd72610003daae9883cc6eb382a253e0c
1 /*
2 This file is part of KOrganizer.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
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 2 of the License, or
8 (at your option) any later version.
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.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
24 #ifndef KORG_PUBLISHDIALOG_H
25 #define KORG_PUBLISHDIALOG_H
27 #include "ui_publishdialog_base.h"
29 #include <KCalCore/Attendee>
31 #include <KDialog>
33 class PublishDialog_base;
35 class PublishDialog : public KDialog
37 Q_OBJECT
38 public:
39 explicit PublishDialog( QWidget *parent=0 );
40 ~PublishDialog();
42 void addAttendee( const KCalCore::Attendee::Ptr &attendee );
43 QString addresses();
45 signals:
46 void numMessagesChanged( int );
48 protected slots:
49 void addItem();
50 void removeItem();
51 void openAddressbook();
52 void updateItem();
53 void updateInput();
55 protected:
56 Ui::PublishDialog_base mUI;
59 #endif