summaryrefslogtreecommitdiffstats
path: root/kioslave/floppy/kio_floppy.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-27 01:02:02 -0600
committerTimothy Pearson <[email protected]>2013-01-27 01:02:02 -0600
commitde7e5867a65e0a46f1388e3e50bc7eeddd1aecbf (patch)
treedbb3152c372f8620f9290137d461f3d9f9eba1cb /kioslave/floppy/kio_floppy.h
parent936d3cec490c13f2c5f7dd14f5e364fddaa6da71 (diff)
downloadtdebase-de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf.tar.gz
tdebase-de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/floppy/kio_floppy.h')
-rw-r--r--kioslave/floppy/kio_floppy.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/kioslave/floppy/kio_floppy.h b/kioslave/floppy/kio_floppy.h
deleted file mode 100644
index 783e496ae..000000000
--- a/kioslave/floppy/kio_floppy.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/* This file is part of the KDE project
- Copyright (C) 2000 Alexander Neundorf <[email protected]>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library 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
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef KIO_FLOPPY_H
-#define KIO_FLOPPY_H
-
-#include <kio/slavebase.h>
-#include <kio/global.h>
-
-#include "program.h"
-
-#include <tqstring.h>
-
-struct StatInfo
-{
- StatInfo():name(""),time(0),size(0),mode(0),freeSpace(0),isDir(false),isValid(false) {;}
- TQString name;
- time_t time;
- int size;
- int mode;
- int freeSpace;
- bool isDir:1;
- bool isValid:1;
-};
-
-
-class FloppyProtocol : public TDEIO::SlaveBase
-{
- public:
- FloppyProtocol (const TQCString &pool, const TQCString &app );
- virtual ~FloppyProtocol();
-
- virtual void listDir( const KURL& url);
- virtual void stat( const KURL & url);
- virtual void mkdir( const KURL& url, int);
- virtual void del( const KURL& url, bool isfile);
- virtual void rename(const KURL &src, const KURL &dest, bool overwrite);
- virtual void get( const KURL& url );
- virtual void put( const KURL& url, int _mode,bool overwrite, bool _resume );
- //virtual void copy( const KURL& src, const KURL &dest, int, bool overwrite );
- protected:
- Program *m_mtool;
- int readStdout();
- int readStderr();
-
- StatInfo createStatInfo(const TQString line, bool makeStat=false, const TQString& dirName="");
- void createUDSEntry(const StatInfo& info, TDEIO::UDSEntry& entry);
- StatInfo _stat(const KURL& _url);
- int freeSpace(const KURL& url);
-
- bool stopAfterError(const KURL& url, const TQString& drive);
- void errorMissingMToolsProgram(const TQString& name);
-
- void clearBuffers();
- void terminateBuffers();
- char *m_stdoutBuffer;
- char *m_stderrBuffer;
- int m_stdoutSize;
- int m_stderrSize;
-};
-
-#endif