[Interest] Inline Searchable combbox

2013-01-30 Thread Weng Xuetian
Screenshot is from owncloud: http://wstaw.org/m/2013/01/31/plasma-desktopPP1246.png Owncloud provides a combobox, when it's expanded, it provides a edit field to filter the candidate result, can any one give a hint about how to implement something similar in Qt? Thanks! __

[Interest] QML passing qobject in function call

2012-12-22 Thread Weng Xuetian
Hello, Here is my situation, I'm using a qml library, and it provides a declartive class A, which is a subclass type B. (A is registered as uncreatable qml type, I need this object to be passed to a function of exported c++ qobject, what prototype of the c++ function should I choose to let this ob

[Interest] Stream uploading with QNetworkAccessManager

2012-07-16 Thread Weng Xuetian
Hi Qt world, I need to upload some data via http through QLocalSocket until QLocalSocket closed, thus I'm trying to use QNetworkAccessManager put() and pass the socket pointer to it, but QNetworkAccessMaanger seems only send some inital data read from the socket and finished. Should I use QNetwo

Re: [Interest] About QPlatformInputContext in Qt5

2012-04-05 Thread Weng Xuetian
On Thu, Apr 5, 2012 at 3:28 PM, Pekka Vuorela wrote: > On Thu, 2012-04-05 at 09:59 +0800, ext Weng Xuetian wrote: >> Hi, >> Currently I'm trying to implement my own QPlatformInputContext, but it >> seems that QPlatformInputContextPlugin is in a private header of >&g

[Interest] About QPlatformInputContext in Qt5

2012-04-04 Thread Weng Xuetian
Hi, Currently I'm trying to implement my own QPlatformInputContext, but it seems that QPlatformInputContextPlugin is in a private header of qtcore? So is there anyway to implement third party QPlatformInputContext and export it as plugin in Qt5? Thanks!