当前位置: 技术问答>linux和unix
linux上开发的一些问题
来源: 互联网 发布时间:2016-04-07
本文导语: 目标是在红帽子linux上做一个聊天程序,现在有如下问题: 1.语言使用c/c++,GUI使用wxWidgets 2.机上装有Emacs,还有Glade Inerface Designer看起来像是IDE,不知道是不是 3.linux上如何安装wxWidgets,在网上找了好久,要么不全,...
目标是在红帽子linux上做一个聊天程序,现在有如下问题:
1.语言使用c/c++,GUI使用wxWidgets
2.机上装有Emacs,还有Glade Inerface Designer看起来像是IDE,不知道是不是
3.linux上如何安装wxWidgets,在网上找了好久,要么不全,要么都是windows下的,请达人给份详细点的
4.平时都是用的Emacs+GCC,没做过带有界面的东东,如果要做的话还要装些什么工具?或直接用Emacs写代码?
麻烦达人们讲解时把讲到的东西说的具体点,谢谢!^_^高分请教
1.语言使用c/c++,GUI使用wxWidgets
2.机上装有Emacs,还有Glade Inerface Designer看起来像是IDE,不知道是不是
3.linux上如何安装wxWidgets,在网上找了好久,要么不全,要么都是windows下的,请达人给份详细点的
4.平时都是用的Emacs+GCC,没做过带有界面的东东,如果要做的话还要装些什么工具?或直接用Emacs写代码?
麻烦达人们讲解时把讲到的东西说的具体点,谢谢!^_^高分请教
|
2、IDE编译环境可考虑KDEVELOP,不过makefile还是自己写好,QT做设计还不错。
3、终端输入apt-cache search wxWidgets (最好先加好软件源,apt-get update更新下列表)
我这里搜到这些相关的包(不完全引用):
wx-common - wxWidgets Cross-platform C++ GUI toolkit (common support files)
wx2.6-doc - wxWidgets Cross-platform C++ GUI toolkit (documentation)
wx2.6-examples - wxWidgets Cross-platform C++ GUI toolkit (examples)
wx2.6-headers - wxWidgets Cross-platform C++ GUI toolkit (header files)
wx2.6-i18n - wxWidgets Cross-platform C++ GUI toolkit (i18n support)
wx2.8-doc - wxWidgets Cross-platform C++ GUI toolkit (documentation)
wx2.8-examples - wxWidgets Cross-platform C++ GUI toolkit (examples)
wx2.8-headers - wxWidgets Cross-platform C++ GUI toolkit (header files)
wx2.8-i18n - wxWidgets Cross-platform C++ GUI toolkit (i18n support)
wxformbuilder - WYSIWYG GUI Designer and Code Generator for wxWidgets
wxmaxima - a wxWidgets GUI for the computer algebra system maxima
然后么apt-get install 把以上你想装的包名输到后面即可
4、其实是直接用文本编辑器写代码,写makefile比较好,有利于自己对程序结构的把握
3、终端输入apt-cache search wxWidgets (最好先加好软件源,apt-get update更新下列表)
我这里搜到这些相关的包(不完全引用):
wx-common - wxWidgets Cross-platform C++ GUI toolkit (common support files)
wx2.6-doc - wxWidgets Cross-platform C++ GUI toolkit (documentation)
wx2.6-examples - wxWidgets Cross-platform C++ GUI toolkit (examples)
wx2.6-headers - wxWidgets Cross-platform C++ GUI toolkit (header files)
wx2.6-i18n - wxWidgets Cross-platform C++ GUI toolkit (i18n support)
wx2.8-doc - wxWidgets Cross-platform C++ GUI toolkit (documentation)
wx2.8-examples - wxWidgets Cross-platform C++ GUI toolkit (examples)
wx2.8-headers - wxWidgets Cross-platform C++ GUI toolkit (header files)
wx2.8-i18n - wxWidgets Cross-platform C++ GUI toolkit (i18n support)
wxformbuilder - WYSIWYG GUI Designer and Code Generator for wxWidgets
wxmaxima - a wxWidgets GUI for the computer algebra system maxima
然后么apt-get install 把以上你想装的包名输到后面即可
4、其实是直接用文本编辑器写代码,写makefile比较好,有利于自己对程序结构的把握
|
wxWidgets
2.linux下可视化设计东西都不怎么强,先手写吧
3.linux装软件不用上网搜。用包管理器到软件包仓库自动下载安装 红帽是yum
2.linux下可视化设计东西都不怎么强,先手写吧
3.linux装软件不用上网搜。用包管理器到软件包仓库自动下载安装 红帽是yum
|
帮顶,linux上做界面不容易