/*************************************************************************** edit common properties ----------------------------------------------------------------------- begin : Mon Jun 28 21:02:16 1999 copyright : (C) 1999-2001 Ewald Arnold (C) 2001 The KDE-EDU team (C) 2005 Peter Hedlund ----------------------------------------------------------------------- ***************************************************************************/ /*************************************************************************** * * * 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 CommonEntryPage_included #define CommonEntryPage_included #include "CommonEntryPageForm.h" #include #include class PhoneticEntryPage; class EntryDlg; class CommonEntryPage : public CommonEntryPageForm { Q_OBJECT TQ_OBJECT public: CommonEntryPage ( EntryDlg *dlgbook, kvoctrainDoc *doc, bool multi_sel, TQString expr, int less, TQComboBox *lessBox, TQString lang, TQString type, TQString pronunce, TQString usage, TQString label, QueryManager &querymanager, bool active, const TQFont& ipafont, TQWidget* parent = NULL, const char* name = NULL ); void setData( bool multi_sel, TQString expr, int less, TQComboBox *lessBox, TQString lang, TQString type, TQString pronunce, TQString usage, TQString label, QueryManager &querymanager, bool active); bool isDirty() const; bool lessonDirty () const { return lesson_dirty; } bool activeDirty () const { return active_dirty; } bool typeDirty () const { return type_dirty; } bool usageDirty () const { return usage_dirty; } int getLesson () const { return lesson; } TQString getType () const { return type; } TQString getExpr () const { return expression; } TQString getPronunce () const { return pronunce; } TQString getUsageLabel() const { return usageCollection; } bool getActive () const { return entry_active; } bool isModified(); void setModified(bool mod = true); void setEnabled(int enable_type); signals: void typeSelected(const TQString &); protected: void setTypeBox(const TQString &act_type); void setLessonBox(TQComboBox *lessbox, int lesson); void setUsageBox(const TQString & act_type); protected slots: void slotLessonSelected(int); void slotExprSelected(const TQString&); void slotTypeSelected(int); void slotSubTypeSelected(int); void slotPronunceSelected (const TQString&); void slotUsageChanged(); void slotActiveChanged(bool state); void phoneticSelected(wchar_t); void invokeLessDlg(); void invokeTypeDlg(); void invokePronDlg(); void invokeUsageDlg(); signals: void sigModified(); protected: TQString pronunce; TQString expression; TQString usageCollection; int lesson; TQString type; EntryDlg *dlgbook; bool lesson_dirty; bool type_dirty; kvoctrainDoc *doc; QueryManager &querymanager; bool entry_active; bool active_dirty; bool usage_dirty; vector all_maintypes; vector all_types; vector usages; vector current_subtypes; TQFont ipafont; bool modified; }; #endif // CommonEntryPage_included