The Fine Print: The following comments
are owned by whomever posted them.
( Reply )
|
Re: QKernelApplication
by Kevin Krammer on Tuesday 26/Aug/2003, @12:24
|
You know you just have to pass false to the QApplications constructor to disable GUI, right?
|
[
Reply To This | View ]
|
Re: QKernelApplication
by Justin on Tuesday 26/Aug/2003, @12:53
|
Yep, that's what I do now. The problem is that I still have to bag the whole Qt library, which requires X11 to compile and run, even if I don't use those parts.
|
[
Reply To This | View ]
|
|
Re: QKernelApplication
by Eron Lloyd on Tuesday 26/Aug/2003, @15:28
|
How good would Qt be at, for example, developing a mail/calendaring/messaging server in? So instead of having Kroupware, which consists of a bunch of third-party servers, you could have a Qt-native groupware server sharing many of the same features supported by the client (Kontact).
It would seem Qt's networking support is pretty advanced based on the amount of different KIO protocols that have been developed...
Eron
|
[
Reply To This | View ]
|
Re: QKernelApplication
by Tim Jansen on Wednesday 27/Aug/2003, @04:38
|
>>How good would Qt be at, for example, developing a mail/calendaring/messaging server in?<<
Should be good enough. Qt's networking support is indeed a weak spot, but it should be enough for TCP. Otherwise you could use thiagom's libqtaddon for this, or in the worst case the low-level socket api. And anyway, networking is just a tiny, almost negligible aspect of servers like that. TCP is trivial, the hard part is to implement the protocol and the data store.
|
[
Reply To This | View ]
|
|
Re: QKernelApplication
by deo on Tuesday 26/Aug/2003, @19:55
|
have you not used glib or curses before?
|
[
Reply To This | View ]
|
The Fine Print: The previous
comments are owned by whomever posted them.
( Reply )
|