内容简介:简介 Golang作为新生的高级语言,因为其独特的优势,迅速获得了开发者的支持,作者本身也对Golang简洁,优美的语言特性,分外喜欢。 不过遗憾的是:没有很多GUI与之搭配使用。为了响应广大开发者的期盼,我们为H...
简介
Golang作为新生的高级语言,因为其独特的优势,迅速获得了开发者的支持,作者本身也对Golang简洁,优美的语言特性,分外喜欢。
不过遗憾的是:没有很多GUI与之搭配使用。为了响应广大开发者的期盼,我们为HostMonitor制作了Golang版本,用代码详细描述了如何用Golang调用GuiLite的C++代码。
简单的来说,Golang可以方便的调用C语言,但无法直接调用C++;所以,需要将C++接口函数,用extern "C"关键字封装成C函数即可。
代码位置:https://gitee.com/idea4good/GuiLiteSamples/tree/master/HostMonitor/BuildGo
编译步骤(也可以见HostMonitor下的readme文件)
1. Build UIcode:
cd HostMonitor/UIcode
If x64/raspberry pi:
cmake .
make
cp libUIcode.a ../BuildGo/libs/amd64/
If ARM32:
cmake -D CMAKE_C_COMPILER="/usr/bin/arm-linux-gnueabi-gcc" -D CMAKE_CXX_COMPILER="/usr/bin/arm-linux-gnueabi-g++" .
make
cp libUIcode.a ../BuildGo/libs/arm/
2. Build Golang:
cd HostMonitor/BuildGo
go build -o HostMonitor
3. 在 Linux 上的运行方法:
Run with framebuffer:
sudo ./HostMonitor /dev/fb0 /dev/fb0: The path of framebuffer device file.
Run inside QT APP(display-xxx is a QT APP for display, skip this if you haven't installed QT):
If x64: sudo ./display-x64 1 1024 768 | ./HostMonitor shared-fb
If ARM/Raspberry Pi: sudo ./display-arm 1 1024 768 | ./HostMonitor shared-fb
最后,遇到任何问题,都欢迎大家在开发群里面讨论,我们会尽力给大家提供帮助,谢谢!
以上所述就是小编给大家介绍的《GuiLite 2.0 发布:Golang 的 GUI 外衣》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 为我开发的API添加华丽的外衣
- 决策树算法:隐藏在“当代玄学”外衣下的真相
- 余凯揭开自动驾驶繁荣外衣:激荡硅谷、失落中国 | 自动驾驶这十年
- 当代码脱去枯燥乏味的“外衣”,我发现了真正的创造力
- NPM包(模块)发布、更新、撤销发布
- 有赞灰度发布与蓝绿发布实践
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Introduction to Computation and Programming Using Python
John V. Guttag / The MIT Press / 2013-7 / USD 25.00
This book introduces students with little or no prior programming experience to the art of computational problem solving using Python and various Python libraries, including PyLab. It provides student......一起来看看 《Introduction to Computation and Programming Using Python》 这本书的介绍吧!