摘要:Implicit vs Explicit Sharing Implicit sharing might not be right for the Employee class. Consider a simple example that creates two instances of the implicitly sharedEmployee class. #include "emplo...
阅读全文
摘要:QList<QString> list; list << "A" << "B" << "C" << "D"; QListIterator<QString> i(list); while (i.hasNext()) qDebug() << i.next();Unlike STL-style iterators (covered below), Java-style iterators ...
阅读全文
摘要:http://www.developer.nokia.com.cn/Develop/Qt/Getting_started/Step_5.html
阅读全文
摘要:https://developers.google.com/talk/libjingle/developer_guide http://delta.affinix.com/
阅读全文
摘要:第一课! 部分字符替换 这个方法论坛上其他帖子也有,所以我只简单的说一下。 操作目的及适用:用于把某个字体的少量字符换成其他字体的相应字符。这里的少量字符是指数的过来的。例如:把雅黑字体的英文和数字换成华盛顿字体 假设:你要把A字库的英文和数字改成B字库的英文数字 步骤: 1,打开修改所用的字库文件,也就是A字库和B字库。打开软件以后,托进去就行。 2,在B字...
阅读全文
摘要:有三种方式: 1,国际化 2:写uincode吗 3:直接写文字再QML文件中,和symbian一样,文件保存成utf8 使用 Qt 的国际化功能(与QtScript完全一样,使用 qsTr()) 使用 unicode 的转义字符("\uxxxx") #include <QtCore/QTranslator> #include <QtGui/QAp...
阅读全文
摘要:http://blog.csdn.net/water_cow/article/details/6908508
阅读全文
摘要:1.配置过程 1.1、配置Linux内核使能DHCP相关选项: [*]Networking support --> Networking support Networking options --> [*]Packet socket [*]IP:kernel level autoconfiguration [*] IP:DHCP support ...
阅读全文