/*************************************************************************** begin : Thu Jul 17 copyright : (C) 2001-2004 by George Wright email : gwright@kde.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KLATIN_H #define KLATIN_H #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include "klatinchoose.h" #include "klatingrammar.h" #include "klatinverbs.h" #include "klatinvocab.h" #include "klatinsettings_vocabpage.h" /** @short Main application class */ class KLatin : public TDEMainWindow { Q_OBJECT public: KLatin(TQWidget* parent=0, const char *name=0); ~KLatin(); void setupActions(); public slots: /// Load vocabulary revision section void loadVocab(); /// Load grammar revision section void loadGrammar(); /// Load verb revision section void loadVerbs(); /// Load revision notes in Konqueror void loadRevision(); /// Parse settings from config file void loadSettings(); /// Slot for the start button void startClicked(); /// Reloads the section choose screen void resetGUI(); private slots: /// Slot for when settings are changed in the TDEConfig XT dialog void settingsChanged(); void slotWriteMsg(const TQString&); private: TDEAction *m_loadVocab; TDEAction *m_loadGrammar; TDEAction *m_loadVerbs; TDEAction *m_loadRevision; KLatinChoose *klatinchoose; KLatinGrammar *klatingrammarsection; KLatinVocab *klatinvocabsection; KLatinVerbs *klatinverbssection; VocabPage *vocabPage; /// Current section loaded int m_section; private: /** * Enable/Disable the items in the Section menu *@param bool if bool is true then the menu items are enabled */ void updateSection(bool); }; #endif // KLATIN_H