kshell.h
00001 /* 00002 This file is part of the KDE libraries 00003 00004 Copyright (c) 2003 Oswald Buddenhagen <ossi@kde.org> 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00019 Boston, MA 02111-1307, USA. 00020 */ 00021 #ifndef _KSHELL_H 00022 #define _KSHELL_H 00023 00024 #include <qstring.h> 00025 #include <qstringlist.h> 00026 #include "kdelibs_export.h" 00027 00033 namespace KShell { 00034 00038 enum Options { 00039 NoOptions = 0, 00040 00044 TildeExpand = 1, 00045 00056 AbortOnMeta = 2 00057 }; 00058 00062 enum Errors { 00066 NoError = 0, 00067 00071 BadQuoting, 00072 00077 FoundMeta 00078 }; 00079 00091 KDECORE_EXPORT QStringList splitArgs( const QString &cmd, int flags = 0, int *err = 0 ); 00092 00099 KDECORE_EXPORT QString joinArgs( const QStringList &args ); 00100 00111 KDECORE_EXPORT QString joinArgsDQ( const QStringList &args ); 00112 00122 KDECORE_EXPORT QString joinArgs( const char * const *argv, int argc = -1 ); 00123 00131 KDECORE_EXPORT QString tildeExpand( const QString &path ); 00132 00140 KDECORE_EXPORT QString homeDir( const QString &user ); 00141 00142 } 00143 00144 00145 #endif /* _KSHELL_H */