Search found 67 matches

by the_drow
Fri Apr 20, 2007 9:07 am
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

But wxDocument and wxView handles *streams*. Reread the documentation. http://www.wxwidgets.org/manuals/stable/wx_wxdocument.html#wxdocument That doesn't satisfy my needs. Also, I do have a HUGE amount of classes. OK, let me explain it one more time. wxDocument is a class where you put the data. It...
by the_drow
Thu Apr 19, 2007 7:59 pm
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

My project is a DND Character Generator. I have three layers. 1) The data layer: This layer contains all the rules of the game and all the statistics that need to be calculated. This uses wxWidgets' events system. This is going to be your wxDocument-derived class. Modify the sample to put your data...
by the_drow
Thu Apr 19, 2007 9:54 am
Forum: C++ Development
Topic: SpinCtrl and float values
Replies: 6
Views: 1612

SpinCtrl and float values

I need a SpinCtrl that uses float values.
How can I do this?
Do I need to implant my own?

Thanks,
Omer
by the_drow
Thu Apr 19, 2007 9:02 am
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

Hi, Take a look at docview sample or docvwmdi sample. This is what you are looking for.... You will have a document and the view representing the document. Thank you. Why is it what I'm looking for? Document handles streams & View presents them. Thats all. I don't need to handle multiple docume...
by the_drow
Wed Apr 18, 2007 5:25 am
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

My project is a DND Character Generator. I have three layers. 1) The data layer: This layer contains all the rules of the game and all the statistics that need to be calculated. This uses wxWidgets' events system. 2) The business layer: The business layer handles the XML data and loads it for the da...
by the_drow
Tue Apr 17, 2007 2:17 pm
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

Re: Using DLLs in wxWidgets

Ok, these are way too many questions on many topics for one thread. You will need to *read* some things yourself :) I'm trying to avoid this because I'm not an expert in the subject and I never knew how to link DLLs but now I really need to use it What makes you so sure you need that? It would real...
by the_drow
Tue Apr 17, 2007 1:44 pm
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

Re: Using DLLs in wxWidgets

Hi! To where do I need to link the wx DLL? To the DLL I made? To the host? Or to both? If you build wxWidgets as a DLL, link host and DLL with it. Then they both will use the DLL at runtime. How do I build wxWidgets as a DLL on wxDev-Cpp? How do I link host and DLL with it? What's WXDLL_ENTRY_FUNCT...
by the_drow
Tue Apr 17, 2007 7:25 am
Forum: C++ Development
Topic: Using DLLs in wxWidgets
Replies: 12
Views: 2006

Using DLLs in wxWidgets

How do I load/unload a DLL into a wx-based program? Why do I need to use a compiled DLL of wxWidgets for a host/client that uses wxWidgets? I checked wxWiki and I read that "Problem occurs surely in libraries and programs compiled with wxDev-C++, when both host and DLL use wx" To where do ...
by the_drow
Sun Mar 18, 2007 3:00 pm
Forum: C++ Development
Topic: I can't find the cpps in the cvs direcotry
Replies: 3
Views: 1025

Auria wrote:on my computer it is there:

/wxWidgets_base_folder/src/xml/xml.cpp
donnu why I can't find it.
Can you upload it to here?
by the_drow
Sun Mar 18, 2007 2:26 pm
Forum: C++ Development
Topic: I can't find the cpps in the cvs direcotry
Replies: 3
Views: 1025

I can't find the cpps in the cvs direcotry

I want to take a look at xml.cpp because I want to remake the xml parser to xmldom compatible so I want to see how things are done.
I can't find the cpp in the cvs or in my computer.

Thanks in advance,
Omer
by the_drow
Tue Feb 13, 2007 10:47 am
Forum: Compiler / Linking / IDE Related
Topic: DLLs, DevCpp & wxWindows
Replies: 0
Views: 418

DLLs, DevCpp & wxWindows

How do you export/import classes in DevCpp?
Do I need to export wxWindows as well?
How can I send an exit event from the main program?

Thanks in advance,
Omer
by the_drow
Fri Jan 26, 2007 6:36 am
Forum: C++ Development
Topic: Changing text color on a listbox
Replies: 3
Views: 1533

Changing text color on a listbox

I want to change just one item's color in a listbox.
Can it be done? If so then how?

Omer
by the_drow
Sun Jan 07, 2007 3:40 pm
Forum: Compiler / Linking / IDE Related
Topic: Linking problems with wxWindowBase
Replies: 5
Views: 1116

I thank you.
I haven't thought about deleting the object files.

It works now :D
Omer
by the_drow
Fri Jan 05, 2007 12:29 pm
Forum: Compiler / Linking / IDE Related
Topic: Linking problems with wxWindowBase
Replies: 5
Views: 1116

Hi Omer, I just changed the size of the window. When I changed it back it didn't work. I think you mean that you resized the window on screen. If you actually meant that you altered your code, forget the rest of this reply ;) . In that case please let us know what you did, and your wxWidgets versio...
by the_drow
Fri Jan 05, 2007 7:13 am
Forum: Compiler / Linking / IDE Related
Topic: Linking problems with wxWindowBase
Replies: 5
Views: 1116

Linking problems with wxWindowBase

I don't know why I get those errors. I just changed the size of the window. When I changed it back it didn't work. Output/MingW/MainFrm.o:MainFrm.cpp:(.rdata$_ZTV7frmMain[vtable for frmMain]+0x7c): undefined reference to `wxTopLevelWindowBase::DoSetSizeHints(int, int, int, int, int, int)' Output/Min...