You are not logged in.

Dear visitor, welcome to KDE-Forum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Monday, July 25th 2005, 10:47am

KDevelop and gui

Hi all. I'm following this guide to learn a little bit of kde programming. The problem is that this is qhat's written:

"In the Automake Manager, in sigcreate (program in bin), right click on sigcreatedlg.ui and choose Subclass Widget... from the context menu that appears."

I can't understand what this Automake Manager is, so I can't find this Subclass Widget window and I can't go on. Could you please explain me how I can go on?
Thanks for any help.

This post has been edited 1 times, last edit by "Luc4" (Jul 25th 2005, 10:48am)


Latem

Beginner

Posts: 31

Location: New Brunswick, Canada

Occupation: Student/Programmer

  • Send private message

2

Monday, July 25th 2005, 12:43pm

It's usually on the right hand side the bottom tab. Like You usually have documentation, code snippets, and then automake manager. Here's a screenshot:

http://www.kdevelop.org/graphics/screens…ubclassing1.png

Latem
The march of progress:
C:
printf("%10.2f", x);
C++:
cout << setw(10) << setprecision(2) << showpoint << x;
Java:
java.text.NumberFormat formatter = java.text.NumberFormat.getNumberInstance();
formatter.setMinimumFractionDigits(2);
formatter.setMaximumFractionDigits(2);
String s = formatter.format(x);
for (int i = s.length(); i < 10; i++) System.out.print(' ');
System.out.print(s);

This post has been edited 1 times, last edit by "Latem" (Jul 25th 2005, 2:02pm)


3

Monday, July 25th 2005, 1:30pm

Ah, ok, thanks, now I see it. Thanks.