11 2020 档案
摘要:makefile 文件中最难写的是各种规则,但是我们的图丁系统已经提供了常用的所有规则(在/tdGUI/x86/output/rules.mk 文件中), # zhangjie design 2.2 ##################################################
阅读全文
摘要:TwAppInit() 初始化控件系统 TwLayoutParseFile 解析某个加载的ini文件 TGetExecutePath 加载ini布局文件 TObjectGetFromName 获取控件名 TwSetCaption 设置控件的文字 TwUpdateShow()刷新界面 TObjectA
阅读全文
摘要:新建.vscode,新建c_cpp_properties.json,在includePath中配置/tdGUI/output/include/ c_cpp_properties.json { "configurations": [ { "name": "Linux", "includePath":
阅读全文
摘要:下载代码: https://files.cnblogs.com/files/senior-engineer/solingtdLauncher.zip
阅读全文
摘要:在QT creator 中,想编译32bit的程序,结果编译的时候,出现了题中的错误。 那是系统还没有安装多版本编译模式的缘故,安装如下插件即可。 sudo apt-get install gcc-multilib g++-multilib 如果上面的安装最新版失败了,也可以尝试下面的版本。 sud
阅读全文
摘要:Beyond Compare 4.1 and newer require matching package and OS architecture (amd64.deb or i386.deb). Beyond Compare 3 - 4.0.7 require the i386.deb packa
阅读全文
摘要:一)编写ini文件,用button实现加载界面 cl_animationWin={ type="window" x=0 y=0 w=1024 h=600 style="cl_normalwin" flags={ window_splash } ... cl_picLoadingButton={ ty
阅读全文
摘要:1,make menuconfig 2,Customer Setting--User Application--Panel Setting Build--PANEL Port Select, 选择1 样机选择0
阅读全文
摘要:1. 客户ID:SLCD010C 2. 席位数:11(填写用户名拼音,不和其它人重复就好) 3. TD Realizer下载地址:https://cloud.support.whbluestar.com/s/aTpDgcQA6mMyQg3 4. 示例代码下载地址:https://cloud.supp
阅读全文
摘要:挂载远程目录到本地目录: sudo mount -t cifs -o "rw,dir_mode=0777,file_mode=0777,username=用户名,password=密码" //192.168.10.245/fileFolder /home/workspace/server sudo
阅读全文
摘要:一)控件类型: type=“window” //窗口 type=“button” //按钮 type="text" //文本 type="processbar" //进度条 type="listview" //列表 二)控件公共属性 x:相对于父控件的x坐标 y:相对于父控件的y坐标 w:宽度 h:
阅读全文
摘要:1,添加layout_audio.ini窗口 窗口的属性为window_splash//没有边框和标题栏的普通窗口类型 music_main_window={ type="window" x=0 y=0 w=1024 h=600 flags={ disable window_splash hide_
阅读全文
摘要:首先点击左侧,安装对应语言的插件,安装javascript, php,c/c++ 1,跳转到指定的行数快捷键: Ctrl + G ,然后在弹出的框中输入行数就可以了 2,回退上一个光标操作: Ctrl+U 3,vs code代码格式化快捷键(会格式化整个文件,不是整理选中文件): On Window
阅读全文
摘要:1,如果没有.vscode文件就将添加,并且添加文件c_cpp_properties.json、launch.json和tasks.json三个文件 c_cpp_properties.json文件 { "configurations": [{ "name": "Linux", "includePat
阅读全文
摘要:一,编译自定义控件tdDialog 1)下载tdDialog源码,解压(tar -zxvf tdDialog.tgz),用VS code打开tdDialog工程。 2)右键点击工程的etc/config.ini,选择“启动TD图形服务器” 3)点击工具右上角“TD菜单”按键 4)点击“选择当前活动平
阅读全文