Qt 编程点滴9

来源:互联网 发布:域名为什么认证 编辑:程序博客网 时间:2024/04/29 23:45

QString怎么转换成char

  1. QString str ="123456";  
  2. str.toAscii().data(); //this return a char* or const char*  
  3. str.toAscii() return a QByteArray  
  4.  
  5. QString Str; //Str = "asdfasdfasdf";  
  6. Str->toString().c_str(); 

调用 Q_DECLARE_METATYPE  报以下错

  1. ..\..\..\..\Qt\src\corelib\kernel\qmetatype.h||In function \\\'void* qMetaTypeConstructHelper(const T*) [with T = ContactsInfoTabItemData]\\\':|  
  2. ..\..\..\..\Qt\src\corelib\kernel\qmetatype.h|152|instantiated from \\\'int qRegisterMetaType(const char*, T*) [with T = ContactsInfoTabItemData]\\\'|  
  3. src\contactsinfotabitemdata.h|62|instantiated from here|  
  4. ..\..\..\..\Qt\src\corelib\kernel\qmetatype.h|126|error: no matching function for call to \\\'ContactsInfoTabItemData::ContactsInfoTabItemData()\\\'| 

如果报以上相类似的错误,请对构造函数中的每个参数赋初值,下面的写法是错误的

  1. class ContactsInfoTabItemData  
  2. {  
  3. public:  
  4.   ContactsInfoTabItemData(QString name,QString caption);  
  5. };  
  6. Q_DECLARE_METATYPE(ContactsInfoTabItemData); 

正确的写法应为:

  1. class ContactsInfoTabItemData  
  2. {  
  3. public:  
  4.   ContactsInfoTabItemData(QString name=QString(),QString caption=QString());  
  5. };  
  6. Q_DECLARE_METATYPE(ContactsInfoTabItemData); 

如果程序莫名奇妙的退出,也不报DLL找不到的错误,请仔细检查Main函数体有没直接Return的语句,以造成不提示,直接退出的错误;

在Qt中计算文本的宽度与高度  ( http://www.cuteqt.com/blog/?p=1029 )

  1. error: incomplete type %u2018nsIDOMComment%u2019 used in nested name specifier 

产生此错误的原因:

  1.   g++ gives this message if you\\\'ve forward-declared a type, like this  
  2. class MyClass;  
  3. and then you try and access one of its members, like maybe:  
  4. MyClass::doSomething()  
  5. g++ is complaining that it hasn\\\'t seen the body of class MyClass yet, so it has no way to know what MyClass::doSomething is.  
  6. (In C++ jargon, an "incomplete type" is a type that\\\'s been forward-declared but not yet defined.) 

互斥用法:

  1. QMutex mutex;  
  2.  
  3. void GlobalVar::setUserInfo(const GlobalVar::UserInfo &userInfo)  
  4. {  
  5.     QMutexLocker locker(&mutex);  
  6.     this->userinfo = userInfo;  

自定义事件方法:

  1. a.h:  
  2.  
  3. #include "event.h"  
  4.  
  5. typedef void ( EventDelegater::*SetWidgetParent )(QWidget*,QString  );  
  6.  
  7. class test  
  8. {  
  9. public:  
  10.   Event OnSetWidgetParent;  
  11.  
  12. private:  
  13.   inline void invokeSetWidgetParent(QWidget *parentWidget,QString widgetName);    
  14. };  
  15.  
  16. a.cpp:  
  17.  
  18. inline void test::invokeSetWidgetParent(QWidget *parentWidget,QString widgetName)  
  19. {  
  20.  
  21.     if ( !OnSetWidgetParent.m_EventList.empty() )  
  22.     {  
  23.         // 循环事件列表  
  24.         Event< SetWidgetParent >::EventIterator iter;  
  25.         for ( iter = OnSetWidgetParent.m_EventList.begin();  
  26.                 iter != OnSetWidgetParent.m_EventList.end();  
  27.                 ++iter )  
  28.         {  
  29.             // 调用事件  
  30.             InvokeEvent( parentWidget, widgetName );  
  31.  
  32.         }  
  33.     }  

触发事件:

  1. invokeSetWidgetParent(NULL,QString());   

绑定事件方法:

  1. test->OnSetWidgetParent.Bind(this, &MainWindow::setWidgetParent);   


自定义宏的用法:

  1. *.pro  
  2. DEBUGSAVETOFILE = 1 
  3. isEmpty(DEBUGSAVETOFILE){  
  4.     win32:debug {  
  5.         CONFIG += console  
  6.     }  
  7. }  
  8. else{  
  9.     DEFINES += __DEBUGSAVETOFILE__  
  10. }    
  11. main.cpp:  
  12. #ifdef __DEBUGSAVETOFILE__  
  13. #pragma message( "__DEBUGSAVETOFILE__ is defined.")  
  14.     qInstallMsgHandler( messageOutput );  
  15. #else  
  16. #pragma message("win32:debug is defined.")  
  17. #endif 
原创粉丝点击