* Added QWheelEvent * removed x y * Added QNativeGestureEvent * Changed wrong type of QNativeGestureEventWrap value * Added QTabletEvent * Fixing build error for QTabletEvent * adding dropaction * fix typos * Added more functions to QPainterPath * Added more functions to QPainterPath * Fixed multiple typos * Fixed multiple typos * Got QPainterPath additions working. * Modified QPainterPath to use qreal instead * Added QPointF, added a few missing methods to QPoint * Added QRectF * implemented QRectF * Added acceptDrops and setAcceptDrops to QWidget, will be useful for addon implementation of Drag and Drop * Added more methods to QUrl * Added QMimeData, additional methods to QUrl, and Dropping should now be supported * refactored * Fixed more merge conflicts * Is this my final merge conflict?? * All merge conflicts resolved * All merge conflicts resolved * Adds guide for drag and drop * lint fix Co-authored-by: Switt Kongdachalert <switt1995@yahoo.com> Co-authored-by: Atul R <atulanand94@gmail.com>
38 lines
1.0 KiB
Markdown
38 lines
1.0 KiB
Markdown
---
|
|
id: "parsingmode"
|
|
title: "ParsingMode"
|
|
sidebar_label: "ParsingMode"
|
|
---
|
|
|
|
## Index
|
|
|
|
### Enumeration members
|
|
|
|
* [DecodedMode](parsingmode.md#decodedmode)
|
|
* [StrictMode](parsingmode.md#strictmode)
|
|
* [TolerantMode](parsingmode.md#tolerantmode)
|
|
|
|
## Enumeration members
|
|
|
|
### DecodedMode
|
|
|
|
• **DecodedMode**: = 2
|
|
|
|
QUrl will interpret the URL component in the fully-decoded form, where percent characters stand for themselves, not as the beginning of a percent-encoded sequence. This mode is only valid for the setters setting components of a URL; it is not permitted in the QUrl constructor, in fromEncoded() or in setUrl(). For more information on this mode, see the documentation for QUrl::FullyDecoded.
|
|
|
|
___
|
|
|
|
### StrictMode
|
|
|
|
• **StrictMode**: = 1
|
|
|
|
Only valid URLs are accepted. This mode is useful for general URL validation.
|
|
|
|
___
|
|
|
|
### TolerantMode
|
|
|
|
• **TolerantMode**: = 0
|
|
|
|
QUrl will try to correct some common errors in URLs. This mode is useful for parsing URLs coming from sources not known to be strictly standards-conforming.
|