Add routines for manipulating protected mode interrupt handlers to
[wine] / dlls / user / resources / TODO
1 The dimensions of the controls should be changed so that they will be big 
2 enough to contain the text for every individual language.
3
4 Therefore:
5
6 - Dimensions of controls are based on user32_En.rc.  Other languages should
7   change these dimensions in order to make the text fit.
8
9 I (krynos@qbc.clic.net) will try to make user32_Fr.rc fit correctly, if 
10 someone is interrested in others languages, message me. I may correct 
11 others languages after, but not soon.
12
13 Here are structure of each line (for example):
14 PUSHBUTTON "&Help", 1038, 174, 75, 50, 14, WS_GROUP | WS_TABSTOP
15 1038: The ID of this button, you shouldn't change this.
16 174 : X-offset of the button with respect to the upper-left corner of
17       the dialog box.
18 75  : Y-offset
19 50  : The width of the button
20 14  : The height
21 flags (WS_??? etc): They control how the dialog behaves.  Things like:
22                     changing the focus with a TAB, scrolling to a list
23                     of radiobuttons with up/down keys, etc.  If you're
24                     not sure: leave them as they are (in the english
25                     version).
26  
27
28 Frans van Dorsselaer
29 dorssel@rulhm1.LeidenUniv.nl
30 **************************************************************
31 1997, January
32
33 Subject: EDITMENU
34
35 There now is a resource EDITMENU.  It is the menu that is displayed when you
36 click the right mouse button within an edit control.  I included an English
37 version in all user32_??.rc files, which needs translation in your language.
38 This has now been done for:
39
40 * English
41 * Danish
42 * Dutch
43 .....
44
45 Note: I picked the IDs of the menuitems "at random".  When someone wants to
46 find out the "real" (win95) values, feel free to change them.  However, you
47 should change _all_ user32_??.rc files and subsequently the function
48 EDIT_WM_Command() in controls/edit.c.  This is a matter of minutes (i.e. no
49 programming skills required).
50
51 Bye,
52
53 Frans van Dorsselaer
54 dorssel@rulhm1.LeidenUniv.nl
55 **************************************************************
56 1998, October
57
58 Subject: Put Mark in DebugLog
59
60 I added an item to SYSMENU to put a mark in the Debuglog by request of the 
61 User. I picked 61762 as the next ID after SC_ABOUTWINE. This item needs
62 translations to all supported languages. At present it is only done for
63
64 * English
65 * German
66 * Dutch
67
68 After you implemented it for your language, please add it to the list above.
69
70 Bye
71
72 Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de