You are not logged in.

Search results

Search results 1-20 of 27.

Tuesday, February 1st 2005, 12:09pm

Author: e8johan

RE: test

asarasar :-) hjkyui

Thursday, January 20th 2005, 2:28pm

Author: e8johan

Interprocess communication and KDE

Quoted Originally posted by fiomba Thank you for your replay, but it's not very useful. Ok, I understand you. Have you looked at any of these links? http://lukeplant.me.uk/articles.php?id=1 http://www.volny.cz/bwian/dcop.html Using the dcop command, you can explore what you can do with dcop and what level of control that you can achieve.

Wednesday, January 19th 2005, 3:35pm

Author: e8johan

RE: Interprocess communication and KDE

DCOP is not used to send key strikes, for that, the X11 event queues are used and they can be used from Qt. DCOP can, however, be used to control Konqueror.

Thursday, December 9th 2004, 6:41am

Author: e8johan

RE: Knoppix's QT

When I used a knoppix hd install I had to set QTDIR in my ~/.bashrc script. Also, you can use apt to install the examples. For example, apt-get install qt3-examples would do it.

Tuesday, November 2nd 2004, 6:01am

Author: e8johan

RE: owner-draw

Either sub-class QWidget and re-implement paintEvent, or use the QCanvas module. A final option is to use the OpenGL module.

Friday, October 29th 2004, 6:55am

Author: e8johan

RE: dcop class

Look at KDE. Since the source is open, you can download and look at some of the apps there. I know that a proper article/tutorial would be better, but the source is an option.

Thursday, October 28th 2004, 6:00am

Author: e8johan

RE: Application icon

According to this site, the sizes should be 16,32,48...

Wednesday, October 20th 2004, 6:34am

Author: e8johan

RE: tr2i18n and i18n

Look here: http://qtforum.org/thread.php?threadid=3…hilight=i18n+tr

Wednesday, September 29th 2004, 9:14am

Author: e8johan

RE: kde translation

The problem seems to be related to the fact that the dialogs are from KDE (since the Qt equivalents are translated) so I moved the thread.

Wednesday, September 29th 2004, 9:12am

Author: e8johan

RE: Using qmake as a build system for KDE apps

This is great news! I think that many newcommers see the auto tools as a huge overkill and a problem. Qmake on the other hand is just plain simple.

Wednesday, September 29th 2004, 7:14am

Author: e8johan

RE: To be more clear

Ok, so the Qt dialogs wont localize. Do you use QTranslator to load the language in your main routine as described in the docs? Could the problem be that the dialog uses the KDE language (as opposed to your application's language) and that it is not set to Chinese?

Tuesday, September 28th 2004, 12:04pm

Author: e8johan

RE: Cant Translate

You will have to be more specific. In what situation cant you locate the language?

Thursday, September 9th 2004, 6:28am

Author: e8johan

RE: #1 Wishlist item for a KDE newb learner like me

What is stopping you from using Designer in this way? Or is that interface too crude?

Monday, September 6th 2004, 7:48am

Author: e8johan

RE: #1 Wishlist item for a KDE newb learner like me

So what you want is something like this, http://doc.trolltech.com/3.3/pictures.html , but up to date and for KDE?

Friday, September 3rd 2004, 6:25am

Author: e8johan

RE: How do I start kdesu so the app runs as root?

No, lets say that your app is known as myapp. Then create your application and name the binary myapp.real, then use a shell (bash) script called myapp to start myapp.real using kdesu.

Thursday, September 2nd 2004, 11:27am

Author: e8johan

RE: KDE localization

Have you looked here: http://developer.kde.org/documentation/l…i18n-howto.html ?

Wednesday, September 1st 2004, 6:15am

Author: e8johan

RE: How do I start kdesu so the app runs as root?

Use a kdesu call to start your application (though a shell script). http://www.stack.nl/~geertj/kde/kdesu-doc/index-3.html

Thursday, June 24th 2004, 6:31am

Author: e8johan

RE: simple .rc question

I thought rc-files where just for windows... but I can be wrong.

Wednesday, May 5th 2004, 8:59am

Author: e8johan

RE: Qt-mt not found

It is probably a mixup of Qt with or withour multithreading and KDE expecting it to be the other way around.

Wednesday, May 5th 2004, 7:36am

Author: e8johan

RE: QString problem

Are you sure that your Qt setup is sane? The method exists: http://doc.trolltech.com/3.2/qstring.html#setNum .