Rawu G's thinking

此刻 只有点燃

博客园 首页 新随笔 联系 订阅 管理

        +++安装+++


        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();
      定义signal(在.cpp的构造函数中)
  
     connect(findButton, SIGNAL(clicked()), this, SLOT(findClicked()));
connect(findButton, SIGNAL(clicked()), this, SLOT(accept()));
   
     




+++动手干活+++


用官方的几个example 来做基础动手干干。



+++参考文章+++




posted on 2009-03-29 01:00  Rawu  阅读(227)  评论(0编辑  收藏  举报