摘要: ConfigurationLoader主要负责WW中各个图层的加载。首先看看安装目录Config文件夹下Earth.xml文件View Code 1 <?xml version="1.0" encoding="UTF-8"?> 2 <World Name="Earth" EquatorialRadius="6378137.0" LayerDirectory="Earth" xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst 阅读全文
posted @ 2013-05-02 11:44 太一吾鱼水 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 第一个Qt程序,环境Qt4.8.4 & Vs2010。新建一个Qt控制台程序,在向导中选择使用GUI库。1 #include <QtGui/QApplication>2 #include <QtGui/QLabel>3 int main(int argc, char *argv[])4 {5 QApplication a(argc, argv);6 QLabel *lbl=new QLabel("Hello Qt!");7 lbl->show();8 return a.exec();9 } 1 #include <QHBoxLay 阅读全文
posted @ 2013-05-02 11:22 太一吾鱼水 阅读(409) 评论(0) 推荐(0) 编辑