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.
kmyfirewall/kmyfirewall/kmfwidgets/kmfchecklistitem.h

54 lines
1.6 KiB

//
// C++ Interface: kmfchecklistitem
//
// Description:
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
/***************************************************************************
* *
* 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 KMFCHECKLISTITEM_H
#define KMFCHECKLISTITEM_H
#include <tqlistview.h>
#include <kdemacros.h>
namespace KMF {
class KMFProtocol;
class KMFProtocolUsage;
class NetfilterObject;
class TDE_EXPORT KMFCheckListItem : public TQCheckListItem
{
public:
KMFCheckListItem( TQListViewItem *parent, const TQString&, Type tt = Controller, KMFProtocolUsage* = 0 );
KMFCheckListItem( TQListView *parent, TQListViewItem *after, const TQString&, Type tt = Controller, KMFProtocolUsage* = 0 );
KMFCheckListItem( TQListViewItem *parent, TQListViewItem *after, const TQString&, Type tt = Controller, KMFProtocolUsage* = 0);
~KMFCheckListItem();
public:
KMFProtocolUsage* protocolUsage() const {
return m_protocolUsage;
};
private:
void loadKMFProtocolUsage( KMFProtocolUsage* );
KMFProtocolUsage *m_protocolUsage;
};
}
#endif