发布时间:2012-12-11 21:47:20
#include <linux/kthread.h>struct powerkey_t { ... struct tast_struct *p_thread; ...}static struct powerkey_t pwk;static int create_powerkey_thread(void){ struct powerkey_t *ppwk = &pwk; pr_debug("%s\n......【阅读全文】
发布时间:2012-12-11 21:46:47
原文:http://blog.csdn.net/defonds/article/details/4941746 最近准备做 Nokia 的 Symbian,Maemo 下触摸屏开发。考虑到程序的跨平台可移植性,最终选择使用 Qt 开发。相对来说,国内关于 Qt 相关文档并不算很多。作者将 Linux 下编译并安装配置 Qt 全过程总结了一下,只希望可以方便更多的朋友! 1。获得源代码 &nb......【阅读全文】
发布时间:2012-12-11 21:46:34
原文:http://blog.csdn.net/defonds/article/details/4941746 Qt 以其开源,免费,完全面向对象(很容易扩展),允许真正的组件编程以及可移植跨平台等诸多优势得到越来越多的开发人员的青睐。Qt Creator 是 Nokia 官方推出的专门针对 Qt 开发的 IDE。本文详细介绍了 Linux 下 Qt Creator 的安装,并针对 Qt Creator 的使用举了一个 Hello World 级别的例子,希望对第一次接触 Qt Creator 的朋友可以起到抛砖引玉的作用......【阅读全文】
发布时间:2012-12-11 21:43:15
头文件mainwindow.h+++++++++++++++++++++++++++++++++++++++++++++++#include <QThread>#include <QString>class Producer : public QThread{public: Producer(const QString &prefix); void stopThread(bool isStop);protected: void produceMessage......【阅读全文】
发布时间:2012-12-11 21:42:56
为创建一个线程,子类化QThread并且重写它的run()函数,例如:mainwindow.h=====================定义线程类class udp_thread; 定义线程指针udp_thread * m_pudp_thread;声明线程class udp_thread:public QThread{public: udp_thread(MainWindow *pWnd); ~udp_thread(); void run();public:&nb......【阅读全文】