[MSPORTS] Implement serial port settings
[reactos.git] / dll / win32 / msports / lang / en-US.rc
index fdc5f0c..baf2725 100644 (file)
@@ -6,17 +6,17 @@ CAPTION "Port Settings"
 FONT 8, "MS Shell Dlg"
 BEGIN
     RTEXT "B&its per second:", -1, 6, 19, 130, 8, WS_GROUP
-    COMBOBOX IDC_SERIAL_BITSPERSECOND, 139, 17, 106, 90, WS_TABSTOP | CBS_DROPDOWNLIST
-    RTEXT "&Data bits:", -1, 6, 40, 130, 8
-    COMBOBOX IDC_SERIAL_DATABITS, 139, 38, 106, 54, WS_TABSTOP | CBS_DROPDOWNLIST
-    RTEXT "&Parity:", -1, 6, 61, 130, 8
-    COMBOBOX IDC_SERIAL_PARITY, 139, 59, 106, 62, WS_TABSTOP | CBS_DROPDOWNLIST
-    RTEXT "&Stop bits:", -1, 6, 82, 130, 8
-    COMBOBOX IDC_SERIAL_STOPBITS, 139, 80, 106, 54, WS_TABSTOP | CBS_DROPDOWNLIST
-    RTEXT "&Flow control:", -1, 6, 102, 130, 8
-    COMBOBOX IDC_SERIAL_FLOWCONTROL, 139, 100, 106, 54, WS_TABSTOP | CBS_DROPDOWNLIST
-    PUSHBUTTON "&Advanced...", IDC_SERIAL_ADVANCED, 71, 130, 85, 14, WS_GROUP
-    PUSHBUTTON "&Restore Defaults", IDC_SERIAL_RESTORE, 160, 130, 85, 14, WS_GROUP
+    COMBOBOX IDC_SERIAL_BITSPERSECOND, 139, 17, 106, 90, CBS_DROPDOWNLIST | WS_TABSTOP | WS_VSCROLL
+    RTEXT "&Data bits:", -1, 6, 40, 130, 8, WS_GROUP
+    COMBOBOX IDC_SERIAL_DATABITS, 139, 38, 106, 54, CBS_DROPDOWNLIST | WS_TABSTOP | WS_VSCROLL
+    RTEXT "&Parity:", -1, 6, 61, 130, 8, WS_GROUP
+    COMBOBOX IDC_SERIAL_PARITY, 139, 59, 106, 62, CBS_DROPDOWNLIST | WS_TABSTOP | WS_VSCROLL
+    RTEXT "&Stop bits:", -1, 6, 82, 130, 8, WS_GROUP
+    COMBOBOX IDC_SERIAL_STOPBITS, 139, 80, 106, 54, CBS_DROPDOWNLIST | WS_TABSTOP | WS_VSCROLL
+    RTEXT "&Flow control:", -1, 6, 102, 130, 8, WS_GROUP
+    COMBOBOX IDC_SERIAL_FLOWCONTROL, 139, 100, 106, 54, CBS_DROPDOWNLIST | WS_TABSTOP | WS_VSCROLL
+    PUSHBUTTON "&Advanced...", IDC_SERIAL_ADVANCED, 71, 130, 85, 14, WS_GROUP | WS_TABSTOP
+    PUSHBUTTON "&Restore Defaults", IDC_SERIAL_RESTORE, 160, 130, 85, 14, WS_GROUP | WS_TABSTOP
 END
 
 IDD_PARALLELSETTINGS DIALOGEX 0, 0, 252, 218
@@ -24,18 +24,18 @@ STYLE DS_SHELLFONT | WS_CHILD | WS_DISABLED | WS_CAPTION
 CAPTION "Port Settings"
 FONT 8, "MS Shell Dlg"
 BEGIN
-    GROUPBOX "Filter Resource Method", -1, 6, 6, 237, 75, WS_GROUP
-    AUTORADIOBUTTON "Try not to use an interrupt", IDC_TRY_INTERRUPT, 11, 22, 227, 10
+    GROUPBOX "Filter Resource Method", -1, 6, 6, 237, 75
+    AUTORADIOBUTTON "Try not to use an interrupt", IDC_TRY_INTERRUPT, 11, 22, 227, 10, WS_GROUP
     AUTORADIOBUTTON "Never use an interrupt", IDC_NEVER_INTERRUPT, 11, 44, 227, 10
-    AUTORADIOBUTTON "Use any interrupt assigned to the port", IDC_ANY_INTERRUPT, 11, 66, 227, 10, WS_GROUP
-    AUTOCHECKBOX "Enable legacy Plug and Play detection", -1, 6, 90, 237, 10
+    AUTORADIOBUTTON "Use any interrupt assigned to the port", IDC_ANY_INTERRUPT, 11, 66, 227, 10
+    AUTOCHECKBOX "Enable legacy Plug and Play detection", IDC_PARALLEL_LEGACY, 6, 90, 237, 10, WS_TABSTOP
     LTEXT "LPT Port Number:", -1, 6, 107, 140, 10, WS_GROUP
-    COMBOBOX IDC_PARALLEL_NAME, 65, 105, 75, 20, WS_TABSTOP | CBS_DROPDOWNLIST
+    COMBOBOX IDC_PARALLEL_NAME, 65, 105, 75, 20, CBS_DROPDOWNLIST | WS_GROUP | WS_TABSTOP | WS_VSCROLL
 END
 
 STRINGTABLE
 BEGIN
-    IDS_LPT1 "LPT1"
-    IDS_LPT2 "LPT2"
-    IDS_LPT3 "LPT3"
+    IDS_PARITY "Even,Odd,None,Mark,Space"
+    IDS_STOPBITS "1,1.5,2"
+    IDS_FLOWCONTROL "Xon / Xoff,Hardware,None"
 END