+++安装+++
MSVC编译,QT4.4.3,用了两个小时。 比起QGIS的编译就算快的了。
+++tutor+++
看了官方的tutor
file:///C:/qt/4.4.3/doc/html/tutorials-addressbook.html
很简单易懂。
- Signal & slot
声明slot(在.h文件中)
public slots:void findClicked();
connect(findButton, SIGNAL(clicked()), this, SLOT(findClicked()));
connect(findButton, SIGNAL(clicked()), this, SLOT(accept()));
+++动手干活+++
用官方的几个example 来做基础动手干干。