parley
grammardialog.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 Copyright 2007 Frederik Gladhorn <frederik.gladhorn@kdemail.net> 00003 *************************************************************************** 00004 00005 *************************************************************************** 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 ***************************************************************************/ 00013 00014 #ifndef GRAMMARDIALOG_H 00015 #define GRAMMARDIALOG_H 00016 00017 #include <KPageDialog> 00018 #include <QList> 00019 00020 class KEduVocDocument; 00021 class LangPropPage; 00022 class UsageOptPage; 00023 class WordTypeOptionPage; 00024 class TenseOptPage; 00025 00030 class GrammarDialog : public KPageDialog 00031 { 00032 Q_OBJECT 00033 public: 00034 GrammarDialog(KEduVocDocument *doc, QWidget *parent); 00035 ~GrammarDialog(); 00036 void accept(); 00037 00038 private: 00039 UsageOptPage *useOptPage; 00040 WordTypeOptionPage *typeOptPage; 00041 TenseOptPage *tenseOptPage; 00042 QList<LangPropPage *> langPages; 00043 }; 00044 00045 #endif
KDE 4.0 API Reference