发新话题
打印

gnome/gtk有自己的集成开发环境吗?

gnome/gtk有自己的集成开发环境吗?

我只知道两个,Kdevelop和kylix都是基于qt的      

TOP

Glad and Anjuta,but they are not IDE infact!      
class faraway : public GNU { public: faraway() : _M_name("faraway"), _M_sex("Male"), _M_age(26) { } ~faraway(); private: std::string _M_name; std::string _M_sex; unsigned long _M_age; };

TOP

Anjuta是IDE

Anjuta is a GNOME development IDE and can be used to create either GNOME/Gtk+ applications with glade or glade-gnome or can be used for creating generic applications. It is designed for use with C/C++ and therefore features an easy to use debugger and compilation environment.

而Glade是一个接近于RAD的程序, 可用于设计界面,
程序利用libglade调用一个XML(foo.glade)立界面
对于界面比较复杂的程序,是个不错的选择,而且可以通过修改foo.glade文件来修改界面布局      

TOP

发新话题