Search found 35 matches
- Mon Jun 13, 2005 4:35 pm
- Forum: General Development
- Topic: WxWidgets in the workplace
- Replies: 2
- Views: 874
WxWidgets in the workplace
Is it hard to find a job where you work with WxWindgets vs. Microsoft Forms? Or are most companies willing to pick up someone that doesn
- Tue May 31, 2005 6:51 pm
- Forum: C++ Development
- Topic: "#pragma once" for header files under GCC
- Replies: 3
- Views: 1061
"#pragma once" for header files under GCC
I was looking at some MS generated source code (stdafx.h) and noticed that this file used "#pragma once" insted of "#ifndef _Deinfe_ #define _Define_ #endif" - pragma once is less work than the standard if not defined.. and id does the same job. So can I use pragma once on a GNU compioler or is that...
- Sun May 29, 2005 10:33 pm
- Forum: C++ Development
- Topic: Namespace...
- Replies: 1
- Views: 618
Namespace...
Should I be using one level of nesting, or multiple levels of nexting in my programming?
Single:
int myLib::function();
myLib::Class myClass;
Multiple:
int myLib::sys::function();
myLib::sys::Frame myFrame;
Single:
int myLib::function();
myLib::Class myClass;
Multiple:
int myLib::sys::function();
myLib::sys::Frame myFrame;
- Mon May 23, 2005 9:23 pm
- Forum: C++ Development
- Topic: C++ Templates
- Replies: 12
- Views: 2527
C++ Templates
I was just wondering what you guys thought about templates and if you find them useful or not. They are powerful but I
- Sat May 07, 2005 4:39 pm
- Forum: C++ Development
- Topic: Passing a pointer w/o an instance.
- Replies: 6
- Views: 1528
- Thu May 05, 2005 2:08 am
- Forum: C++ Development
- Topic: Passing a pointer w/o an instance.
- Replies: 6
- Views: 1528
- Tue May 03, 2005 8:02 pm
- Forum: C++ Development
- Topic: Passing a pointer w/o an instance.
- Replies: 6
- Views: 1528
- Mon May 02, 2005 11:23 pm
- Forum: C++ Development
- Topic: Passing a pointer w/o an instance.
- Replies: 6
- Views: 1528
- Mon May 02, 2005 8:03 pm
- Forum: General Development
- Topic: How does wxWindows work?
- Replies: 4
- Views: 1355
Thanks for the help, this is just an on the side thing I'm doing for fun. I wanted to make an OpenGL application widgets tool kit as part of an OpenGL game engine (if I ever finish it). With a universal tool kit like this I could integrate buttons into control panels or screens in a virtual world or...
- Sun May 01, 2005 11:45 pm
- Forum: General Development
- Topic: How does wxWindows work?
- Replies: 4
- Views: 1355
How does wxWindows work?
This is kind of a basic question but how does wxWidgets work? Does it wrap its self around the platform UI system, or does it do it on a low level with accessing 2D Draw routines? Seams kind of redundant but I wanted to make a 2D window manager API for fun/educational experience so I was wondering h...
- Mon Apr 11, 2005 12:26 am
- Forum: Compiler / Linking / IDE Related
- Topic: Building 2.5.5 under MSVC++ 7.1 problems...
- Replies: 4
- Views: 1403
- Sun Apr 10, 2005 10:54 pm
- Forum: Compiler / Linking / IDE Related
- Topic: Building 2.5.5 under MSVC++ 7.1 problems...
- Replies: 4
- Views: 1403
- Sun Apr 10, 2005 10:08 pm
- Forum: Compiler / Linking / IDE Related
- Topic: Building 2.5.5 under MSVC++ 7.1 problems...
- Replies: 4
- Views: 1403
Building 2.5.5 under MSVC++ 7.1 problems...
I downloaded and installed 2.5.5 under c:\dev\wx\ I loaded up C:\dev\wx\src\wxWindows.dsw and built the release/debug packages. After building the release/debug packages I noticed the samples are not bulding. The samples are including "lib\vc_lib\msw" and not "lib\msw". I copyed the contencts of lib...
- Fri Apr 08, 2005 11:26 pm
- Forum: Compiler / Linking / IDE Related
- Topic: OS X Dll's on a PC
- Replies: 1
- Views: 898
OS X Dll's on a PC
Is it possible to setup a FreeBSD/Linux computer to compile binaries or DLL's for a mac running OSX? I wanted to compile updates for a mac but not really develop on a mac, kind of a weird request but its because PC's are cheaper and more powerful when it comes to stuff like this. I have an old power...
- Fri Apr 08, 2005 4:46 pm
- Forum: C++ Development
- Topic: Png to wxBitmap utility
- Replies: 2
- Views: 1001
I'll post a link with source and an exe when I'm done, I should have an alpha running this afternoon, then later today or by Monday have it use the rest of the options in the dialog. Right now I'm only using the process button and list box. As it stands right now the source files that are generated ...