diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
commit | 252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch) | |
tree | b48be8863db3bc1c223ac270a258b5c1124cb0e3 /src/kernel/tqurlinfo.h | |
parent | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff) | |
download | tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip |
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/tqurlinfo.h')
-rw-r--r-- | src/kernel/tqurlinfo.h | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/src/kernel/tqurlinfo.h b/src/kernel/tqurlinfo.h new file mode 100644 index 000000000..8c0269f84 --- /dev/null +++ b/src/kernel/tqurlinfo.h @@ -0,0 +1,116 @@ +/**************************************************************************** +** +** Definition of TQUrlInfo class +** +** Created : 950429 +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of the kernel module of the TQt GUI Toolkit. +** +** This file may be used under the terms of the GNU General +** Public License versions 2.0 or 3.0 as published by the Free +** Software Foundation and appearing in the files LICENSE.GPL2 +** and LICENSE.GPL3 included in the packaging of this file. +** Alternatively you may (at your option) use any later version +** of the GNU General Public License if such license has been +** publicly approved by Trolltech ASA (or its successors, if any) +** and the KDE Free TQt Foundation. +** +** Please review the following information to ensure GNU General +** Public Licensing requirements will be met: +** http://trolltech.com/products/qt/licenses/licensing/opensource/. +** If you are unsure which license is appropriate for your use, please +** review the following information: +** http://trolltech.com/products/qt/licenses/licensing/licensingoverview +** or contact the sales department at sales@trolltech.com. +** +** This file may be used under the terms of the Q Public License as +** defined by Trolltech ASA and appearing in the file LICENSE.TQPL +** included in the packaging of this file. Licensees holding valid TQt +** Commercial licenses may use this file in accordance with the TQt +** Commercial License Agreement provided with the Software. +** +** This file is provided "AS IS" with NO WARRANTY OF ANY KIND, +** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted +** herein. +** +**********************************************************************/ + +#ifndef TQURLINFO_H +#define TQURLINFO_H + +#ifndef QT_H +#include "tqdatetime.h" +#include "tqstring.h" +#endif // QT_H + +class TQUrlOperator; +class TQUrl; +class TQUrlInfoPrivate; + +class TQ_EXPORT TQUrlInfo +{ +public: + enum PermissionSpec { + ReadOwner = 00400, WriteOwner = 00200, ExeOwner = 00100, + ReadGroup = 00040, WriteGroup = 00020, ExeGroup = 00010, + ReadOther = 00004, WriteOther = 00002, ExeOther = 00001 }; + + TQUrlInfo(); + TQUrlInfo( const TQUrlOperator &path, const TQString &file ); + TQUrlInfo( const TQUrlInfo &ui ); + TQUrlInfo( const TQString &name, int permissions, const TQString &owner, + const TQString &group, uint size, const TQDateTime &lastModified, + const TQDateTime &lastRead, bool isDir, bool isFile, bool isSymLink, + bool isWritable, bool isReadable, bool isExecutable ); + TQUrlInfo( const TQUrl &url, int permissions, const TQString &owner, + const TQString &group, uint size, const TQDateTime &lastModified, + const TQDateTime &lastRead, bool isDir, bool isFile, bool isSymLink, + bool isWritable, bool isReadable, bool isExecutable ); + TQUrlInfo &operator=( const TQUrlInfo &ui ); + virtual ~TQUrlInfo(); + + virtual void setName( const TQString &name ); + virtual void setDir( bool b ); + virtual void setFile( bool b ); + virtual void setSymLink( bool b ); + virtual void setOwner( const TQString &s ); + virtual void setGroup( const TQString &s ); + virtual void setSize( uint size ); + virtual void setWritable( bool b ); + virtual void setReadable( bool b ); + virtual void setPermissions( int p ); + virtual void setLastModified( const TQDateTime &dt ); + + bool isValid() const; + + TQString name() const; + int permissions() const; + TQString owner() const; + TQString group() const; + uint size() const; + TQDateTime lastModified() const; + TQDateTime lastRead() const; + bool isDir() const; + bool isFile() const; + bool isSymLink() const; + bool isWritable() const; + bool isReadable() const; + bool isExecutable() const; + + static bool greaterThan( const TQUrlInfo &i1, const TQUrlInfo &i2, + int sortBy ); + static bool lessThan( const TQUrlInfo &i1, const TQUrlInfo &i2, + int sortBy ); + static bool equal( const TQUrlInfo &i1, const TQUrlInfo &i2, + int sortBy ); + + bool operator==( const TQUrlInfo &i ) const; +private: + TQUrlInfoPrivate *d; + +}; + +#endif |