Search found 27 matches
- Fri Jan 28, 2011 7:48 pm
- Forum: wxCode
- Topic: wxSQLite3 and SQLite3 as static libraries. Information share
- Replies: 0
- Views: 3193
wxSQLite3 and SQLite3 as static libraries. Information share
Just some suggestions. It took me quite a while to figure out how to compile these objects as part of wxDevC++ and I wanted to share this information. Finally, after much screwing around, I decided to build the source files wxSQLite3.cpp and SQLite3.c as part of my sqltest application. This demonstr...
- Mon Dec 20, 2010 10:28 am
- Forum: wxDev-C++
- Topic: Multilingual
- Replies: 0
- Views: 811
Multilingual
I'm not an expert on this, but from what I can see, you can set the font and the text. So for germanic/latin based languages, it shouldn't be a problem. You can set the font and the text (can you set the font at runtime?) for labels for example. So, you could set up a class that controls font and te...
- Mon Dec 20, 2010 10:22 am
- Forum: wxDev-C++
- Topic: Creating a new project doesn't seem to work with newest ?
- Replies: 1
- Views: 1163
Once again, I solved my own problem. Pretty slow response time on this forum :-) I had to totally uninstall my wxDevC++ installation and reinstall the latest again from scratch. This time I also installed the MSW classes (I don't think this made a diff, but you never know). This is time consuming fo...
- Mon Dec 20, 2010 12:44 am
- Forum: wxDev-C++
- Topic: Creating a new project doesn't seem to work with newest ?
- Replies: 1
- Views: 1163
Creating a new project doesn't seem to work with newest ?
I wanted to create a new static library so I selected create new project. A window popped up with different options as icons and one was static lib. I selected the static lib. A window appeared where I could select the name of the library. I did that and hit next, and it showed me a file selection b...
- Sun Dec 19, 2010 4:08 pm
- Forum: Component Writing
- Topic: wxScrollWindow as Draw and Drag Control
- Replies: 3
- Views: 2882
Drawing scalable arrows.
I had to create arrows in my own components in a different GUI once upon a time (QNX Photon) and creating arrows for components like a spincontrol or something like that can be very complex. The problem is that if you draw an arrow using just line drawing and fill in the triangle, the result is dist...
- Fri Dec 17, 2010 10:50 pm
- Forum: wxDev-C++
- Topic: wxStaticText and wxDevC++ question
- Replies: 1
- Views: 1050
- Fri Dec 17, 2010 10:31 pm
- Forum: wxDev-C++
- Topic: wxStaticText and wxDevC++ question
- Replies: 1
- Views: 1050
wxStaticText and wxDevC++ question
I'm using version 7.2.0.2 and when I change the size of a wxStaticText, the text wraps around just like I want it to. When I save it, the .wxform file contains the correct width and height as I entered in the form properties. HOWEVER, when I reload the project, all my wxStaticText objects have the d...
- Mon Oct 26, 2009 7:01 am
- Forum: wxDev-C++
- Topic: External editor
- Replies: 1
- Views: 849
External editor
I like the package, but have had a lot of crashes where I lost my forms (RC5). I suspect these problems have been fixed and just need to get the latest version. One feature I'd love to see (and maybe it already exists) is the ability to use my own editor (VIM) rather than the internal one. The probl...
- Mon Jul 27, 2009 6:27 pm
- Forum: C++ Development
- Topic: Is there a site I can submit useful software to?
- Replies: 0
- Views: 422
Is there a site I can submit useful software to?
I may have some software that I may want to contribute, but I don't have the time to productize it for wxWidgets, but I'm willing to give it to you to reuse if you'd like and to productize as a team if you'd like..... e.g. I have a class that you only have to include a .cpp and a .h file to your pro...
- Mon Jul 27, 2009 12:36 am
- Forum: C++ Development
- Topic: Help with simpler minimal sizer problem.
- Replies: 6
- Views: 1155
I understand...
...about the sizers. wxDevC++ handles sizers in the forms, but the part I'm doing is programmatic. I'm creating a wizard from a dialog full of panels. wxWizard is not to my liking and doesn't have form support....so I had to write my own. Actually, I found it to be less trouble to not use sizers at ...
- Sun Jul 26, 2009 4:50 pm
- Forum: C++ Development
- Topic: Help with simpler minimal sizer problem.
- Replies: 6
- Views: 1155
- Sun Jul 26, 2009 2:35 am
- Forum: C++ Development
- Topic: Help with simpler minimal sizer problem.
- Replies: 6
- Views: 1155
Help with simpler minimal sizer problem.
I posted another thread that I closed out because I got the answers I needed and figured I only needed to use one sizer and this is where I'm stuck right now. This problem can be illustrated in a much simpler example.... I have several absolutely positioned panels in a wxDialog. There is one on the ...
- Sun Jul 26, 2009 12:28 am
- Forum: C++ Development
- Topic: Concerns about the effectiveness of code
- Replies: 9
- Views: 1324
I'm mostly an embedded developer and that is where you run into the kinds of problems you are talking about, but that is one a 4MHz PIC processor or something running a GUI on an LCD. On a modern PC running a multi Gigahertz clock and super fast front side bus (memory), you have nothing to worry abo...
- Sun Jul 26, 2009 12:18 am
- Forum: C++ Development
- Topic: Please Help with Sizer issue. Not sure if bugs or features.
- Replies: 8
- Views: 1328
If the sizers are not resizing the panels then they are creating a virtual box inside the panel where they are placing the panel's children and this is smaller than the panel so alignment works in this box....not relative to the panel....as you point out and I pointed out in my last post, I believe ...
- Sat Jul 25, 2009 10:27 pm
- Forum: C++ Development
- Topic: Please Help with Sizer issue. Not sure if bugs or features.
- Replies: 8
- Views: 1328
I think I have a solution for my unchanging panel size. It's to set the minimum size of the sizer using the sizer->SetMinSize(w,h) function call, or alternatively to use the sizer->SetDimension(x,y,w,h) to force position and size. Combining that with the panel->SetMinSize and SetMaxSize, I believe I...