moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kvoctrain / kvoctrain / docprop-dialogs / TitlePage.h
blobe4091dcbe8e60c969274fab58dfa20e682267e0d
1 /***************************************************************************
3 enter document title and author
5 -----------------------------------------------------------------------
7 begin : Thu Mar 11 20:50:53 MET 1999
9 copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
10 (C) 2001 The KDE-EDU team
11 (C) 2005 Peter Hedlund <peter@peterandlinda.com>
13 -----------------------------------------------------------------------
15 ***************************************************************************
17 ***************************************************************************
18 * *
19 * This program is free software; you can redistribute it and/or modify *
20 * it under the terms of the GNU General Public License as published by *
21 * the Free Software Foundation; either version 2 of the License, or *
22 * (at your option) any later version. *
23 * *
24 ***************************************************************************/
27 #ifndef TitleDialog_included
28 #define TitleDialog_included
30 #include "TitlePageForm.h"
32 class TitlePage : public TitlePageForm
34 Q_OBJECT
36 public:
38 TitlePage
40 QString title,
41 QString author,
42 QString license,
43 QString doc_remark,
44 QWidget *parent = NULL,
45 const char *name = NULL
48 QString getTitle() { return title; }
49 QString getAuthor() { return author; }
50 QString getLicense() { return license; }
51 QString getDocRemark() { return doc_remark; }
53 protected slots:
55 void slotTitleChanged(const QString&);
56 void slotAuthorChanged();
57 void slotLicenseChanged(const QString&);
58 void slotDocRemarkChanged();
60 private:
62 QString title;
63 QString author;
64 QString license;
65 QString doc_remark;
68 #endif // TitlePage_included