/* localdomainurifilter.h This file is part of the KDE project Copyright (C) 2002 Lubos Lunak This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _LOCALDOMAINURIFILTER_H_ #define _LOCALDOMAINURIFILTER_H_ #include #include #include #include #include class TDEInstance; class TDEProcess; /* This filter takes care of hostnames in the local search domain. If you're in domain domain.org which has a host intranet.domain.org and the typed URI is just intranet, check if there's a host intranet.domain.org and if yes, it's a network URI. */ class LocalDomainURIFilter : public KURIFilterPlugin, public DCOPObject { K_DCOP Q_OBJECT public: LocalDomainURIFilter( TQObject* parent, const char* name, const TQStringList& args ); virtual bool filterURI( KURIFilterData &data ) const; k_dcop: virtual void configure(); private: bool isLocalDomainHost( TQString& cmd ) const; mutable TQString last_host; mutable bool last_result; mutable time_t last_time; mutable TQString m_fullname; TQRegExp m_hostPortPattern; private slots: void receiveOutput( TDEProcess *, char *, int ); }; #endif