1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
// qurl.sip generated by MetaSIP
//
// This file is part of the QtCore Python extension module.
//
// Copyright (c) 2018 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt5.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
// Template definition for QUrlTwoFlags.
template<E1, E2>
class QUrlTwoFlags /PyQtFlags=0x1/
{
// These are handled by the %ConvertToTypeCode.
//QUrlTwoFlags(E1);
//QUrlTwoFlags(E2);
QUrlTwoFlags();
QUrlTwoFlags &operator&=(int mask);
//QUrlTwoFlags &operator&=(uint mask);
QUrlTwoFlags &operator|=(QUrlTwoFlags f);
//QUrlTwoFlags &operator|=(E1 f);
//QUrlTwoFlags &operator|=(E2 f);
QUrlTwoFlags &operator^=(QUrlTwoFlags f);
//QUrlTwoFlags &operator^=(E1 f);
//QUrlTwoFlags &operator^=(E2 f);
operator int() const;
QUrlTwoFlags operator|(QUrlTwoFlags f) const;
//QUrlTwoFlags operator|(E1 f) const;
//QUrlTwoFlags operator|(E2 f) const;
QUrlTwoFlags operator^(QUrlTwoFlags f) const;
//QUrlTwoFlags operator^(E1 f) const;
//QUrlTwoFlags operator^(E2 f) const;
QUrlTwoFlags operator&(int mask) const;
//QUrlTwoFlags operator&(uint mask) const;
//QUrlTwoFlags operator&(E1 f) const;
//QUrlTwoFlags operator&(E2 f) const;
QUrlTwoFlags operator~() const;
// These are necessary to prevent Python comparing object IDs.
bool operator==(const QUrlTwoFlags &f) const;
%MethodCode
sipRes = (sipCpp->operator int() == a0->operator int());
%End
bool operator!=(const QUrlTwoFlags &f) const;
%MethodCode
sipRes = (sipCpp->operator int() != a0->operator int());
%End
int __bool__() const;
%MethodCode
sipRes = (sipCpp->operator int() != 0);
%End
%ConvertToTypeCode
// Allow an instance of the base enums whenever a QUrlTwoFlags is expected.
if (sipIsErr == NULL)
return (PyObject_TypeCheck(sipPy, sipTypeAsPyTypeObject(sipType_E1)) ||
PyObject_TypeCheck(sipPy, sipTypeAsPyTypeObject(sipType_E2)) ||
sipCanConvertToType(sipPy, sipType_QUrlTwoFlags, SIP_NO_CONVERTORS));
if (PyObject_TypeCheck(sipPy, sipTypeAsPyTypeObject(sipType_E1)) ||
PyObject_TypeCheck(sipPy, sipTypeAsPyTypeObject(sipType_E2)))
{
*sipCppPtr = new QUrlTwoFlags(int(SIPLong_AsLong(sipPy)));
return sipGetState(sipTransferObj);
}
*sipCppPtr = reinterpret_cast<QUrlTwoFlags *>(sipConvertToType(sipPy, sipType_QUrlTwoFlags, sipTransferObj, SIP_NO_CONVERTORS, 0, sipIsErr));
return 0;
%End
};
class QUrl
{
%TypeHeaderCode
#include <qurl.h>
%End
%TypeCode
#include <QHash>
%End
public:
enum ParsingMode
{
TolerantMode,
StrictMode,
DecodedMode,
};
QUrl();
QUrl(const QString &url, QUrl::ParsingMode mode = QUrl::TolerantMode);
QUrl(const QUrl ©);
~QUrl();
long __hash__() const;
%MethodCode
sipRes = qHash(*sipCpp);
%End
SIP_PYOBJECT __repr__() const /TypeHint="str"/;
%MethodCode
PyObject *uni = qpycore_PyObject_FromQString(sipCpp->toString());
if (uni)
{
#if PY_MAJOR_VERSION >= 3
sipRes = PyUnicode_FromFormat("PyQt5.QtCore.QUrl(%R)", uni);
#else
sipRes = PyString_FromFormat("PyQt5.QtCore.QUrl(");
PyString_ConcatAndDel(&sipRes, PyObject_Repr(uni));
PyString_ConcatAndDel(&sipRes, PyString_FromString(")"));
#endif
Py_DECREF(uni);
}
%End
enum UrlFormattingOption
{
None /PyName=None_/,
RemoveScheme,
RemovePassword,
RemoveUserInfo,
RemovePort,
RemoveAuthority,
RemovePath,
RemoveQuery,
RemoveFragment,
PreferLocalFile,
StripTrailingSlash,
%If (Qt_5_2_0 -)
RemoveFilename,
%End
%If (Qt_5_2_0 -)
NormalizePathSegments,
%End
};
typedef QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> FormattingOptions;
enum ComponentFormattingOption
{
PrettyDecoded,
EncodeSpaces,
EncodeUnicode,
EncodeDelimiters,
EncodeReserved,
DecodeReserved,
FullyEncoded,
FullyDecoded,
};
typedef QFlags<QUrl::ComponentFormattingOption> ComponentFormattingOptions;
QString url(QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
void setUrl(const QString &url, QUrl::ParsingMode mode = QUrl::TolerantMode);
bool isValid() const;
bool isEmpty() const;
void clear();
void setScheme(const QString &scheme);
QString scheme() const;
void setAuthority(const QString &authority, QUrl::ParsingMode mode = QUrl::TolerantMode);
QString authority(QUrl::ComponentFormattingOptions options = QUrl::PrettyDecoded) const;
void setUserInfo(const QString &userInfo, QUrl::ParsingMode mode = QUrl::TolerantMode);
QString userInfo(QUrl::ComponentFormattingOptions options = QUrl::PrettyDecoded) const;
%If (Qt_5_2_0 -)
void setUserName(const QString &userName, QUrl::ParsingMode mode = QUrl::DecodedMode);
%End
%If (- Qt_5_2_0)
void setUserName(const QString &userName, QUrl::ParsingMode mode = QUrl::TolerantMode);
%End
%If (Qt_5_2_0 -)
QString userName(QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const;
%End
%If (- Qt_5_2_0)
QString userName(QFlags<QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
%End
%If (Qt_5_2_0 -)
void setPassword(const QString &password, QUrl::ParsingMode mode = QUrl::DecodedMode);
%End
%If (- Qt_5_2_0)
void setPassword(const QString &password, QUrl::ParsingMode mode = QUrl::TolerantMode);
%End
%If (Qt_5_2_0 -)
QString password(QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const;
%End
%If (- Qt_5_2_0)
QString password(QFlags<QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
%End
%If (Qt_5_2_0 -)
void setHost(const QString &host, QUrl::ParsingMode mode = QUrl::DecodedMode);
%End
%If (- Qt_5_2_0)
void setHost(const QString &host, QUrl::ParsingMode mode = QUrl::TolerantMode);
%End
%If (Qt_5_2_0 -)
QString host(QUrl::ComponentFormattingOptions = QUrl::FullyDecoded) const;
%End
%If (- Qt_5_2_0)
QString host(QFlags<QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
%End
void setPort(int port);
int port(int defaultPort = -1) const;
%If (Qt_5_2_0 -)
void setPath(const QString &path, QUrl::ParsingMode mode = QUrl::DecodedMode);
%End
%If (- Qt_5_2_0)
void setPath(const QString &path, QUrl::ParsingMode mode = QUrl::TolerantMode);
%End
%If (Qt_5_2_0 -)
QString path(QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const;
%End
%If (- Qt_5_2_0)
QString path(QFlags<QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
%End
void setFragment(const QString &fragment, QUrl::ParsingMode mode = QUrl::TolerantMode);
QString fragment(QUrl::ComponentFormattingOptions options = QUrl::PrettyDecoded) const;
QUrl resolved(const QUrl &relative) const;
bool isRelative() const;
bool isParentOf(const QUrl &url) const;
static QUrl fromLocalFile(const QString &localfile);
QString toLocalFile() const;
QString toString(QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
QByteArray toEncoded(QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> options = QUrl::FullyEncoded) const;
static QUrl fromEncoded(const QByteArray &u, QUrl::ParsingMode mode = QUrl::TolerantMode);
void detach();
bool isDetached() const;
bool operator<(const QUrl &url) const;
bool operator==(const QUrl &url) const;
bool operator!=(const QUrl &url) const;
static QString fromPercentEncoding(const QByteArray &);
static QByteArray toPercentEncoding(const QString &input, const QByteArray &exclude = QByteArray(), const QByteArray &include = QByteArray());
bool hasQuery() const;
bool hasFragment() const;
QString errorString() const;
static QString fromAce(const QByteArray &);
static QByteArray toAce(const QString &);
static QStringList idnWhitelist();
static void setIdnWhitelist(const QStringList &);
static QUrl fromUserInput(const QString &userInput);
void swap(QUrl &other /Constrained/);
%If (Qt_5_2_0 -)
QString topLevelDomain(QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const;
%End
%If (- Qt_5_2_0)
QString topLevelDomain(QFlags<QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
%End
bool isLocalFile() const;
QString toDisplayString(QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded) const;
void setQuery(const QString &query, QUrl::ParsingMode mode = QUrl::TolerantMode);
void setQuery(const QUrlQuery &query);
QString query(QUrl::ComponentFormattingOptions options = QUrl::PrettyDecoded) const;
%If (Qt_5_1_0 -)
static QStringList toStringList(const QList<QUrl> &uris, QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> options = QUrl::PrettyDecoded);
%End
%If (Qt_5_1_0 -)
static QList<QUrl> fromStringList(const QStringList &uris, QUrl::ParsingMode mode = QUrl::TolerantMode);
%End
%If (Qt_5_2_0 -)
QUrl adjusted(QUrl::FormattingOptions options) const;
%End
%If (Qt_5_2_0 -)
QString fileName(QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const;
%End
%If (Qt_5_2_0 -)
bool matches(const QUrl &url, QUrl::FormattingOptions options) const;
%End
%If (Qt_5_4_0 -)
enum UserInputResolutionOption
{
DefaultResolution,
AssumeLocalFile,
};
%End
%If (Qt_5_4_0 -)
typedef QFlags<QUrl::UserInputResolutionOption> UserInputResolutionOptions;
%End
%If (Qt_5_4_0 -)
static QUrl fromUserInput(const QString &userInput, const QString &workingDirectory, QUrl::UserInputResolutionOptions options = QUrl::DefaultResolution);
%End
};
QFlags<QUrl::ComponentFormattingOption> operator|(QUrl::ComponentFormattingOption f1, QFlags<QUrl::ComponentFormattingOption> f2);
QDataStream &operator<<(QDataStream &, const QUrl & /Constrained/) /ReleaseGIL/;
QDataStream &operator>>(QDataStream &, QUrl & /Constrained/) /ReleaseGIL/;
QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> operator|(QUrl::UrlFormattingOption f1, QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> f2);
QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> operator|(QUrl::ComponentFormattingOption f, QUrlTwoFlags<QUrl::UrlFormattingOption, QUrl::ComponentFormattingOption> i);
|