• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Golang qt.GoBoolToInt函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Golang中github.com/therecipe/qt.GoBoolToInt函数的典型用法代码示例。如果您正苦于以下问题:Golang GoBoolToInt函数的具体用法?Golang GoBoolToInt怎么用?Golang GoBoolToInt使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了GoBoolToInt函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。

示例1: BlockUpdatesChanged

func (ptr *QWebChannel) BlockUpdatesChanged(block bool) {
	defer qt.Recovering("QWebChannel::blockUpdatesChanged")

	if ptr.Pointer() != nil {
		C.QWebChannel_BlockUpdatesChanged(ptr.Pointer(), C.int(qt.GoBoolToInt(block)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:webchannel.go


示例2: SetAutoShowStandardWindow

func (ptr *QScriptEngineDebugger) SetAutoShowStandardWindow(autoShow bool) {
	defer qt.Recovering("QScriptEngineDebugger::setAutoShowStandardWindow")

	if ptr.Pointer() != nil {
		C.QScriptEngineDebugger_SetAutoShowStandardWindow(ptr.Pointer(), C.int(qt.GoBoolToInt(autoShow)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:scripttools.go


示例3: SetAllowed

func (ptr *QWebSocketCorsAuthenticator) SetAllowed(allowed bool) {
	defer qt.Recovering("QWebSocketCorsAuthenticator::setAllowed")

	if ptr.Pointer() != nil {
		C.QWebSocketCorsAuthenticator_SetAllowed(ptr.Pointer(), C.int(qt.GoBoolToInt(allowed)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:websockets.go


示例4: TextFrameReceived

func (ptr *QWebSocket) TextFrameReceived(frame string, isLastFrame bool) {
	defer qt.Recovering("QWebSocket::textFrameReceived")

	if ptr.Pointer() != nil {
		C.QWebSocket_TextFrameReceived(ptr.Pointer(), C.CString(frame), C.int(qt.GoBoolToInt(isLastFrame)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:websockets.go


示例5: SetSelectable

func (ptr *QMacToolBarItem) SetSelectable(selectable bool) {
	defer qt.Recovering("QMacToolBarItem::setSelectable")

	if ptr.Pointer() != nil {
		C.QMacToolBarItem_SetSelectable(ptr.Pointer(), C.int(qt.GoBoolToInt(selectable)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:macextras.go


示例6: SetLanguageChangeEnabled

func (ptr *QUiLoader) SetLanguageChangeEnabled(enabled bool) {
	defer qt.Recovering("QUiLoader::setLanguageChangeEnabled")

	if ptr.Pointer() != nil {
		C.QUiLoader_SetLanguageChangeEnabled(ptr.Pointer(), C.int(qt.GoBoolToInt(enabled)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:uitools.go


示例7: SetBlockUpdates

func (ptr *QWebChannel) SetBlockUpdates(block bool) {
	defer qt.Recovering("QWebChannel::setBlockUpdates")

	if ptr.Pointer() != nil {
		C.QWebChannel_SetBlockUpdates(ptr.Pointer(), C.int(qt.GoBoolToInt(block)))
	}
}
开发者ID:mouse225,项目名称:qt,代码行数:7,代码来源:webchannel.go


示例8: assertion

func assertion(key int, input ...interface{}) (unsafe.Pointer, func()) {
	if len(input) > key {
		switch deduced := input[key].(type) {
		case string:
			{
				var jObject = QAndroidJniObject_FromString(deduced)

				return jObject.Object(), func() { jObject.DestroyQAndroidJniObject() }
			}

		case []string:
			{
				var (
					jObject  = QAndroidJniObject_FromString(strings.Join(deduced, ",,,"))
					jObject2 = jObject.CallObjectMethod2("split", "(Ljava/lang/String;)[Ljava/lang/String;", ",,,")
				)

				jObject.DestroyQAndroidJniObject()

				return jObject2.Object(), func() { jObject2.DestroyQAndroidJniObject() }
			}

		case int:
			{
				return unsafe.Pointer(uintptr(C.int(deduced))), nil
			}

		case bool:
			{
				return unsafe.Pointer(uintptr(C.int(qt.GoBoolToInt(deduced)))), nil
			}

		case unsafe.Pointer:
			{
				return deduced, nil
			}

		case *QAndroidJniObject:
			{
				return deduced.Object(), nil
			}
		}
	}
	return nil, nil
}
开发者ID:mouse225,项目名称:qt,代码行数:45,代码来源:utils-androidextras_android.go


示例9: SetUseDesignMetrics

func (ptr *QTextOption) SetUseDesignMetrics(enable bool) {
	if ptr.Pointer() != nil {
		C.QTextOption_SetUseDesignMetrics(ptr.Pointer(), C.int(qt.GoBoolToInt(enable)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qtextoption.go


示例10: SetRetainSizeWhenHidden

func (ptr *QSizePolicy) SetRetainSizeWhenHidden(retainSize bool) {
	if ptr.Pointer() != nil {
		C.QSizePolicy_SetRetainSizeWhenHidden(ptr.Pointer(), C.int(qt.GoBoolToInt(retainSize)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qsizepolicy.go


示例11: SetTristate

func (ptr *QStandardItem) SetTristate(tristate bool) {
	if ptr.Pointer() != nil {
		C.QStandardItem_SetTristate(ptr.Pointer(), C.int(qt.GoBoolToInt(tristate)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qstandarditem.go


示例12: SetEnabled

func (ptr *QStandardItem) SetEnabled(enabled bool) {
	if ptr.Pointer() != nil {
		C.QStandardItem_SetEnabled(ptr.Pointer(), C.int(qt.GoBoolToInt(enabled)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qstandarditem.go


示例13: QGuiApplication_SetDesktopSettingsAware

func QGuiApplication_SetDesktopSettingsAware(on bool) {
	C.QGuiApplication_QGuiApplication_SetDesktopSettingsAware(C.int(qt.GoBoolToInt(on)))
}
开发者ID:xland,项目名称:qt,代码行数:3,代码来源:qguiapplication.go


示例14: SetIsRectangular

func (ptr *QSGClipNode) SetIsRectangular(rectHint bool) {
	if ptr.Pointer() != nil {
		C.QSGClipNode_SetIsRectangular(ptr.Pointer(), C.int(qt.GoBoolToInt(rectHint)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qsgclipnode.go


示例15: SetMovable

func (ptr *QToolBar) SetMovable(movable bool) {
	if ptr.Pointer() != nil {
		C.QToolBar_SetMovable(ptr.Pointer(), C.int(qt.GoBoolToInt(movable)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qtoolbar.go


示例16: PairingConfirmation

func (ptr *QBluetoothLocalDevice) PairingConfirmation(accept bool) {
	if ptr.Pointer() != nil {
		C.QBluetoothLocalDevice_PairingConfirmation(ptr.Pointer(), C.int(qt.GoBoolToInt(accept)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qbluetoothlocaldevice.go


示例17: SetLeadingIncluded

func (ptr *QTextLine) SetLeadingIncluded(included bool) {
	if ptr.Pointer() != nil {
		C.QTextLine_SetLeadingIncluded(ptr.Pointer(), C.int(qt.GoBoolToInt(included)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qtextline.go


示例18: SetDelayedReply

func (ptr *QDBusContext) SetDelayedReply(enable bool) {
	if ptr.Pointer() != nil {
		C.QDBusContext_SetDelayedReply(ptr.Pointer(), C.int(qt.GoBoolToInt(enable)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qdbuscontext.go


示例19: QGuiApplication_SetQuitOnLastWindowClosed

func QGuiApplication_SetQuitOnLastWindowClosed(quit bool) {
	C.QGuiApplication_QGuiApplication_SetQuitOnLastWindowClosed(C.int(qt.GoBoolToInt(quit)))
}
开发者ID:xland,项目名称:qt,代码行数:3,代码来源:qguiapplication.go


示例20: SetDisabled

func (ptr *QTreeWidgetItem) SetDisabled(disabled bool) {
	if ptr.Pointer() != nil {
		C.QTreeWidgetItem_SetDisabled(ptr.Pointer(), C.int(qt.GoBoolToInt(disabled)))
	}
}
开发者ID:xland,项目名称:qt,代码行数:5,代码来源:qtreewidgetitem.go



注:本文中的github.com/therecipe/qt.GoBoolToInt函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Golang qt.RandomIdentifier函数代码示例发布时间:2022-05-28
下一篇:
Golang qt.GetSignal函数代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap