summaryrefslogtreecommitdiffstats
path: root/src/svnqt/path.hpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-03-19 10:06:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-03-19 10:06:06 +0900
commit283bc34244d24be02e90b767a82826a4ca8da186 (patch)
tree5b9d49d503a44b8ceea82744f11b8014e3b41ca3 /src/svnqt/path.hpp
parent971ab170cfa851d20a42864231676f05f4cdb4cc (diff)
downloadtdesvn-283bc34244d24be02e90b767a82826a4ca8da186.tar.gz
tdesvn-283bc34244d24be02e90b767a82826a4ca8da186.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/svnqt/path.hpp')
-rw-r--r--src/svnqt/path.hpp195
1 files changed, 0 insertions, 195 deletions
diff --git a/src/svnqt/path.hpp b/src/svnqt/path.hpp
deleted file mode 100644
index a04ade8..0000000
--- a/src/svnqt/path.hpp
+++ /dev/null
@@ -1,195 +0,0 @@
-/*
- * Port for usage with qt-framework and development for tdesvn
- * (C) 2005-2007 by Rajko Albrecht
- * http://tdesvn.alwins-world.de
- */
-/*
- * ====================================================================
- * Copyright (c) 2002-2005 The RapidSvn Group. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library (in the file LGPL.txt); if not,
- * write to the Free Software Foundation, Inc., 51 Franklin St,
- * Fifth Floor, Boston, MA 02110-1301 USA
- *
- * This software consists of voluntary contributions made by many
- * individuals. For exact contribution history, see the revision
- * history and logs, available at http://rapidsvn.tigris.org/.
- * ====================================================================
- */
-
-#ifndef _SVNCPP_PATH_HPP_
-#define _SVNCPP_PATH_HPP_
-
-#include <tqstring.h>
-#include "svnqt/svnqt_defines.hpp"
-#include "svnqt/svnqttypes.hpp"
-
-namespace svn
-{
- /**
- * Encapsulation for Subversion Path handling
- */
- class SVNTQT_EXPORT Path
- {
- private:
- TQString m_path;
-
- /**
- * initialize the class
- *
- * @param path Path string - when url this should NOT hold revision as @ parameter!!!!! (will filtered out)
- */
- void init (const TQString& path);
-
- public:
- /**
- * Constructor that takes a string as parameter.
- * The string is converted to subversion internal
- * representation. The string is copied.
- *
- * @param path Path string - when url this should NOT hold revision as @ parameter!!!!! (will filtered out)
- */
- Path (const TQString & path = TQString());
-
- /**
- * Constructor
- *
- * @see Path::Path (const TQString &)
- * @param path Path string - when url this should NOT hold revision as @ parameter!!!!! (will filtered out)
- */
- Path (const char * path);
-
- /**
- * Copy constructor
- *
- * @param path Path to be copied
- */
- Path (const Path & path);
-
- /**
- * Assignment operator
- */
- Path& operator=(const Path&);
-
- /**
- * @return Path string
- */
- const TQString &
- path () const;
-
- /**
- * @return Path string
- */
- operator const TQString&()const;
-
- /**
- * @return Path as pretty url
- */
- TQString prettyPath()const;
-
- /**
- * @return Path string as c string
- */
- const TQByteArray cstr() const;
-
- /**
- * check whether a path is set. Right now
- * this checks only if the string is non-
- * empty.
- *
- * @return true if there is a path set
- */
- bool
- isset() const;
-
-
- /**
- * adds a new URL component to the path
- *
- * @param component new component to add
- */
- void
- addComponent (const char * component);
-
-
- /**
- * adds a new URL component to the path
- *
- * @param component new component to add
- */
- void
- addComponent (const TQString & component);
-
- /** Reduce path to its parent folder.
- * If the path length is 1 (eg., only "/") it will cleared so
- * path length will get zero.
- * @sa svn_path_remove_component
- */
- void
- removeLast();
-
-
- /**
- * split path in its components
- *
- * @param dirpath directory/path component
- * @param basename filename
- */
- void
- split (TQString & dirpath, TQString & basename) const;
-
-
- /**
- * split path in its components including
- * file extension
- *
- * @param dir directory component
- * @param filename filename
- * @param ext extension (including leading dot ".")
- */
- void
- split (TQString & dir, TQString & filename, TQString & ext) const;
-
-
- /**
- * returns the temporary directory
- */
- static Path
- getTempDir ();
-
- /** Parse a string for a peg revision
- * @param pathorurl url to parse
- * @param _path target to store the cleaned url
- * @param _peg target where to store the peg url.
- * @throw svn::ClientException on errors
- */
- static void
- parsePeg(const TQString&pathorurl,Path&_path,svn::Revision&_peg);
-
-
- /** return the length of the path-string */
- unsigned int
- length () const;
-
-
- /** returns the path with native separators */
- TQString
- native () const;
-
- /** returns if the path is a valid url, eg. points to a remote */
- bool isUrl()const;
- };
-}
-
-#endif