Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199604.adf » Features » StarInfo/Fletcher/AllWCD/!Help
StarInfo/Fletcher/AllWCD/!Help
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199604.adf » Features |
Filename: | StarInfo/Fletcher/AllWCD/!Help |
Read OK: | ✔ |
File size: | 12E9 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
AllWriteClickDrag ================= Version 1.00 (22 Jun 1995) Introduction ------------ Well, what can I say. It works! I'm sorry, but after a few assembly bugs like specifying registers where offsets should have been used the first test run works! Now for me that is pretty amazing as it usually takes about 2 hours to debug code, but then again there isn't really much that could go wrong with it. Anyway, as I mentioned in TextCopy there is no real difference between type 15 (Write) and type 14 (Write/Click/Drag) icons, except that TextCopy can't handle drags from the former. I did suggest in the !Help file that I could get around this in the module by lots of time consuming �hack-arounds�, but this seemed a much simpler option. What it does is intercepts all Wimp_CreateIcon and Wimp_CreateWindow calls and changes every type 15 icon into a type 14. Easy� :-) The overall effect is not apparent to the user except that he can drag those icons, and any well written program should simply ignore button clicks it cannot handle and therefore be oblivious to the change. However, Impression is noted for being picky about what happens to it, so I'm just off to test it there, back in a mo� It would appear that whatever it uses as the point size icon it's not writable. In fact, in deference to the fact that it is a perfectly usable writable icon it is using type 10 (Click/drag/double-click). Why it should do this I'm not sure, but it could just be a stupid programmer or the ABI messing things up. The following icons work : Save � Scale � Edit style=>Name � after a manner Key short cut � Leadering � Decimal tab � Print=>From � To � Scale � Copies � Edit frame=> all bar insets � inset � (Why when the others don't ?) Text size box � Alter chapter=> any � Define new style=>Name � Preferences=>save every � Line space box � Find box=> all � Dictionary=> all � Iconbar preferences=>all � Colour picker=>RGB or HSV values � Most other point or percentage � That's most of impression sorted. Almost all other applications are produced by sane people and therefore use writable icons for what appear to be writable icons, so it should work. Stupid, stupid Computer Concepts. What's so wrong with FormEd that you have to use your silly ABI thingy so that we can't edit your templates to sensible states ? Usage ----- Run the !Run file. That's it. Hopefully, the code will be assembled with no errors and all that in future will be required is the running of the resultant code file. How it works ------------ Well I've pretty much explained that. It uses WimpSWIve (� Andrew Clover) to intercept CreateIcon and CreateWindow calls and replaces all type 15 icons with type 14. Bugs ---- Hmm. Well, you know that I wrote this to fix the bug about dragging icons ? Well, by having written it there would appear to be a bug which is created by the Wimp (not me) when you open windows off menus. It would appear that when they wrote the code to handle such events and to put the caret in the correct icon they omitted one thing - a check for type 14 icons. This means that if you open a window off a menu with AllWCD installed the menu will not get the input focus. Comprendez ? 'cos it gets better ! The *only* way to get around this is to patch the WindowManager directly (as it the actual module). This is more difficult, but can be done with a little practice. You will have to see the WinMgr patch to find out more about this patch. Disclaimer ---------- The author accepts no responsibility for any problems which this application may cause or loss of data resulting in its use. This application is Public Domain. This means that it may be distributed, so long as no charge other than copying costs are charged for it. Source code ----------- This program requires the !JFPatch pre-assembler to make the code. This is a simple text-to-basic assembler which takes a text assembler file, makes a basic program from it to assemble, assembles it and returns any errors. Currently, it is under development and requires a lot of work before it will be released in any form. As such, the patch file is mostly useless, but must be distributed with the resultant module. All source code an the resultant module must be distributed together. Contact ------- Any comments, queries, donations or bug reports can be sent to : Fidonet NetMail : Justin Fletcher at Arcade (0181 655 4412) [2:254/27] E-Mail : Gerph@arcade.demon.co.uk Snail Mail : Justin Fletcher �Galadriel� 17b Cromwell Road, Weeting, Brandon, Suffolk. IP27 0QT
00000000 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000010 20 20 20 20 20 20 20 20 20 20 20 20 20 20 41 6c | Al| 00000020 6c 57 72 69 74 65 43 6c 69 63 6b 44 72 61 67 0a |lWriteClickDrag.| 00000030 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000040 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3d 3d | ==| 00000050 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0a |===============.| 00000060 56 65 72 73 69 6f 6e 20 31 2e 30 30 20 28 32 32 |Version 1.00 (22| 00000070 20 4a 75 6e 20 31 39 39 35 29 0a 20 20 20 20 20 | Jun 1995). | 00000080 0a 49 6e 74 72 6f 64 75 63 74 69 6f 6e 0a 2d 2d |.Introduction.--| 00000090 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a 57 65 6c 6c 2c |----------.Well,| 000000a0 20 77 68 61 74 20 63 61 6e 20 49 20 73 61 79 2e | what can I say.| 000000b0 20 49 74 20 77 6f 72 6b 73 21 20 49 27 6d 20 73 | It works! I'm s| 000000c0 6f 72 72 79 2c 20 62 75 74 20 61 66 74 65 72 20 |orry, but after | 000000d0 61 20 66 65 77 20 61 73 73 65 6d 62 6c 79 20 62 |a few assembly b| 000000e0 75 67 73 20 6c 69 6b 65 0a 73 70 65 63 69 66 79 |ugs like.specify| 000000f0 69 6e 67 20 72 65 67 69 73 74 65 72 73 20 77 68 |ing registers wh| 00000100 65 72 65 20 6f 66 66 73 65 74 73 20 73 68 6f 75 |ere offsets shou| 00000110 6c 64 20 68 61 76 65 20 62 65 65 6e 20 75 73 65 |ld have been use| 00000120 64 20 74 68 65 20 66 69 72 73 74 20 74 65 73 74 |d the first test| 00000130 20 72 75 6e 0a 77 6f 72 6b 73 21 20 4e 6f 77 20 | run.works! Now | 00000140 66 6f 72 20 6d 65 20 74 68 61 74 20 69 73 20 70 |for me that is p| 00000150 72 65 74 74 79 20 61 6d 61 7a 69 6e 67 20 61 73 |retty amazing as| 00000160 20 69 74 20 75 73 75 61 6c 6c 79 20 74 61 6b 65 | it usually take| 00000170 73 20 61 62 6f 75 74 20 32 20 68 6f 75 72 73 20 |s about 2 hours | 00000180 74 6f 0a 64 65 62 75 67 20 63 6f 64 65 2c 20 62 |to.debug code, b| 00000190 75 74 20 74 68 65 6e 20 61 67 61 69 6e 20 74 68 |ut then again th| 000001a0 65 72 65 20 69 73 6e 27 74 20 72 65 61 6c 6c 79 |ere isn't really| 000001b0 20 6d 75 63 68 20 74 68 61 74 20 63 6f 75 6c 64 | much that could| 000001c0 20 67 6f 20 77 72 6f 6e 67 20 77 69 74 68 0a 69 | go wrong with.i| 000001d0 74 2e 0a 0a 41 6e 79 77 61 79 2c 20 61 73 20 49 |t...Anyway, as I| 000001e0 20 6d 65 6e 74 69 6f 6e 65 64 20 69 6e 20 54 65 | mentioned in Te| 000001f0 78 74 43 6f 70 79 20 74 68 65 72 65 20 69 73 20 |xtCopy there is | 00000200 6e 6f 20 72 65 61 6c 20 64 69 66 66 65 72 65 6e |no real differen| 00000210 63 65 20 62 65 74 77 65 65 6e 20 74 79 70 65 0a |ce between type.| 00000220 31 35 20 28 57 72 69 74 65 29 20 61 6e 64 20 74 |15 (Write) and t| 00000230 79 70 65 20 31 34 20 28 57 72 69 74 65 2f 43 6c |ype 14 (Write/Cl| 00000240 69 63 6b 2f 44 72 61 67 29 20 69 63 6f 6e 73 2c |ick/Drag) icons,| 00000250 20 65 78 63 65 70 74 20 74 68 61 74 20 54 65 78 | except that Tex| 00000260 74 43 6f 70 79 20 63 61 6e 27 74 0a 68 61 6e 64 |tCopy can't.hand| 00000270 6c 65 20 64 72 61 67 73 20 66 72 6f 6d 20 74 68 |le drags from th| 00000280 65 20 66 6f 72 6d 65 72 2e 20 49 20 64 69 64 20 |e former. I did | 00000290 73 75 67 67 65 73 74 20 69 6e 20 74 68 65 20 21 |suggest in the !| 000002a0 48 65 6c 70 20 66 69 6c 65 20 74 68 61 74 20 49 |Help file that I| 000002b0 20 63 6f 75 6c 64 0a 67 65 74 20 61 72 6f 75 6e | could.get aroun| 000002c0 64 20 74 68 69 73 20 69 6e 20 74 68 65 20 6d 6f |d this in the mo| 000002d0 64 75 6c 65 20 62 79 20 6c 6f 74 73 20 6f 66 20 |dule by lots of | 000002e0 74 69 6d 65 20 63 6f 6e 73 75 6d 69 6e 67 20 90 |time consuming .| 000002f0 68 61 63 6b 2d 61 72 6f 75 6e 64 73 91 2c 20 62 |hack-arounds., b| 00000300 75 74 0a 74 68 69 73 20 73 65 65 6d 65 64 20 61 |ut.this seemed a| 00000310 20 6d 75 63 68 20 73 69 6d 70 6c 65 72 20 6f 70 | much simpler op| 00000320 74 69 6f 6e 2e 0a 0a 57 68 61 74 20 69 74 20 64 |tion...What it d| 00000330 6f 65 73 20 69 73 20 69 6e 74 65 72 63 65 70 74 |oes is intercept| 00000340 73 20 61 6c 6c 20 57 69 6d 70 5f 43 72 65 61 74 |s all Wimp_Creat| 00000350 65 49 63 6f 6e 20 61 6e 64 20 57 69 6d 70 5f 43 |eIcon and Wimp_C| 00000360 72 65 61 74 65 57 69 6e 64 6f 77 20 63 61 6c 6c |reateWindow call| 00000370 73 0a 61 6e 64 20 63 68 61 6e 67 65 73 20 65 76 |s.and changes ev| 00000380 65 72 79 20 74 79 70 65 20 31 35 20 69 63 6f 6e |ery type 15 icon| 00000390 20 69 6e 74 6f 20 61 20 74 79 70 65 20 31 34 2e | into a type 14.| 000003a0 20 45 61 73 79 8c 20 3a 2d 29 0a 0a 54 68 65 20 | Easy. :-)..The | 000003b0 6f 76 65 72 61 6c 6c 20 65 66 66 65 63 74 20 69 |overall effect i| 000003c0 73 20 6e 6f 74 20 61 70 70 61 72 65 6e 74 20 74 |s not apparent t| 000003d0 6f 20 74 68 65 20 75 73 65 72 20 65 78 63 65 70 |o the user excep| 000003e0 74 20 74 68 61 74 20 68 65 20 63 61 6e 20 64 72 |t that he can dr| 000003f0 61 67 20 74 68 6f 73 65 0a 69 63 6f 6e 73 2c 20 |ag those.icons, | 00000400 61 6e 64 20 61 6e 79 20 77 65 6c 6c 20 77 72 69 |and any well wri| 00000410 74 74 65 6e 20 70 72 6f 67 72 61 6d 20 73 68 6f |tten program sho| 00000420 75 6c 64 20 73 69 6d 70 6c 79 20 69 67 6e 6f 72 |uld simply ignor| 00000430 65 20 62 75 74 74 6f 6e 20 63 6c 69 63 6b 73 20 |e button clicks | 00000440 69 74 0a 63 61 6e 6e 6f 74 20 68 61 6e 64 6c 65 |it.cannot handle| 00000450 20 61 6e 64 20 74 68 65 72 65 66 6f 72 65 20 62 | and therefore b| 00000460 65 20 6f 62 6c 69 76 69 6f 75 73 20 74 6f 20 74 |e oblivious to t| 00000470 68 65 20 63 68 61 6e 67 65 2e 20 48 6f 77 65 76 |he change. Howev| 00000480 65 72 2c 20 49 6d 70 72 65 73 73 69 6f 6e 0a 69 |er, Impression.i| 00000490 73 20 6e 6f 74 65 64 20 66 6f 72 20 62 65 69 6e |s noted for bein| 000004a0 67 20 70 69 63 6b 79 20 61 62 6f 75 74 20 77 68 |g picky about wh| 000004b0 61 74 20 68 61 70 70 65 6e 73 20 74 6f 20 69 74 |at happens to it| 000004c0 2c 20 73 6f 20 49 27 6d 20 6a 75 73 74 20 6f 66 |, so I'm just of| 000004d0 66 20 74 6f 20 74 65 73 74 20 69 74 0a 74 68 65 |f to test it.the| 000004e0 72 65 2c 20 62 61 63 6b 20 69 6e 20 61 20 6d 6f |re, back in a mo| 000004f0 8c 0a 0a 49 74 20 77 6f 75 6c 64 20 61 70 70 65 |...It would appe| 00000500 61 72 20 74 68 61 74 20 77 68 61 74 65 76 65 72 |ar that whatever| 00000510 20 69 74 20 75 73 65 73 20 61 73 20 74 68 65 20 | it uses as the | 00000520 70 6f 69 6e 74 20 73 69 7a 65 20 69 63 6f 6e 20 |point size icon | 00000530 69 74 27 73 20 6e 6f 74 0a 77 72 69 74 61 62 6c |it's not.writabl| 00000540 65 2e 20 49 6e 20 66 61 63 74 2c 20 69 6e 20 64 |e. In fact, in d| 00000550 65 66 65 72 65 6e 63 65 20 74 6f 20 74 68 65 20 |eference to the | 00000560 66 61 63 74 20 74 68 61 74 20 69 74 20 69 73 20 |fact that it is | 00000570 61 20 70 65 72 66 65 63 74 6c 79 20 75 73 61 62 |a perfectly usab| 00000580 6c 65 0a 77 72 69 74 61 62 6c 65 20 69 63 6f 6e |le.writable icon| 00000590 20 69 74 20 69 73 20 75 73 69 6e 67 20 74 79 70 | it is using typ| 000005a0 65 20 31 30 20 28 43 6c 69 63 6b 2f 64 72 61 67 |e 10 (Click/drag| 000005b0 2f 64 6f 75 62 6c 65 2d 63 6c 69 63 6b 29 2e 20 |/double-click). | 000005c0 57 68 79 20 69 74 20 73 68 6f 75 6c 64 20 64 6f |Why it should do| 000005d0 0a 74 68 69 73 20 49 27 6d 20 6e 6f 74 20 73 75 |.this I'm not su| 000005e0 72 65 2c 20 62 75 74 20 69 74 20 63 6f 75 6c 64 |re, but it could| 000005f0 20 6a 75 73 74 20 62 65 20 61 20 73 74 75 70 69 | just be a stupi| 00000600 64 20 70 72 6f 67 72 61 6d 6d 65 72 20 6f 72 20 |d programmer or | 00000610 74 68 65 20 41 42 49 0a 6d 65 73 73 69 6e 67 20 |the ABI.messing | 00000620 74 68 69 6e 67 73 20 75 70 2e 20 54 68 65 20 66 |things up. The f| 00000630 6f 6c 6c 6f 77 69 6e 67 20 69 63 6f 6e 73 20 77 |ollowing icons w| 00000640 6f 72 6b 20 3a 0a 20 53 61 76 65 20 20 20 20 20 |ork :. Save | 00000650 20 20 80 0a 20 53 63 61 6c 65 20 20 20 20 20 20 | .. Scale | 00000660 80 0a 20 45 64 69 74 20 73 74 79 6c 65 3d 3e 4e |.. Edit style=>N| 00000670 61 6d 65 20 20 20 20 20 20 20 20 20 20 80 20 61 |ame . a| 00000680 66 74 65 72 20 61 20 6d 61 6e 6e 65 72 0a 20 20 |fter a manner. | 00000690 20 20 20 20 20 20 20 20 20 20 20 4b 65 79 20 73 | Key s| 000006a0 68 6f 72 74 20 63 75 74 20 80 0a 20 20 20 20 20 |hort cut .. | 000006b0 20 20 20 20 20 20 20 20 4c 65 61 64 65 72 69 6e | Leaderin| 000006c0 67 20 20 20 20 20 84 20 0a 20 20 20 20 20 20 20 |g . . | 000006d0 20 20 20 20 20 20 44 65 63 69 6d 61 6c 20 74 61 | Decimal ta| 000006e0 62 20 20 20 84 0a 20 50 72 69 6e 74 3d 3e 46 72 |b .. Print=>Fr| 000006f0 6f 6d 20 20 20 84 0a 20 20 20 20 20 20 20 20 54 |om .. T| 00000700 6f 20 20 20 20 20 84 0a 20 20 20 20 20 20 20 20 |o .. | 00000710 53 63 61 6c 65 20 20 80 0a 20 20 20 20 20 20 20 |Scale .. | 00000720 20 43 6f 70 69 65 73 20 80 0a 20 45 64 69 74 20 | Copies .. Edit | 00000730 66 72 61 6d 65 3d 3e 20 61 6c 6c 20 62 61 72 20 |frame=> all bar | 00000740 69 6e 73 65 74 73 20 84 0a 20 20 20 20 20 20 20 |insets .. | 00000750 20 20 20 20 20 20 20 69 6e 73 65 74 20 20 20 20 | inset | 00000760 20 20 20 20 20 20 80 20 20 28 57 68 79 20 77 68 | . (Why wh| 00000770 65 6e 20 74 68 65 20 6f 74 68 65 72 73 20 64 6f |en the others do| 00000780 6e 27 74 20 3f 29 0a 20 54 65 78 74 20 73 69 7a |n't ?). Text siz| 00000790 65 20 62 6f 78 20 80 0a 20 41 6c 74 65 72 20 63 |e box .. Alter c| 000007a0 68 61 70 74 65 72 3d 3e 20 61 6e 79 20 20 20 20 |hapter=> any | 000007b0 20 80 0a 20 44 65 66 69 6e 65 20 6e 65 77 20 73 | .. Define new s| 000007c0 74 79 6c 65 3d 3e 4e 61 6d 65 20 20 80 0a 20 50 |tyle=>Name .. P| 000007d0 72 65 66 65 72 65 6e 63 65 73 3d 3e 73 61 76 65 |references=>save| 000007e0 20 65 76 65 72 79 20 80 0a 20 4c 69 6e 65 20 73 | every .. Line s| 000007f0 70 61 63 65 20 62 6f 78 20 20 20 20 80 0a 20 46 |pace box .. F| 00000800 69 6e 64 20 62 6f 78 3d 3e 20 61 6c 6c 20 20 20 |ind box=> all | 00000810 20 80 0a 20 44 69 63 74 69 6f 6e 61 72 79 3d 3e | .. Dictionary=>| 00000820 20 61 6c 6c 20 20 80 0a 20 49 63 6f 6e 62 61 72 | all .. Iconbar| 00000830 20 70 72 65 66 65 72 65 6e 63 65 73 3d 3e 61 6c | preferences=>al| 00000840 6c 20 80 0a 20 43 6f 6c 6f 75 72 20 70 69 63 6b |l .. Colour pick| 00000850 65 72 3d 3e 52 47 42 20 6f 72 20 48 53 56 20 76 |er=>RGB or HSV v| 00000860 61 6c 75 65 73 20 80 0a 20 4d 6f 73 74 20 6f 74 |alues .. Most ot| 00000870 68 65 72 20 70 6f 69 6e 74 20 6f 72 20 70 65 72 |her point or per| 00000880 63 65 6e 74 61 67 65 20 20 20 84 0a 20 0a 54 68 |centage .. .Th| 00000890 61 74 27 73 20 6d 6f 73 74 20 6f 66 20 69 6d 70 |at's most of imp| 000008a0 72 65 73 73 69 6f 6e 20 73 6f 72 74 65 64 2e 20 |ression sorted. | 000008b0 41 6c 6d 6f 73 74 20 61 6c 6c 20 6f 74 68 65 72 |Almost all other| 000008c0 20 61 70 70 6c 69 63 61 74 69 6f 6e 73 20 61 72 | applications ar| 000008d0 65 20 70 72 6f 64 75 63 65 64 0a 62 79 20 73 61 |e produced.by sa| 000008e0 6e 65 20 70 65 6f 70 6c 65 20 61 6e 64 20 74 68 |ne people and th| 000008f0 65 72 65 66 6f 72 65 20 75 73 65 20 77 72 69 74 |erefore use writ| 00000900 61 62 6c 65 20 69 63 6f 6e 73 20 66 6f 72 20 77 |able icons for w| 00000910 68 61 74 20 61 70 70 65 61 72 20 74 6f 20 62 65 |hat appear to be| 00000920 0a 77 72 69 74 61 62 6c 65 20 69 63 6f 6e 73 2c |.writable icons,| 00000930 20 73 6f 20 69 74 20 73 68 6f 75 6c 64 20 77 6f | so it should wo| 00000940 72 6b 2e 0a 0a 53 74 75 70 69 64 2c 20 73 74 75 |rk...Stupid, stu| 00000950 70 69 64 20 43 6f 6d 70 75 74 65 72 20 43 6f 6e |pid Computer Con| 00000960 63 65 70 74 73 2e 20 57 68 61 74 27 73 20 73 6f |cepts. What's so| 00000970 20 77 72 6f 6e 67 20 77 69 74 68 20 46 6f 72 6d | wrong with Form| 00000980 45 64 20 74 68 61 74 20 79 6f 75 20 68 61 76 65 |Ed that you have| 00000990 0a 74 6f 20 75 73 65 20 79 6f 75 72 20 73 69 6c |.to use your sil| 000009a0 6c 79 20 41 42 49 20 74 68 69 6e 67 79 20 73 6f |ly ABI thingy so| 000009b0 20 74 68 61 74 20 77 65 20 63 61 6e 27 74 20 65 | that we can't e| 000009c0 64 69 74 20 79 6f 75 72 20 74 65 6d 70 6c 61 74 |dit your templat| 000009d0 65 73 20 74 6f 20 73 65 6e 73 69 62 6c 65 0a 73 |es to sensible.s| 000009e0 74 61 74 65 73 20 3f 0a 0a 0a 55 73 61 67 65 0a |tates ?...Usage.| 000009f0 2d 2d 2d 2d 2d 0a 20 20 20 52 75 6e 20 74 68 65 |-----. Run the| 00000a00 20 21 52 75 6e 20 66 69 6c 65 2e 20 54 68 61 74 | !Run file. That| 00000a10 27 73 20 69 74 2e 0a 20 20 20 48 6f 70 65 66 75 |'s it.. Hopefu| 00000a20 6c 6c 79 2c 20 74 68 65 20 63 6f 64 65 20 77 69 |lly, the code wi| 00000a30 6c 6c 20 62 65 20 61 73 73 65 6d 62 6c 65 64 20 |ll be assembled | 00000a40 77 69 74 68 20 6e 6f 20 65 72 72 6f 72 73 20 61 |with no errors a| 00000a50 6e 64 20 61 6c 6c 20 74 68 61 74 20 69 6e 0a 66 |nd all that in.f| 00000a60 75 74 75 72 65 20 77 69 6c 6c 20 62 65 20 72 65 |uture will be re| 00000a70 71 75 69 72 65 64 20 69 73 20 74 68 65 20 72 75 |quired is the ru| 00000a80 6e 6e 69 6e 67 20 6f 66 20 74 68 65 20 72 65 73 |nning of the res| 00000a90 75 6c 74 61 6e 74 20 63 6f 64 65 20 66 69 6c 65 |ultant code file| 00000aa0 2e 0a 0a 20 20 20 20 0a 48 6f 77 20 69 74 20 77 |... .How it w| 00000ab0 6f 72 6b 73 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |orks.-----------| 00000ac0 2d 0a 57 65 6c 6c 20 49 27 76 65 20 70 72 65 74 |-.Well I've pret| 00000ad0 74 79 20 6d 75 63 68 20 65 78 70 6c 61 69 6e 65 |ty much explaine| 00000ae0 64 20 74 68 61 74 2e 20 49 74 20 75 73 65 73 20 |d that. It uses | 00000af0 57 69 6d 70 53 57 49 76 65 20 28 a9 20 41 6e 64 |WimpSWIve (. And| 00000b00 72 65 77 20 43 6c 6f 76 65 72 29 20 74 6f 0a 69 |rew Clover) to.i| 00000b10 6e 74 65 72 63 65 70 74 20 43 72 65 61 74 65 49 |ntercept CreateI| 00000b20 63 6f 6e 20 61 6e 64 20 43 72 65 61 74 65 57 69 |con and CreateWi| 00000b30 6e 64 6f 77 20 63 61 6c 6c 73 20 61 6e 64 20 72 |ndow calls and r| 00000b40 65 70 6c 61 63 65 73 20 61 6c 6c 20 74 79 70 65 |eplaces all type| 00000b50 20 31 35 20 69 63 6f 6e 73 0a 77 69 74 68 20 74 | 15 icons.with t| 00000b60 79 70 65 20 31 34 2e 0a 0a 0a 42 75 67 73 0a 2d |ype 14....Bugs.-| 00000b70 2d 2d 2d 0a 20 20 20 48 6d 6d 2e 20 57 65 6c 6c |---. Hmm. Well| 00000b80 2c 20 79 6f 75 20 6b 6e 6f 77 20 74 68 61 74 20 |, you know that | 00000b90 49 20 77 72 6f 74 65 20 74 68 69 73 20 74 6f 20 |I wrote this to | 00000ba0 66 69 78 20 74 68 65 20 62 75 67 20 61 62 6f 75 |fix the bug abou| 00000bb0 74 20 64 72 61 67 67 69 6e 67 0a 69 63 6f 6e 73 |t dragging.icons| 00000bc0 20 3f 20 57 65 6c 6c 2c 20 62 79 20 68 61 76 69 | ? Well, by havi| 00000bd0 6e 67 20 77 72 69 74 74 65 6e 20 69 74 20 74 68 |ng written it th| 00000be0 65 72 65 20 77 6f 75 6c 64 20 61 70 70 65 61 72 |ere would appear| 00000bf0 20 74 6f 20 62 65 20 61 20 62 75 67 20 77 68 69 | to be a bug whi| 00000c00 63 68 20 69 73 0a 63 72 65 61 74 65 64 20 62 79 |ch is.created by| 00000c10 20 74 68 65 20 57 69 6d 70 20 28 6e 6f 74 20 6d | the Wimp (not m| 00000c20 65 29 20 77 68 65 6e 20 79 6f 75 20 6f 70 65 6e |e) when you open| 00000c30 20 77 69 6e 64 6f 77 73 20 6f 66 66 20 6d 65 6e | windows off men| 00000c40 75 73 2e 20 49 74 20 77 6f 75 6c 64 20 61 70 70 |us. It would app| 00000c50 65 61 72 0a 74 68 61 74 20 77 68 65 6e 20 74 68 |ear.that when th| 00000c60 65 79 20 77 72 6f 74 65 20 74 68 65 20 63 6f 64 |ey wrote the cod| 00000c70 65 20 74 6f 20 68 61 6e 64 6c 65 20 73 75 63 68 |e to handle such| 00000c80 20 65 76 65 6e 74 73 20 61 6e 64 20 74 6f 20 70 | events and to p| 00000c90 75 74 20 74 68 65 20 63 61 72 65 74 20 69 6e 0a |ut the caret in.| 00000ca0 74 68 65 20 63 6f 72 72 65 63 74 20 69 63 6f 6e |the correct icon| 00000cb0 20 74 68 65 79 20 6f 6d 69 74 74 65 64 20 6f 6e | they omitted on| 00000cc0 65 20 74 68 69 6e 67 20 2d 20 61 20 63 68 65 63 |e thing - a chec| 00000cd0 6b 20 66 6f 72 20 74 79 70 65 20 31 34 20 69 63 |k for type 14 ic| 00000ce0 6f 6e 73 2e 20 54 68 69 73 0a 6d 65 61 6e 73 20 |ons. This.means | 00000cf0 74 68 61 74 20 69 66 20 79 6f 75 20 6f 70 65 6e |that if you open| 00000d00 20 61 20 77 69 6e 64 6f 77 20 6f 66 66 20 61 20 | a window off a | 00000d10 6d 65 6e 75 20 77 69 74 68 20 41 6c 6c 57 43 44 |menu with AllWCD| 00000d20 20 69 6e 73 74 61 6c 6c 65 64 20 74 68 65 20 6d | installed the m| 00000d30 65 6e 75 0a 77 69 6c 6c 20 6e 6f 74 20 67 65 74 |enu.will not get| 00000d40 20 74 68 65 20 69 6e 70 75 74 20 66 6f 63 75 73 | the input focus| 00000d50 2e 0a 20 20 20 43 6f 6d 70 72 65 6e 64 65 7a 20 |.. Comprendez | 00000d60 3f 20 27 63 6f 73 20 69 74 20 67 65 74 73 20 62 |? 'cos it gets b| 00000d70 65 74 74 65 72 20 21 0a 20 20 20 54 68 65 20 2a |etter !. The *| 00000d80 6f 6e 6c 79 2a 20 77 61 79 20 74 6f 20 67 65 74 |only* way to get| 00000d90 20 61 72 6f 75 6e 64 20 74 68 69 73 20 69 73 20 | around this is | 00000da0 74 6f 20 70 61 74 63 68 20 74 68 65 20 57 69 6e |to patch the Win| 00000db0 64 6f 77 4d 61 6e 61 67 65 72 20 64 69 72 65 63 |dowManager direc| 00000dc0 74 6c 79 0a 28 61 73 20 69 74 20 74 68 65 20 61 |tly.(as it the a| 00000dd0 63 74 75 61 6c 20 6d 6f 64 75 6c 65 29 2e 20 54 |ctual module). T| 00000de0 68 69 73 20 69 73 20 6d 6f 72 65 20 64 69 66 66 |his is more diff| 00000df0 69 63 75 6c 74 2c 20 62 75 74 20 63 61 6e 20 62 |icult, but can b| 00000e00 65 20 64 6f 6e 65 20 77 69 74 68 20 61 0a 6c 69 |e done with a.li| 00000e10 74 74 6c 65 20 70 72 61 63 74 69 63 65 2e 20 59 |ttle practice. Y| 00000e20 6f 75 20 77 69 6c 6c 20 68 61 76 65 20 74 6f 20 |ou will have to | 00000e30 73 65 65 20 74 68 65 20 57 69 6e 4d 67 72 20 70 |see the WinMgr p| 00000e40 61 74 63 68 20 74 6f 20 66 69 6e 64 20 6f 75 74 |atch to find out| 00000e50 20 6d 6f 72 65 20 61 62 6f 75 74 0a 74 68 69 73 | more about.this| 00000e60 20 70 61 74 63 68 2e 0a 0a 0a 44 69 73 63 6c 61 | patch....Discla| 00000e70 69 6d 65 72 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a |imer.----------.| 00000e80 20 20 54 68 65 20 61 75 74 68 6f 72 20 61 63 63 | The author acc| 00000e90 65 70 74 73 20 6e 6f 20 72 65 73 70 6f 6e 73 69 |epts no responsi| 00000ea0 62 69 6c 69 74 79 20 66 6f 72 20 61 6e 79 20 70 |bility for any p| 00000eb0 72 6f 62 6c 65 6d 73 20 77 68 69 63 68 20 74 68 |roblems which th| 00000ec0 69 73 0a 61 70 70 6c 69 63 61 74 69 6f 6e 20 6d |is.application m| 00000ed0 61 79 20 63 61 75 73 65 20 6f 72 20 6c 6f 73 73 |ay cause or loss| 00000ee0 20 6f 66 20 64 61 74 61 20 72 65 73 75 6c 74 69 | of data resulti| 00000ef0 6e 67 20 69 6e 20 69 74 73 20 75 73 65 2e 20 54 |ng in its use. T| 00000f00 68 69 73 20 61 70 70 6c 69 63 61 74 69 6f 6e 0a |his application.| 00000f10 69 73 20 50 75 62 6c 69 63 20 44 6f 6d 61 69 6e |is Public Domain| 00000f20 2e 20 54 68 69 73 20 6d 65 61 6e 73 20 74 68 61 |. This means tha| 00000f30 74 20 69 74 20 6d 61 79 20 62 65 20 64 69 73 74 |t it may be dist| 00000f40 72 69 62 75 74 65 64 2c 20 73 6f 20 6c 6f 6e 67 |ributed, so long| 00000f50 20 61 73 20 6e 6f 20 63 68 61 72 67 65 0a 6f 74 | as no charge.ot| 00000f60 68 65 72 20 74 68 61 6e 20 63 6f 70 79 69 6e 67 |her than copying| 00000f70 20 63 6f 73 74 73 20 61 72 65 20 63 68 61 72 67 | costs are charg| 00000f80 65 64 20 66 6f 72 20 69 74 2e 0a 20 20 0a 0a 53 |ed for it.. ..S| 00000f90 6f 75 72 63 65 20 63 6f 64 65 0a 2d 2d 2d 2d 2d |ource code.-----| 00000fa0 2d 2d 2d 2d 2d 2d 0a 20 20 20 54 68 69 73 20 70 |------. This p| 00000fb0 72 6f 67 72 61 6d 20 72 65 71 75 69 72 65 73 20 |rogram requires | 00000fc0 74 68 65 20 21 4a 46 50 61 74 63 68 20 70 72 65 |the !JFPatch pre| 00000fd0 2d 61 73 73 65 6d 62 6c 65 72 20 74 6f 20 6d 61 |-assembler to ma| 00000fe0 6b 65 20 74 68 65 20 63 6f 64 65 2e 20 54 68 69 |ke the code. Thi| 00000ff0 73 20 69 73 0a 61 20 73 69 6d 70 6c 65 20 74 65 |s is.a simple te| 00001000 78 74 2d 74 6f 2d 62 61 73 69 63 20 61 73 73 65 |xt-to-basic asse| 00001010 6d 62 6c 65 72 20 77 68 69 63 68 20 74 61 6b 65 |mbler which take| 00001020 73 20 61 20 74 65 78 74 20 61 73 73 65 6d 62 6c |s a text assembl| 00001030 65 72 20 66 69 6c 65 2c 20 6d 61 6b 65 73 20 61 |er file, makes a| 00001040 0a 62 61 73 69 63 20 70 72 6f 67 72 61 6d 20 66 |.basic program f| 00001050 72 6f 6d 20 69 74 20 74 6f 20 61 73 73 65 6d 62 |rom it to assemb| 00001060 6c 65 2c 20 61 73 73 65 6d 62 6c 65 73 20 69 74 |le, assembles it| 00001070 20 61 6e 64 20 72 65 74 75 72 6e 73 20 61 6e 79 | and returns any| 00001080 20 65 72 72 6f 72 73 2e 0a 43 75 72 72 65 6e 74 | errors..Current| 00001090 6c 79 2c 20 69 74 20 69 73 20 75 6e 64 65 72 20 |ly, it is under | 000010a0 64 65 76 65 6c 6f 70 6d 65 6e 74 20 61 6e 64 20 |development and | 000010b0 72 65 71 75 69 72 65 73 20 61 20 6c 6f 74 20 6f |requires a lot o| 000010c0 66 20 77 6f 72 6b 20 62 65 66 6f 72 65 20 69 74 |f work before it| 000010d0 20 77 69 6c 6c 0a 62 65 20 72 65 6c 65 61 73 65 | will.be release| 000010e0 64 20 69 6e 20 61 6e 79 20 66 6f 72 6d 2e 20 41 |d in any form. A| 000010f0 73 20 73 75 63 68 2c 20 74 68 65 20 70 61 74 63 |s such, the patc| 00001100 68 20 66 69 6c 65 20 69 73 20 6d 6f 73 74 6c 79 |h file is mostly| 00001110 20 75 73 65 6c 65 73 73 2c 20 62 75 74 20 6d 75 | useless, but mu| 00001120 73 74 0a 62 65 20 64 69 73 74 72 69 62 75 74 65 |st.be distribute| 00001130 64 20 77 69 74 68 20 74 68 65 20 72 65 73 75 6c |d with the resul| 00001140 74 61 6e 74 20 6d 6f 64 75 6c 65 2e 0a 20 20 20 |tant module.. | 00001150 41 6c 6c 20 73 6f 75 72 63 65 20 63 6f 64 65 20 |All source code | 00001160 61 6e 20 74 68 65 20 72 65 73 75 6c 74 61 6e 74 |an the resultant| 00001170 20 6d 6f 64 75 6c 65 20 6d 75 73 74 20 62 65 20 | module must be | 00001180 64 69 73 74 72 69 62 75 74 65 64 20 74 6f 67 65 |distributed toge| 00001190 74 68 65 72 2e 0a 0a 20 20 20 20 20 20 20 20 0a |ther... .| 000011a0 43 6f 6e 74 61 63 74 20 20 20 20 20 20 20 20 20 |Contact | 000011b0 20 20 20 20 20 20 20 0a 2d 2d 2d 2d 2d 2d 2d 0a | .-------.| 000011c0 41 6e 79 20 63 6f 6d 6d 65 6e 74 73 2c 20 71 75 |Any comments, qu| 000011d0 65 72 69 65 73 2c 20 64 6f 6e 61 74 69 6f 6e 73 |eries, donations| 000011e0 20 6f 72 20 62 75 67 20 72 65 70 6f 72 74 73 20 | or bug reports | 000011f0 63 61 6e 20 62 65 20 73 65 6e 74 20 74 6f 20 3a |can be sent to :| 00001200 0a 0a 46 69 64 6f 6e 65 74 20 4e 65 74 4d 61 69 |..Fidonet NetMai| 00001210 6c 20 3a 20 20 4a 75 73 74 69 6e 20 46 6c 65 74 |l : Justin Flet| 00001220 63 68 65 72 20 61 74 20 41 72 63 61 64 65 20 28 |cher at Arcade (| 00001230 30 31 38 31 20 36 35 35 20 34 34 31 32 29 20 5b |0181 655 4412) [| 00001240 32 3a 32 35 34 2f 32 37 5d 0a 45 2d 4d 61 69 6c |2:254/27].E-Mail| 00001250 20 3a 20 47 65 72 70 68 40 61 72 63 61 64 65 2e | : Gerph@arcade.| 00001260 64 65 6d 6f 6e 2e 63 6f 2e 75 6b 0a 0a 53 6e 61 |demon.co.uk..Sna| 00001270 69 6c 20 4d 61 69 6c 20 3a 0a 20 20 20 20 4a 75 |il Mail :. Ju| 00001280 73 74 69 6e 20 46 6c 65 74 63 68 65 72 0a 20 20 |stin Fletcher. | 00001290 20 20 94 47 61 6c 61 64 72 69 65 6c 95 0a 20 20 | .Galadriel.. | 000012a0 20 20 31 37 62 20 43 72 6f 6d 77 65 6c 6c 20 52 | 17b Cromwell R| 000012b0 6f 61 64 2c 0a 20 20 20 20 57 65 65 74 69 6e 67 |oad,. Weeting| 000012c0 2c 0a 20 20 20 20 42 72 61 6e 64 6f 6e 2c 0a 20 |,. Brandon,. | 000012d0 20 20 20 53 75 66 66 6f 6c 6b 2e 0a 20 20 20 20 | Suffolk.. | 000012e0 49 50 32 37 20 30 51 54 0a |IP27 0QT.| 000012e9