Mac 101: Modify Your Windows


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Mac 101: Modify Your Windows
# 1  
Old 10-28-2008
Mac 101: Modify Your Windows

All Finder windows don't necessarily have to be created equally; you can have certain windows look different from others. For example, when you double-click your hard disk, you might want the Finder window to show you all the contents on your Mac in column view. But maybe you want another folder's Finder window to display its contents in icon view—and you want to hang a nice picture of your cat as the backdrop. There are plenty of things you can do to make your Finder windows more efficient or more entertaining—the choice is yours. Here are a few ways that you can modify a Finder window.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
UNTITLED
LOCAL UNTITLED NAME
glutPopWindow -- Request to raise the current window to the top LIBRARY
OpenGLUT - window SYNOPSIS
#include <openglut.h> void glutPopWindow(void); DESCRIPTION
Request that the current window be brought to the top. A window can be in front of or behind other windows, as determined by the z-order from front to back. Top-level OpenGLUT windows can be placed at the front or back of the z-order by means of the glutPopWindow() and glutPushWindow() API functions. A z-order also applies to the subwindows of a top-level window. While the z-order of top-level windows can usually be adjusted by the user, subwindow z-order is controlled entirely by the application. If this has any effect on your window's visibility, you should receive a glutWindowStatusFunc() callback and a glutDisplayFunc() callback. CAVEATS
The z-order of top-level windows is ultimately managed by the windowing system. Therefore, a push or pop request by an OpenGLUT application may not necessarily succeed or take immediate effect. Not applicable to offscreen windows. SEE ALSO
glutCreateWindow(3) glutDisplayFunc(3) glutPushWindow(3) glutWindowStatusFunc(3) Epoch