- 博客(18)
- 资源 (7)
- 收藏
- 关注
原创 windows eclipse gtkmm 开发环境配置(二)
windows eclipse gtkmm 开发环境配置(二)三、在Eclipse中直接设置开发gtkmm的方法利用pkg-config工具确实方便快捷,但也有个缺陷:Eclipse的智能感知功能发挥不了作用了。如:在本文(一)中,你会发现,编辑器提示不能确定头文件(Unresolved inclusion: )。这对于像我这样的业余编程爱好者可是太不方便了。在网上看到一篇博客http://blogold.chinaunix.net/u2/80326/showart_1332416.html,照这个思路设置
2011-05-11 00:20:00
2816
原创 windows eclipse gtkmm 开发环境配置(一)
windows eclipse gtkmm 开发环境配置(一)一、安装gtkmm在windows下安装好MinGW和MSYS、Eclipse _CDT,并设置好环境变量,Eclipse下能正常编译C++程序。Gtkmm为Windows 准备了安装程序,安装很方便,下载地址是:http://ftp.gnome.org/pub/GNOME/binaries/win32/gtkmm/我下的是gtkmm-win32-devel-2.22.0-2.exe。安装完成后安装程序还做了如下设置:1. 设置了
2011-05-09 23:31:00
2877
原创 在 Microsoft Visual Studio 2010 中使用 gtkmm
在 Microsoft Visual Studio 2010 中使用 gtkmm 安装 gtkmm创建带 gtkmm 支持的项目1. 入门2. 改正 main() 函数3. 改正 stdafx.h4. 添加代码创建一个简单的 gtkmm 窗口5. 为 gtkmm 添加 MSVC 属性(Property)文件6. 修改几个项目配置7. 关于 Windows 控制台安装 gtkmm安装Visual Studio,并且已配置好开发本机 Win32 应用程序的环境,您还必须
2011-05-05 23:40:00
3366
原创 gtkmm的中文文档
<br />本人英语太烂,比较关注中文文档。<br />收集了几个:<br />“官网”在进行中文化的工作,目前还不全:<br />1、GTK+ 和 GNOME 的 C++ 接口<br />2、Programming with gtkmm 3:前五章是中文的;我的学习笔记记录的是第七章;<br />其他网友也翻译了一些:gtkmm 的翻译计划 - LinuxSir.Org<br />它比较旧,好像缺我笔记中的那部分。有了这些,像我这样的英语烂的,也可以起步学习了。<br />菜鸟们,一起开始gtkmm之旅。
2011-05-03 09:16:00
2256
翻译 7.2.8. Assistant
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.2.8. Assistant<br />AnAssistantsplits a complex operation into steps. Each step is a page, containing a header, a child widget and an action area. The Assistant's action area has navigation buttons whic
2011-05-02 06:55:00
1787
翻译 7.2.7. Notebook
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.2.7. Notebook<br />ANotebookhas a set of stackedpages, each of which contains widgets. Labelledtabsallow the user to select the pages.Notebooks allow several sets of widgets to be placed in a small spac
2011-05-01 08:52:00
1720
翻译 7.2.6. Table
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.2.6. Table<br />Tables allows us to place widgets in a grid, similar toGtk::Grid.<br />Tables允许我们可以将控件放置在grid中,与Gtk::Grid类似。<br />§ 7.2.6.1. Constructor /构造<br />§ 7.2.6.2. Adding widgets /添加控件<br />§
2011-04-30 07:19:00
1654
翻译 7.2.5. Grid
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.2.5. Grid(gtkmm 3, not gtkmm 2)<br />AGriddynamically lays out child widgets in rows and columns. The dimensions of the grid do not need to be specified in the constructor.<br />Grid容器以行和列的方式摆放子控件。不需要在构
2011-04-29 06:59:00
1791
翻译 7.2.4. ButtonBoxes
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.2.4. ButtonBoxes<br />Button boxes are a convenient way to quickly arrange a group of buttons. They come in both horizontal (Gtk::HButtonBox) and vertical (Gtk::VButtonBox) flavours. They are exactly al
2011-04-28 08:57:00
1640
翻译 7.2.3. Boxes
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.2.3. Boxes<br />Most packing uses boxes as in the above example. These are invisible containers into which we can pack our widgets. When packing widgets into a horizontal box, the objects are inserted h
2011-04-26 08:57:00
1906
翻译 Multiple-item widgets
学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正Multiple-item widgets 多项容器控件Multiple-item widgets inherit from Gtk::Container; just as with Gtk::Bin, you use the add() and remove() methods to add and remove contained widgets. Unlike Gtk::Bin::remove(), however, th
2011-04-25 13:21:00
1839
翻译 7.1.5. Alignment
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.1.5. Alignment<br />The Alignment widget allows you to place a widget at a position and size relative to the size of the Alignment widget itself. For instance, it might be used to center a widget. <br /
2011-04-24 09:38:00
1493
翻译 7.1.4. AspectFrame
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br /><br />7.1.4. AspectFrame<br />The AspectFrame widget looks like a Frame widget, but it also enforces the aspect ratio (the ratio of the width to the height) of the child widget, adding extra space if nece
2011-04-23 09:04:00
1594
翻译 ScrolledWindow
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br /><br />7.1.3. ScrolledWindow<br />ScrolledWindow widgets create a scrollable area. You can insert any type of widget into a ScrolledWindow window, and it will be accessible regardless of its size by using
2011-04-22 10:03:00
1999
翻译 Paned
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />7.1.2. Paned<br />Panesdivide a widget intotwo halves, separated by a moveable divider. There are two such widgets: Gtk::HPaned adds a horizontal divider, and Gtk::VPaned adds a vertical one. Other than t
2011-04-21 08:49:00
1633
翻译 Single-item Containers,Frame
<br />学习gtkmm有几周了,英语太烂了,硬着头皮边看边记,还没把握,发上来,大家斧正<br />Single-item Containers<br />单项容器<br />The single-item container widgets derive from Gtk::Bin, which provides the add() and remove() methods for the child widget. Note that Gtk::Button and Gtk::Window are
2011-04-20 22:59:00
1916
转载 SQLite 揭秘
<br />转自http://msdn.microsoft.com/zh-cn/magazine/ff898405.aspx<br />Ted Neward<br />下载示例代码<br />为了与本刊主题保持一致,现在应该回过头来介绍一下 SQL 和关系数据库本质方面的内容。很自然地,我们似乎应该写一些有关 SQL Server 的内容,即有关它的新功能集或性能改进之类的内容,但这并不是我的风格。请不要误解我的意思,SQL Server 是一种优秀的大型数据库,因而强烈建议在那些“巨无霸式”企业级方案中使
2010-09-08 16:04:00
1813
原创 Microsoft Visual Studio 2010中文版编译SQLlite3.7.0版
作为一名教师,没有具体项目的开发,却喜欢尝鲜,不经意间开始追星了。换了Win7,安装了Microsoft Visual Studio 2010中文版,7月22日SQLite发布了3.7.0版。当然想试试了。一、获取源代码下载:http://www.sqlite.org/sqlite-amalgamation-3_7_0.zip解压(自己任意指定)到你想放置它的目录里(我是放在了D:/SourceCode/sqlite_source/amalgamation)二、建立项目在vs2010中新建项目vc++的Wi
2010-08-01 11:04:00
2390
1
OpenSystemArchitect
2010-02-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人