/*************************************************************************** begin : 2004/02/07 copyright : (C) Mark Kretschmann email : markey@web.de ***************************************************************************/ /*************************************************************************** * * * 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 KLAMAVCONFIGDIALOG_H #define KLAMAVCONFIGDIALOG_H #include #include #include class TQComboBox; class TQGroupBox; class TQVBox; class KlamavConfigDialog : public TDEConfigDialog { Q_OBJECT public: KlamavConfigDialog( TQWidget *parent, const char* name, TDEConfigSkeleton *config ); ~KlamavConfigDialog(); void addPage( TQWidget *page, const TQString &itemName, const TQString &pixmapName, const TQString &header=TQString::null, bool manage=true); void showPage( const TQCString& page ); private: class ArchiveLimits *m_archivelimits; class ArchiveTypes *m_archivetypes; class SpecialFileTypes *m_specialfiletypes; class AutoScanOptions *m_autoscanoptions; class LogOptions *m_logoptions; TQValueList m_pageList; TQMap m_pluginName; TQMap m_pluginKlamavName; }; #endif // KLAMAVCONFIGDIALOG_H