Search found 203 matches
- Fri Jun 03, 2005 3:08 am
- Forum: General Development
- Topic: Sizer Question
- Replies: 3
- Views: 1065
pSizer1->Add(pSizer1_1, wxEXPAND | wxALL, 5); pSizer1->Add(pSizer1_2, wxEXPAND | wxALL, 5); pSizer1_1->Add(pText_SimScript, wxALL, 5); It looks like you are missing a parameter in there (proportion). Try this: pSizer1->Add(pSizer1_1, 0, wxEXPAND | wxALL, 5); pSizer1->Add(pSizer1_2, 0, wxEXPAND | wx...
- Tue May 31, 2005 10:31 pm
- Forum: General Development
- Topic: Sizer Question
- Replies: 3
- Views: 1065
- Tue May 31, 2005 10:25 pm
- Forum: C++ Development
- Topic: "#pragma once" for header files under GCC
- Replies: 3
- Views: 1090
It is deprecated in GCC versions before 3.4. It was undeprecated in GCC 3.4. but it's more portable to use the standard inclusion cards like Avi showed although avoid putting two leading underscores before the name as those names are reserved for the compiler's interal usage according to the ANSI st...
- Fri May 27, 2005 11:47 pm
- Forum: C++ Development
- Topic: font problem with wxMemoryDC::DrawText()
- Replies: 2
- Views: 915
You really should use wxWidgets 2.6.0. I know that the default font on windows (the one that would be chosen by your first example) is Serif which is a non-TrueType font and you can only make it so small before it just stops getting any smaller. Arial should have no problems though. I've seen Arial ...
- Fri May 27, 2005 11:06 am
- Forum: General Development
- Topic: Antialiasing in wxWidgets drawing?
- Replies: 1
- Views: 1288
No, there isn't but I just learned for myself just how easy GDI+ is to use so if you are targeting Windows exclusively you can use GDI+. If you want something more cross platform you may want to look into using Anti-Grain.
- Fri May 27, 2005 10:55 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxwidges2.6 on Debian SID
- Replies: 1
- Views: 751
- Fri May 27, 2005 12:47 am
- Forum: General Development
- Topic: List of installed Apllications of Windows
- Replies: 8
- Views: 2066
If you are going to write one, wxRegKey will probably be of use (and is a lot easier than using the Win32 registry access API).
- Fri May 13, 2005 7:43 am
- Forum: C++ Development
- Topic: Help, what's wrong with me or wxDateTime
- Replies: 5
- Views: 1144
Digging around, there is indeed a fix for it in datetime.inl but I don't see where datetime.inl is included. I do see all the inline functions defined in datetime.h (including the one missing the msec assignment). The only place datetime.inl is mentioned is in a couple of Makefile.in's and bakefiles...
- Tue May 10, 2005 9:49 am
- Forum: C++ Development
- Topic: wxDateTime
- Replies: 6
- Views: 1669
Ah, right you are. I was looking for "milli" when I looked over the Tm structure. I'm sure the developers would appreciate if you made a patch for this. It's kind of a weird oversight though.
- Tue May 10, 2005 6:41 am
- Forum: C++ Development
- Topic: How can I stream to a wxImage?
- Replies: 7
- Views: 1576
- Tue May 10, 2005 1:10 am
- Forum: C++ Development
- Topic: How can I stream to a wxImage?
- Replies: 7
- Views: 1576
- Mon May 09, 2005 8:17 pm
- Forum: C++ Development
- Topic: Screen Resoulution???
- Replies: 6
- Views: 1696
- Mon May 09, 2005 11:25 am
- Forum: C++ Development
- Topic: Where can I find parser for config file of Apache?
- Replies: 4
- Views: 1111
- Mon May 09, 2005 11:21 am
- Forum: C++ Development
- Topic: wxDateTime
- Replies: 6
- Views: 1669
The structure Tm doesn't support milliseconds. Which methods are you using that end up with a call to Set(const Tm& tm)? There are 6 Set functions and without looking at the implementation, I'd assume 5 of them all call the version that accepts everything from days to milliseconds (like the version ...
- Sun May 08, 2005 1:57 am
- Forum: Compiler / Linking / IDE Related
- Topic: [MS VS .NET] Compiling the lib - One single .lib or not?
- Replies: 7
- Views: 1834
Re: [MS VS .NET] Compiling the lib - One single .lib or not?
I must admit, I don't understand the whole architecture of wxWidgets. I mean, after I compile the libs, why aren't they in the lib folder (they are in the "lib/vc_lib/" folder)? How can I create one single lib - or more important, how can I get the samples work with those several small lib files? (...