Right-justified Windows and Menus in Hebrew Win95ID: Q152137
|
The written languages and cultures of the Middle East have a general right- to-left orientation while Latin-based written languages and cultures have a left-to-right orientation. This means that in a Hebrew application, lists, menus, sets of buttons, or anything else that can have an alignment should be designed with a right-to-left orientation.
Under Hebrew Windows 95, you can create overlapped windows, edit controls,
list boxes, and so on, that have a right-to-left orientation by calling
CreateWindowEx(WS_EX_RIGHT...). When the resulting window is opened in
Hebrew Windows 95, if a caption bar exists for that window, it is right-
aligned. If the resulting window is a control, the control would also have
a right-aligned property. For example, edit controls would have cursors
that start from the right end of the client area.
To right-align the menu takes a bit more work. The MENUEX resource and the
MFT_RIGHTJUSTIFY flag will need to be used.
The syntax for MENUEX is:
menuID MENUEX
BEGIN
[{[MENUITEM itemText [, [id] [, [type] [, state]]]] |
[POPUP itemText [, [id] [, [type] [, [state] [, helpID]]]]
BEGIN
popupBody
END]} ...]
END
The following is an example of a right justified menu:
...
#include "winuser.h"
...
GENERIC MENUEX DISCARDABLE
BEGIN
POPUP "&File", , MFT_RIGHTJUSTIFY
BEGIN
MENUITEM "&New", IDM_NEW, MFS_GRAYED
MENUITEM "&Open...", IDM_OPEN, MFS_GRAYED
MENUITEM "&Save", IDM_SAVE, MFS_GRAYED
MENUITEM "E&xit", IDM_EXIT
END
POPUP "&Edit", , MFT_RIGHTJUSTIFY
BEGIN
MENUITEM "Cu&t\tCtrl+X", IDM_CUT, MFS_GRAYED
MENUITEM "&Copy\tCtrl+C", IDM_COPY,MFS_GRAYED
MENUITEM "&Paste\tCtrl+V", IDM_PASTE, MFS_GRAYED
MENUITEM "Paste &Link", IDM_LINK, MFS_GRAYED
END
END
Additional query words: 4.00 ME Arabic
Keywords : kbIntlDev
Version : 4.00 | 3.51
Platform : NT WINDOWS
Issue type :
Last Reviewed: March 9, 1999