moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kwordquiz / src / dlglanguage.h
blobb253286fba0e821783c390323cd2215e1dda053c
1 /***************************************************************************
2 dlglanguage.h - description
3 -------------------
4 copyright : (C) 2004 by Peter Hedlund
5 email : peter@peterandlinda.com
6 ***************************************************************************/
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
17 #ifndef DLGLANGUAGE_H
18 #define DLGLANGUAGE_H
20 #include <kdialogbase.h>
22 #include "dlglanguagebase.h"
24 class KCompletion;
26 /**
27 @author Peter Hedlund
29 class DlgLanguage : public KDialogBase {
30 Q_OBJECT
31 public:
32 DlgLanguage(QWidget *parent = 0, const char *name = 0, bool modal=true);
33 ~DlgLanguage();
35 void setLanguage(int index, const QString &lang);
36 QString Language(int index);
38 private:
39 DlgLanguageBase *dlgBase;
40 KCompletion * completion1;
41 KCompletion * completion2;
45 #endif