kio
kdirnotify.h
Go to the documentation of this file.00001 /* This file is part of the KDE project 00002 Copyright (C) 2000 David Faure <faure@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef __kdirnotify_h__ 00021 #define __kdirnotify_h__ 00022 00023 #include <dcopobject.h> 00024 #include <kurl.h> 00025 00032 class KIO_EXPORT KDirNotify : public DCOPObject 00033 { 00034 K_DCOP 00035 protected: 00036 KDirNotify(); 00037 virtual ~KDirNotify() {} 00038 00039 public: 00040 k_dcop: 00046 virtual ASYNC FilesAdded( const KURL & directory ) = 0; 00047 00053 virtual ASYNC FilesRemoved( const KURL::List & fileList ) = 0; 00054 00062 virtual ASYNC FilesChanged( const KURL::List & fileList ) = 0; 00063 00070 virtual ASYNC FileRenamed( const KURL &src, const KURL &dst ); 00071 00072 // WARNING: When adding new methods, make sure to update 00073 // kdirnotify_stub.cpp and kdirnotify_stub.h manually. 00074 // They are not automatically generated since they contain 00075 // handcoded changes. 00076 00077 private: 00078 // @internal 00079 static int s_serial; 00080 protected: 00081 virtual void virtual_hook( int id, void* data ); 00082 }; 00083 00084 #endif