func (ptr *QWebSocket) Open(url core.QUrl_ITF) { defer qt.Recovering("QWebSocket::open") if ptr.Pointer() != nil { C.QWebSocket_Open(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func NewQMediaContent7(playlist QMediaPlaylist_ITF, contentUrl core.QUrl_ITF, takeOwnership bool) *QMediaContent { return NewQMediaContentFromPointer(C.QMediaContent_NewQMediaContent7(PointerFromQMediaPlaylist(playlist), core.PointerFromQUrl(contentUrl), C.int(qt.GoBoolToInt(takeOwnership)))) }
func (ptr *QQmlApplicationEngine) Load(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QQmlApplicationEngine_Load(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func (ptr *QMediaPlaylist) Save(location core.QUrl_ITF, format string) bool { if ptr.Pointer() != nil { return C.QMediaPlaylist_Save(ptr.Pointer(), core.PointerFromQUrl(location), C.CString(format)) != 0 } return false }
func NewQQmlComponent5(engine QQmlEngine_ITF, url core.QUrl_ITF, parent core.QObject_ITF) *QQmlComponent { return NewQQmlComponentFromPointer(C.QQmlComponent_NewQQmlComponent5(PointerFromQQmlEngine(engine), core.PointerFromQUrl(url), core.PointerFromQObject(parent))) }
func (ptr *QQmlComponent) SetData(data core.QByteArray_ITF, url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QQmlComponent_SetData(ptr.Pointer(), core.PointerFromQByteArray(data), core.PointerFromQUrl(url)) } }
func (ptr *QQmlComponent) LoadUrl(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QQmlComponent_LoadUrl(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func (ptr *QXmlQuery) SetQuery3(sourceCode string, documentURI core.QUrl_ITF) { if ptr.Pointer() != nil { C.QXmlQuery_SetQuery3(ptr.Pointer(), C.CString(sourceCode), core.PointerFromQUrl(documentURI)) } }
func (ptr *QNetworkProxyQuery) SetUrl(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QNetworkProxyQuery_SetUrl(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func (ptr *QFileDialog) SetDirectoryUrl(directory core.QUrl_ITF) { if ptr.Pointer() != nil { C.QFileDialog_SetDirectoryUrl(ptr.Pointer(), core.PointerFromQUrl(directory)) } }
func (ptr *QFileDialog) SelectUrl(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QFileDialog_SelectUrl(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func (ptr *QTextDocument) Resource(ty int, name core.QUrl_ITF) *core.QVariant { if ptr.Pointer() != nil { return core.NewQVariantFromPointer(C.QTextDocument_Resource(ptr.Pointer(), C.int(ty), core.PointerFromQUrl(name))) } return nil }
func (ptr *QTextDocument) AddResource(ty int, name core.QUrl_ITF, resource core.QVariant_ITF) { if ptr.Pointer() != nil { C.QTextDocument_AddResource(ptr.Pointer(), C.int(ty), core.PointerFromQUrl(name), core.PointerFromQVariant(resource)) } }
func (ptr *QTextDocument) SetBaseUrl(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QTextDocument_SetBaseUrl(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func NewQMediaContent2(url core.QUrl_ITF) *QMediaContent { return NewQMediaContentFromPointer(C.QMediaContent_NewQMediaContent2(core.PointerFromQUrl(url))) }
func (ptr *QXmlQuery) SetFocus2(documentURI core.QUrl_ITF) bool { if ptr.Pointer() != nil { return C.QXmlQuery_SetFocus2(ptr.Pointer(), core.PointerFromQUrl(documentURI)) != 0 } return false }
func (ptr *QXmlQuery) SetQuery(sourceCode core.QIODevice_ITF, documentURI core.QUrl_ITF) { if ptr.Pointer() != nil { C.QXmlQuery_SetQuery(ptr.Pointer(), core.PointerFromQIODevice(sourceCode), core.PointerFromQUrl(documentURI)) } }
func NewQNetworkProxyQuery6(networkConfiguration QNetworkConfiguration_ITF, requestUrl core.QUrl_ITF, queryType QNetworkProxyQuery__QueryType) *QNetworkProxyQuery { return NewQNetworkProxyQueryFromPointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery6(PointerFromQNetworkConfiguration(networkConfiguration), core.PointerFromQUrl(requestUrl), C.int(queryType))) }
func (ptr *QXmlQuery) SetQuery2(queryURI core.QUrl_ITF, baseURI core.QUrl_ITF) { if ptr.Pointer() != nil { C.QXmlQuery_SetQuery2(ptr.Pointer(), core.PointerFromQUrl(queryURI), core.PointerFromQUrl(baseURI)) } }
func NewQNetworkProxyQuery2(requestUrl core.QUrl_ITF, queryType QNetworkProxyQuery__QueryType) *QNetworkProxyQuery { return NewQNetworkProxyQueryFromPointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery2(core.PointerFromQUrl(requestUrl), C.int(queryType))) }
func (ptr *QQmlComponent) LoadUrl2(url core.QUrl_ITF, mode QQmlComponent__CompilationMode) { if ptr.Pointer() != nil { C.QQmlComponent_LoadUrl2(ptr.Pointer(), core.PointerFromQUrl(url), C.int(mode)) } }
func (ptr *QQuickWidget) SetSource(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QQuickWidget_SetSource(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func NewQQmlComponent6(engine QQmlEngine_ITF, url core.QUrl_ITF, mode QQmlComponent__CompilationMode, parent core.QObject_ITF) *QQmlComponent { return NewQQmlComponentFromPointer(C.QQmlComponent_NewQQmlComponent6(PointerFromQQmlEngine(engine), core.PointerFromQUrl(url), C.int(mode), core.PointerFromQObject(parent))) }
func NewQQuickWidget3(source core.QUrl_ITF, parent widgets.QWidget_ITF) *QQuickWidget { return NewQQuickWidgetFromPointer(C.QQuickWidget_NewQQuickWidget3(core.PointerFromQUrl(source), widgets.PointerFromQWidget(parent))) }
func (ptr *QMediaPlaylist) Load2(location core.QUrl_ITF, format string) { if ptr.Pointer() != nil { C.QMediaPlaylist_Load2(ptr.Pointer(), core.PointerFromQUrl(location), C.CString(format)) } }
func (ptr *QNetworkCookie) Normalize(url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QNetworkCookie_Normalize(ptr.Pointer(), core.PointerFromQUrl(url)) } }
func NewQQmlApplicationEngine2(url core.QUrl_ITF, parent core.QObject_ITF) *QQmlApplicationEngine { return NewQQmlApplicationEngineFromPointer(C.QQmlApplicationEngine_NewQQmlApplicationEngine2(core.PointerFromQUrl(url), core.PointerFromQObject(parent))) }
func (ptr *QHelpEngineCore) FileData(url core.QUrl_ITF) *core.QByteArray { if ptr.Pointer() != nil { return core.NewQByteArrayFromPointer(C.QHelpEngineCore_FileData(ptr.Pointer(), core.PointerFromQUrl(url))) } return nil }
func (ptr *QQmlApplicationEngine) LoadData(data core.QByteArray_ITF, url core.QUrl_ITF) { if ptr.Pointer() != nil { C.QQmlApplicationEngine_LoadData(ptr.Pointer(), core.PointerFromQByteArray(data), core.PointerFromQUrl(url)) } }
func (ptr *QHelpContentWidget) IndexOf(link core.QUrl_ITF) *core.QModelIndex { if ptr.Pointer() != nil { return core.NewQModelIndexFromPointer(C.QHelpContentWidget_IndexOf(ptr.Pointer(), core.PointerFromQUrl(link))) } return nil }