1 /***************************************************************************
2   kraftdocheaderview.h  - inherited class from designer generated class
3                              -------------------
4     begin                : Sept. 2006
5     copyright            : (C) 2006 by Klaas Freitag
6     email                : freitag@kde.org
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 #ifndef KRAFTDOCHEADEREDIT_H
18 #define KRAFTDOCHEADEREDIT_H
19 
20 #include "ui_docheader.h"
21 #include "kraftdocedit.h"
22 
23 class KraftDocHeaderEdit : public KraftDocEdit
24 {
25     Q_OBJECT
26 public:
27   KraftDocHeaderEdit( QWidget* );
28 
29   // FIXME: Remove access to internal widgets
docHeaderEdit()30   Ui::DocHeaderEdit *docHeaderEdit() { return mDocHeaderEdit; }
31 
32 signals:
33   void pickAddressee();
34 
35 private:
36   Ui::DocHeaderEdit *mDocHeaderEdit;
37 };
38 
39 #endif
40 
41