~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to ktnef/messagepropertydialog.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  This file is part of KTnef.
 
3
 
 
4
  Copyright (C) 2003 Michael Goffioul <kdeprint@swing.be>
 
5
  Copyright (c) 2012 Allen Winter <winter@kde.org>
 
6
 
 
7
  This program is free software; you can redistribute it and/or modify
 
8
  it under the terms of the GNU General Public License as published by
 
9
  the Free Software Foundation; either version 2 of the License, or
 
10
  (at your option) any later version.
 
11
 
 
12
  You should have received a copy of the GNU General Public License
 
13
  along with this program; if not, write to the Free Software Foundation,
 
14
  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 
15
*/
 
16
 
 
17
#ifndef MESSAGEPROPERTYDIALOG_H
 
18
#define MESSAGEPROPERTYDIALOG_H
 
19
 
 
20
#include <KDialog>
 
21
 
 
22
namespace KTnef {
 
23
  class KTNEFMessage;
 
24
}
 
25
using namespace KTnef;
 
26
 
 
27
class QTreeWidget;
 
28
 
 
29
class MessagePropertyDialog : public KDialog
 
30
{
 
31
  Q_OBJECT
 
32
  public:
 
33
    MessagePropertyDialog( QWidget *parent, KTNEFMessage *msg );
 
34
 
 
35
  protected slots:
 
36
    void slotUser1();
 
37
 
 
38
  private:
 
39
    KTNEFMessage *mMessage;
 
40
    QTreeWidget *mListView;
 
41
};
 
42
 
 
43
#endif