Search found 78 matches
- Thu May 03, 2007 12:05 am
- Forum: C++ Development
- Topic: Disable Navigation Keys in a Notebookpage
- Replies: 1
- Views: 385
- Thu May 03, 2007 12:03 am
- Forum: C++ Development
- Topic: wxAui with mdi doc/view framework problem
- Replies: 6
- Views: 1612
- Sun Apr 29, 2007 3:22 am
- Forum: C++ Development
- Topic: Opengl drawing to a wxMemoryDC?
- Replies: 1
- Views: 504
Opengl drawing to a wxMemoryDC?
I need to render my view on a larger resolution so I can print it. glReadPixels() only reads the Frame Buffer, so I can't use it since I'd get my screen's resolution. I should be able to render it to a large wxMemoryDC, but I can't see how is that possible... Any ideas, please?
- Thu Nov 16, 2006 7:08 pm
- Forum: C++ Development
- Topic: How do i use wxDocument (the doc/view framework)?
- Replies: 4
- Views: 826
Yes, you have to do everything to customize your document to your needs. The wxDocument class has only the basics and some other needed functions to communicate with views/manager. Same thing with your views. They have to be customized to your needs. wxView has a method GetDocument() witch returns t...
- Thu Nov 16, 2006 4:59 am
- Forum: C++ Development
- Topic: How do i use wxDocument (the doc/view framework)?
- Replies: 4
- Views: 826
- Thu Nov 16, 2006 4:04 am
- Forum: Platform Related Issues
- Topic: DLL question for MSW
- Replies: 7
- Views: 1265
- Mon Nov 13, 2006 3:51 am
- Forum: Platform Related Issues
- Topic: DLL question for MSW
- Replies: 7
- Views: 1265
- Tue Nov 07, 2006 1:43 pm
- Forum: Platform Related Issues
- Topic: DLL question for MSW
- Replies: 7
- Views: 1265
- Tue Nov 07, 2006 1:39 pm
- Forum: Platform Related Issues
- Topic: OpenGL support for mac? in wxWidgets?
- Replies: 4
- Views: 929
translating what Ansible said, set in setup.h
Code: Select all
#define wxUSE_GLCANVAS 1
- Sat Nov 04, 2006 9:37 pm
- Forum: C++ Development
- Topic: wxScrolledWindow captures mouse scroll and never releases it
- Replies: 0
- Views: 416
wxScrolledWindow captures mouse scroll and never releases it
Hello, Im using MDI and wxAUI. There's a scrolledwindow in the top of my application handled by wxAUI, with buttons and etc. When I open a document, another window is created, a wxMDIChildWindow, with a drawing. I use my mouse scrolling to zoom in and out. Everything goes fine until I press any butt...
- Thu Oct 19, 2006 10:28 pm
- Forum: Announcements and Discoveries
- Topic: [VIDEO]: wxWidgets and VC++ 2005
- Replies: 4
- Views: 1377
- Tue Aug 15, 2006 6:09 pm
- Forum: C++ Development
- Topic: wxMenu interferes with wxGLCanvas
- Replies: 4
- Views: 740
- Wed Aug 09, 2006 11:32 am
- Forum: C++ Development
- Topic: wxGLCanvas and printing support
- Replies: 2
- Views: 855
- Tue Aug 08, 2006 3:22 am
- Forum: C++ Development
- Topic: wxGLCanvas and printing support
- Replies: 2
- Views: 855
wxGLCanvas and printing support
Hello! Is there a simple way to print what's drawn in my wxGLCanvas derived class?
- Mon Aug 07, 2006 5:43 am
- Forum: C++ Development
- Topic: XML Resources and Events
- Replies: 7
- Views: 1917
Re: XRC Event Handling
Hi All, I am a beginner of wxwidgets programming, I have implemented the way which connects some specific events to a series of functions, but according to what you have said, there is a formal way which ceates a subclass of wxDialog and assign a event table to it, my question is that how can I put...