Search found 201 matches

by cg
Fri Jan 28, 2005 2:00 am
Forum: Announcements and Discoveries
Topic: New wxWidgets Tutorial!
Replies: 3
Views: 2403

New wxWidgets Tutorial!

not sure if this is the correct forum to post this or not.....

Dieter Landwehr of hardware-facts.org has created a wxwidgets tutorial using Chinook. He has made both a German and an Enlish version:

Tutorial in German

Tutorial in English

Thanks Dieter!

Chris
by cg
Tue Jan 25, 2005 3:54 pm
Forum: wxDev-C++
Topic: plot sample, linker problem, beginner
Replies: 2
Views: 2075

I had this link error a few weeks ago. I think added the advanced lib and all was ok. On my system this is called wx_mswd_adv-2.5 .

HTH

CG
by cg
Tue Jan 25, 2005 3:49 pm
Forum: C++ Development
Topic: wxThread Help!!!!
Replies: 14
Views: 5434

Are you are crosscompiling? If so I would try building this on windows to eliminate the crosscompiler issues as a problem. I would not be suprised if this was causing confusion. If it works then you know your code is ok.

BTW:

on Windows -mthread
on Linux -pthread

HTH

CG
by cg
Mon Jan 24, 2005 3:15 pm
Forum: C++ Development
Topic: wxThread Help!!!!
Replies: 14
Views: 5434

I have thread working on four platforms with gcc. On windows you need to pass -mthread flag to gcc.

HTH

CG
by cg
Mon Jan 24, 2005 3:13 pm
Forum: C++ Development
Topic: exchange a panel
Replies: 3
Views: 1409

You could use a notebook/listbood panel.

HTH

CG
by cg
Sun Jan 23, 2005 3:28 am
Forum: C++ Development
Topic: Help on getting started
Replies: 3
Views: 1437

There is a start guide in english/german: (its not vc but its still for newbies)
http://www.hardware-facts.net/html/wind ... _e_1.shtml

Also check the FAQ. It has some tutorials and links as well.

HTH

CG
by cg
Sat Jan 22, 2005 10:08 pm
Forum: Platform Related Issues
Topic: X11 not found during wxWidgets install on Red Hat 9
Replies: 1
Views: 1994

You need to install the xfree86 development library. It's called XFree86-devel......rpm

I can't remember what cd its on. You may also need to install glibc-devel as well. I can't remember exactly. If you try the XFree86-devel it will tell you want dependancies it needs.

HTH

CG
by cg
Sat Jan 22, 2005 5:49 pm
Forum: Compiler / Linking / IDE Related
Topic: Port to Linux
Replies: 1
Views: 1285

beware! PLUG: You could use my ide, Chinook. It comes with wx libraries prebuilt for windows, linux, solaris and bsd. It works consistently for all platforms so you don't have to worry about converting project files and all that stuff. You can also use KDevelop. I think you still need to build wx li...
by cg
Sat Jan 22, 2005 5:45 pm
Forum: C++ Development
Topic: wxThread Help!!!!
Replies: 14
Views: 5434

You can email me your class and I'll look at it today. cgarrett at degarrah.com

CG
by cg
Sat Jan 22, 2005 5:43 pm
Forum: C++ Development
Topic: Ctrl + V
Replies: 3
Views: 1474

Add an EVT_KEY event. Look at wxKeyEvent in the docs. You might need to add the wxWANTS_CHARS style to your form as well.

HTH

CG
by cg
Sat Jan 22, 2005 5:16 am
Forum: C++ Development
Topic: wxThread Help!!!!
Replies: 14
Views: 5434

You code snip from your first post has this declaration:

MyThread::MyThread() : : wxThread()
{
Create();
}


there are two ": :" in there. That looks like what the error is complaining about.

or remove the "()" in wxThread()

HTH

CG
by cg
Sat Jan 22, 2005 12:18 am
Forum: Compiler / Linking / IDE Related
Topic: building flags for wxwidgets and something else...
Replies: 2
Views: 1727

Re: building flags for wxwidgets and something else...

1. Is there any place where I can find information about all the configure flags you can use in order to build wxwidgets??? Stuff like --enable-monolithic --disable-shared and else??? I've found some of those in devpacks download sites and some forums, but not yet a complete list of 'em ./configure...
by cg
Fri Jan 21, 2005 6:04 pm
Forum: C++ Development
Topic: wxThread Help!!!!
Replies: 14
Views: 5434

Add:

return 0;

To your Entry method

:D

HTH
CG
by cg
Fri Jan 21, 2005 3:32 pm
Forum: Compiler / Linking / IDE Related
Topic: Linkage problems...
Replies: 2
Views: 1881

Did you rebuild your wx libraries as well?

CG
by cg
Wed Jan 19, 2005 6:11 pm
Forum: C++ Development
Topic: EVT_MENU_OPEN with null menu for sub-menu ??
Replies: 2
Views: 1647

I have functionality like this in Chinook for the MRU list. Basically I use a static set of menu ids. I map these to an array of filenames. Then I added an EVT_MENU event with a range. When the event is fired I check the id and offset it. For example the first ID might be 6000, I offset 6000 and get...