home *** CD-ROM | disk | FTP | other *** search
-
-
-
- Almost A Virtual Desktop
- by
- Jimmy Westerlund
-
- V1.1 1994-10-09
-
-
- For V37+ only
-
-
- DISCLAIMER
-
- aavd is freeware. This means that you may do anything you
- like with it as long as you don't try to make money on it.
-
- Description
-
- Have you ever used the olvwm window manager for x-windows.
- Then you've noticed the Virtual Desktop window, and know
- what it is used for. If you don't, just run this program
- and you will soon find out what it does.
-
- aavd will open a window that shows a miniature of the
- default public screen (usually the Workbench) where each "box"
- represents a window. From the aavd window you will be able to:
- o move a window
- o resize a window
- o activate a window
- o depth arrange a window
- o and some more...
-
- I have tried to use the common mouse techines in aavd, this
- means that if you want to activate a window, click on the left
- mouse button, to drag, just drag as you use to do. You can even
- cancel the operation with the right button. See below for a list
- of what you can do, and how to do it.
-
-
-
- o How to activate a window:
- Click the left button.
-
- o How to move a window:
- Press the left button, move the window to it's new position
- and release the button. This opration is canceld if the
- right button is pressed before the left is released.
-
- o How to depth arrange a window:
- Click on the right button.
- The window will be move to the front, unless it's already at
- the front, in which case it will be moved to the back. This is
- not as smooth as clicking on the depth gadget on
- the window, since I've not figured out how to determine if a
- window is covered by another window.
-
- o How to resize a window:
- Press the right button, move the mouse and release the
- button when you're done. The left button can be used to
- cancel this operation.
-
-
- That's about it. Not very hard to learn...
-
-
-
- And here's the template...
-
- > aavd ?
- PS=PUBSCREEN/K,X=XPOS/K/N,Y=YPOS/K/N,W=WIDTH/K/N,H=HEIGHT/K/N,
- NOFANCY/S,NOSCREENDRAW/S,NOBACKDROP/S,NOAAVDWIN/S,SECS/K/N,
- MICS/K/N,NOSCREENBOX/S,SCREENBOXINFRONT/S,SAFE/S,LOCKPOS/S,
- LOCKSIZE/S,FOLLOW/S:
-
-
- PUBSCREEN Name of the pubscreen to open Aavd on, default
- is the default public screen (usually Workbench).
- When this template is used, then Aavd will never
- leave this screen. Otherwise Aavd will change
- screen when you do.
- XPOS X position top open the Aavd window on. -1 means
- the first visible xpos.
- YPOS Y position. -1 means the first visible ypos.
- WIDTH The width of the Aavd window.
- HEIGHT The height.
- NOFANCY The "windows" are not drawn with a (fancy) 3d
- look.
- NOSCREENDRAW When you drag or resize a window, then no box
- will appear around the real window, but only
- in the Aavd window.
- NOBACKDROP Ignore all backdrop window. Usually the
- Workbench window is backdrop.
- NOAAVDWIN Ignore the Aavd window in the Aavd Window.
- SECS
- MICS
- NOSCREENBOX Don't draw the box that tells you where the
- visible part of the screen is.
- SCREENBOXINFRONT Draw the screenbox in front of the window
- boxes, instead of below.
- SAFE This means that you cannot move a window who
- got no dragbar or resize a window without a
- sizegadget, or deapth arrange a window without
- a depth gadget. Unfortnelly, this doesn't work
- yet.
- LOCKPOS This locks the position of the Aavd window.
- With other words, you can't move it.
- LOCKSIZE This prevents you from resizeing the Aavd window.
- FOLLOW This tells the Aavd window to follow the
- visible screen when you scroll it.
-
-
-
-
- Some technical info.
-
- aavd patches some of the rom routines to find out when a window
- is moved, resized, depth arranenged, opened, closed and so on.
- The patch is very simple, first it calls the original routine,
- and when that returnes the patch will signal the aavd task and
- then the aavd window will be updated.
-
- Here's a list of the routines that will be patched:
-
- from intuition.library:
-
- OpenWindow()
- OpenWindowTagList()
- CloseWindow()
-
- from layers.library
-
- MoveSizeLayer()
- BehindLayer()
- UpfrontLayer()
-
- Because of these patches, it may be possible that aavd doesn't
- works to well with other programs that patches these routines.
-
- You can only run one Aavd at a time. This because of the
- patches. If you for example should start two Aavd's at the same
- time (A and B), then Aavd A will get pointers to the original
- routines, and Aavd B will get the pointers to Aavd A's routines.
- It will problaby work without problem so far. The problem is that
- if you should quit Aavd A before Aavd B the following will happen:
-
- when Aavd A quits, it will restore the original routine
- pointers. This means that Aavd B will no longer receive
- signals when windows are moved, opend, resized and so on.
-
- and when you then quits Aavd B, it will restore the pointers
- to how it looked when it was started (to Aavd A's routines).
- Aavd A's routines will now be deallocated by the system, and
- the next time the system calls one of these patched routines
- you will get a GURU!!!
-
-
- These are the actions that are checked every 125000 microsecond.
-
- o If the user has activated another screen, then if that
- screen is either public or the workbench we will
- move the Aavd's window to that screen. This will not
- happend if you used the PUBSCREEN template.
-
- o If the screen has been scrolled, the we will redraw the
- aavd window. If the FOLLOW template is used, then we also
- will move the Aacd window.
-
- o If the user has activated another window, then redraw the
- Aavd window.
-
- I have not been able to find out a better way to check these
- actions.
-
- Some bugs.
-
- The resize ruotine will be rewritten so that resizing will go
- smoother.
-
- The SAFE template doesn't work yet.
-
- Examples
-
- o The simplest way to start Aavd...
-
- > Aavd
-
- o To open Aavd on a specific position with a specific size...
-
- > Aavd XPOS = 50 YPOS = 30 WIDTH = 150 HEIGHT = 75
-
- Open Aavd on position (50,30) width the width 150 and
- the height 75.
-
- o To open Aavd on the first Directory Open screen...
-
- > Aavd PUBSCREEN = DOPUS.1
-
- DOPUS.1 is the name of the first DirOpus screen.
-
- o To open Aavd in the topleft corner of the visible part of
- the screen, making it imposiible to move it around and
- make it follow the screen when it is scrolled...
-
- > Aavd XPOS = -1 YPOS = -1 LOCKPOS FOLLOW
-
-
-
- My address
-
- I, who wrote this, can be reached at the following address:
-
- Jimmy Westerlund
- Ringvägen 15
- 890 42 Mellansel
- SWEDEN
-
- INTERNET: ing9435@to.mh.se
-
- Here you can send bugreports, tips, hints, suggestions, and so
- on...
-
-
-
- Future
-
- Well, I don't really know.
- First I guess I'll try to remove the bugs I know, clean up
- the source, rewrite this doc and so on.
-
-
- History
-
- V1.1 1994-10-09
-
- Fixed small bug when using the NOFANCY option. The color of
- the active window is now white, and not, as before, grey.
-
- Slightly modified the patch routines. Now Aavd will never
- redraw the window if an action fails, for example, someone
- tried to open a window, but failed for some reson.
-
-
- V1.0 1994-06-26
-
- First version released.