Ticket #3741: PrefHandler.patch
File PrefHandler.patch, 1.4 KB (added by , 16 years ago) |
---|
-
src/apps/terminal/PrefHandler.cpp
1 1 /* 2 * Copyright 2003-200 7, Haiku, Inc. All Rights Reserved.2 * Copyright 2003-2009, Haiku, Inc. All Rights Reserved. 3 3 * Copyright (c) 2004 Daniel Furrer <assimil8or@users.sourceforge.net> 4 4 * Copyright (c) 2003-4 Kian Duffy <myob@users.sourceforge.net> 5 5 * Copyright (c) 1998,99 Kazuho Okui and Takashi Murai. … … 7 7 * Distributed unter the terms of the MIT License. 8 8 */ 9 9 10 11 10 #include "Coding.h" 12 11 #include "PrefHandler.h" 13 12 #include "TermConst.h" … … 38 37 { PREF_HALF_FONT_SIZE, "12" }, 39 38 40 39 { PREF_TEXT_FORE_COLOR, " 0, 0, 0" }, 41 { PREF_TEXT_BACK_COLOR, "2 55, 255, 255" },42 { PREF_SELECT_FORE_COLOR, " 255, 255, 255" },43 { PREF_SELECT_BACK_COLOR, " 0, 0,0" },40 { PREF_TEXT_BACK_COLOR, "220, 220, 220" }, 41 { PREF_SELECT_FORE_COLOR, " 0, 75, 255" }, 42 { PREF_SELECT_BACK_COLOR, "170, 170, 170" }, 44 43 { PREF_CURSOR_FORE_COLOR, "255, 255, 255" }, 45 { PREF_CURSOR_BACK_COLOR, " 0, 0, 0" },44 { PREF_CURSOR_BACK_COLOR, "125, 125, 125" }, 46 45 47 46 { PREF_IM_FORE_COLOR, " 0, 0, 0" }, 48 47 { PREF_IM_BACK_COLOR, "152, 203, 255" }, … … 54 53 { PREF_TEXT_ENCODING, "UTF-8" }, 55 54 56 55 { PREF_GUI_LANGUAGE, "English"}, 57 { PREF_IM_AWARE, 56 { PREF_IM_AWARE, "0"}, 58 57 { NULL, NULL}, 59 58 }; 60 59