You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
klamav/src/configdialog.h

60 lines
1.9 KiB

/***************************************************************************
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 <tqmap.h>
#include <tqvaluelist.h>
#include <tdeconfigdialog.h>
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<TQWidget*> m_pageList;
TQMap<TQString, TQString> m_pluginName;
TQMap<TQString, TQString> m_pluginKlamavName;
};
#endif // KLAMAVCONFIGDIALOG_H