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.
tdebase/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.h

66 lines
1.8 KiB

/*
localdomainurifilter.h
This file is part of the KDE project
Copyright (C) 2002 Lubos Lunak <llunak@suse.cz>
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 <time.h>
#include <dcopobject.h>
#include <kgenericfactory.h>
#include <kurifilter.h>
#include <tqregexp.h>
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
TQ_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