Changeset 25387
- Timestamp:
- 05/08/08 18:07:52 (1 week ago)
- Files:
-
- haiku/trunk/src/apps/terminal/AppearPrefView.cpp (modified) (1 diff)
- haiku/trunk/src/apps/terminal/MenuUtil.cpp (modified) (1 diff)
- haiku/trunk/src/apps/terminal/TermConst.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
haiku/trunk/src/apps/terminal/AppearPrefView.cpp
r23911 r25387 34 34 PREF_SELECT_FORE_COLOR, 35 35 PREF_SELECT_BACK_COLOR, 36 #if 0 37 "", 38 PREF_IM_FORE_COLOR, 39 PREF_IM_BACK_COLOR, 40 PREF_IM_SELECT_COLOR, 41 "", 42 PREF_ANSI_BLACK_COLOR, 43 PREF_ANSI_RED_COLOR, 44 PREF_ANSI_GREEN_COLOR, 45 PREF_ANSI_YELLOW_COLOR, 46 PREF_ANSI_BLUE_COLOR, 47 PREF_ANSI_MAGENTA_COLOR, 48 PREF_ANSI_CYAN_COLOR, 49 PREF_ANSI_WHITE_COLOR, 50 #endif 36 51 NULL 37 52 }; haiku/trunk/src/apps/terminal/MenuUtil.cpp
r23695 r25387 29 29 int32 i = 0; 30 30 while (*items) { 31 menu->AddItem(new BMenuItem(*items, new BMessage(msg))); 31 if (!strcmp(*items, "")) 32 menu->AddSeparatorItem(); 33 else 34 menu->AddItem(new BMenuItem(*items, new BMessage(msg))); 32 35 if (!strcmp(*items, defaultItemName)) 33 36 menu->ItemAt(i)->SetMarked(true); haiku/trunk/src/apps/terminal/TermConst.h
r23725 r25387 100 100 const char* const PREF_IM_SELECT_COLOR = "IM Selection Color"; 101 101 102 const char* const PREF_ANSI_BLACK_COLOR = "ANSI Black Color"; 103 const char* const PREF_ANSI_RED_COLOR = "ANSI Red Color"; 104 const char* const PREF_ANSI_GREEN_COLOR = "ANSI Green Color"; 105 const char* const PREF_ANSI_YELLOW_COLOR = "ANSI Yellow Color"; 106 const char* const PREF_ANSI_BLUE_COLOR = "ANSI Blue Color"; 107 const char* const PREF_ANSI_MAGENTA_COLOR = "ANSI Magenta Color"; 108 const char* const PREF_ANSI_CYAN_COLOR = "ANSI Cyan Color"; 109 const char* const PREF_ANSI_WHITE_COLOR = "ANSI White Color"; 110 102 111 const char* const PREF_HISTORY_SIZE = "History Size"; 103 112 const char* const PREF_CURSOR_BLINKING = "Cursor Blinking rate";
