I have a test case working now, by overlaying a child window with the caption in it.
I did it this way to avoid messing with the CSplitterWnd..CView relationship and to avoid moving GL out of the...
Type: Posts; User: RobertCWebb
I have a test case working now, by overlaying a child window with the caption in it.
I did it this way to avoid messing with the CSplitterWnd..CView relationship and to avoid moving GL out of the...
Basically yes, although my captions also have an icon to the left, various buttons that come and go overlaid on the right, and respond to mouse clicks in a few ways.
I think you're thinking along...
I don't explicitly call OnSize() or manually send a message, but actually this simple demo program is quite different in structure from the main program which I'm trying to fix. In my program...
Yes MFC. The only place the viewport is set is in OnSize (has not changed from the standard sample program).
void CCubeView::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx,...
I posted this almost a month ago. Has no one come across this before? Any ideas about how to work around it?
In case you're wondering why I want a caption at the top of the view, it's because I...
Hi,
I wrote an OpenGL program which includes a caption at the top of each view. This is achieved by overriding OnNcPaint() and OnNcCalcSize() in the view. This works on my machine, but one user...
Hi,
I'm using a spherical texture mapping, but not sure of the best approach for vertices which lie along the axis of the sphere used for mapping. For such a point the U component of the texture...