|
|
#include "windows.h" #include "resource.h" #include "cuires.h" #include "msutb.rcv"
///////////////////////////////////////////////////////////////////////////// // // Icon // ID_ICON_CONTROLBTN ICON DISCARDABLE ctlbtn.ico ID_ICON_INFO ICON DISCARDABLE info.ico
///////////////////////////////////////////////////////////////////////////// // // Bitmap // ID_BITMAP_CAPS BITMAP DISCARDABLE caps.bmp ID_BITMAP_KANA BITMAP DISCARDABLE kana.bmp ID_BITMAP_CAPSV BITMAP DISCARDABLE capsv.bmp ID_BITMAP_KANAV BITMAP DISCARDABLE kanav.bmp ID_BITMAP_TRAYICONPOS BITMAP DISCARDABLE trayicon.bmp ID_BITMAP_DESKBANDPOS BITMAP DISCARDABLE deskband.bmp
///////////////////////////////////////////////////////////////////////////// // // Dialog //
IDD_CLOSELANGBAR DIALOG DISCARDABLE 0, 0, 230, 90 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Language Bar" FONT 8, "MS Shell Dlg" BEGIN
LTEXT "You have closed the Language bar.\r\n\r\nTo use the Language bar later, check ""Show the Language bar on the desktop"" in the Language Bar Settings dialog, which you can find within the Text Services control panel." IDC_STATIC,7,7,217,45 CONTROL "&Do not show me this message again.",IDC_DONTSHOWAGAIN,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,6,53,135,10
DEFPUSHBUTTON "OK",IDOK,54,71,50,14 PUSHBUTTON "Cancel",IDCANCEL,122,70,50,14 END
IDD_CLOSELANGBAR51 DIALOG DISCARDABLE 0, 0, 230, 90 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Language Bar" FONT 8, "MS Shell Dlg" BEGIN
LTEXT "You have closed the Language bar.\r\n\r\nTo use the Language bar later, check ""Show the Language bar on the desktop"" in the Language Bar Settings dialog, which you can find within the Regional and Language Options control panel." IDC_STATIC,7,7,217,45 CONTROL "&Do not show me this message again.",IDC_DONTSHOWAGAIN,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,6,53,135,10
DEFPUSHBUTTON "OK",IDOK,54,71,50,14 PUSHBUTTON "Cancel",IDCANCEL,122,70,50,14 END
IDD_MINIMIZELANGBAR DIALOGEX 0, 0, 225, 114 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Language bar" FONT 8, "MS Shell Dlg" BEGIN DEFPUSHBUTTON "OK",IDOK,87,94,50,14 CONTROL ID_BITMAP_TRAYICONPOS,IDC_STATIC,"Static",SS_BITMAP,83,47,60,23, WS_EX_STATICEDGE ICON ID_ICON_INFO,IDC_STATIC,7,14,21,20 CONTROL "Don't show me this message again.",IDC_DONTSHOWAGAIN, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,49,77,126,11 LTEXT "You have minimized the Language bar. To restore it, just click the Language bar icon (near the clock) and select ""Restore the Language bar"" from the pop-up menu." IDC_STATIC,37,11,180,29 END
IDD_MINIMIZELANGBAR51 DIALOGEX 0, 0, 225, 114 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Language bar" FONT 8, "MS Shell Dlg" BEGIN DEFPUSHBUTTON "OK",IDOK,87,94,50,14 CONTROL ID_BITMAP_DESKBANDPOS,IDC_STATIC,"Static",SS_BITMAP,73,47,60,23, WS_EX_STATICEDGE ICON ID_ICON_INFO,IDC_STATIC,7,14,21,20 CONTROL "Don't show me this message again.",IDC_DONTSHOWAGAIN, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,49,77,126,11 LTEXT "You have minimized the Language bar. To restore it, just click the Language bar icon (near the clock) and select ""Restore the Language bar"" from the pop-up menu." IDC_STATIC,37,11,180,29 END
///////////////////////////////////////////////////////////////////////////// // // String //
STRINGTABLE DISCARDABLE BEGIN IDS_SHOWINPUTCPL "S&ettings..." IDS_OPAQUE "&Opaque" IDS_LOWTRANSPARENCY "&Low Transparency" IDS_HIGHTRANSPARENCY "&High Transparency" IDS_SHOWTEXT "Sh&ow Text" IDS_HIDETEXT "H&ide Text" IDS_BREAK "&Break to debugger" IDS_CANCEL "&Cancel" IDS_CONTROLBTN "Restore the Language bar" IDS_RESTOREDEFAULTS "&Restore Defaults" IDS_TRANSPARENCY "&Transparency" IDS_TEXTLABEL "Te&xt Labels" IDS_MINIMIZE "&Minimize" IDS_RESTORE "&Restore the Language bar" IDS_CLOSE "&Close the Language bar" IDS_MINIMIZEDBALLOONTEXT "You have minimized the language bar." IDS_OVERSCREENSIZE "More buttons are available.\r\nTo see them, click the arrow." IDS_NOTIFICATIONICONS "&Additional icons in taskbar" IDS_NOMOREITEM "You cannot remove the last button from the language bar. Do you want to close the language bar?\r\nYou can always restore the language bar from Text Services control panel." IDS_LANGBAR "The language bar" IDS_ADJUSTLANGBAND "&Adjust the Language band position"
IDS_NUI_LANGUAGE_TEXT "Language" IDS_NUI_LANGUAGE_TOOLTIP "Language Button"
IDS_MENUWINDOW "Menu Window"
IDS_LEFTCLICK "Left Click"
IDS_VERTICAL "&Vertical"
IDS_LANGBAND "Language bar" IDS_LANGBANDMENUTEXTPUI "@%SystemRoot%\\System32\\msutb.dll,-325"
IDS_CBTN_MINIMIZE "Minimize" IDS_CBTN_EXTMENU "Options" IDS_CBTN_KANAKEY "Kana status" IDS_CBTN_CAPSKEY "Caps status" IDS_CBTN_RESTORE "Restore" END
// // include string table for CUILIB.LIB // #include "cuires.rc"
|