00001 #ifndef Impala_Visualization_KeyBindingsMap_h
00002 #define Impala_Visualization_KeyBindingsMap_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113 #include <map>
00114
00115 #ifndef Impala_Basis_String_h
00116 #include "Basis/String.h"
00117 #endif
00118
00119 #ifndef Impala_Basis_CmdOptions_h
00120 #include "Basis/CmdOptions.h"
00121 #endif
00122
00123 namespace Impala {
00124 namespace Visualization {
00125
00126 typedef std::map<String,String> KeyBindingsMap;
00127
00128 void
00129 ParseKeyBindingStr(String& str, int& c, int& state)
00130 {
00131 int modState = 0;
00132 int modIdx;
00133 String modStr;
00134
00135 state = c = 0;
00136 if ((modIdx=str.find('#'))!=String::npos)
00137 {
00138 modStr = str.substr(0,modIdx);
00139 if (modStr == "ctrl")
00140 modState |= oglControl;
00141 else if (modStr == "shift")
00142 modState |= oglShift;
00143 else if (modStr == "ctrl-shift" || modStr == "shift-ctrl")
00144 modState |= oglControl | oglShift;
00145 }
00146
00147 state = modState;
00148
00149 int charIdx = modIdx ? modIdx+1 : 0;
00150 String charStr = str.substr(charIdx);
00151 if (charStr.length()==1)
00152 {
00153 c = charStr[0];
00154 if (modState & oglControl)
00155 {
00156 c = toupper(c);
00157 c -= 'A'-1;
00158 }
00159 }
00160 else if (charStr[0] == 'f' && charStr[1] == 'n')
00161 {
00162 int fnNr = atoi(charStr.substr(2));
00163 c = oglFUNC(fnNr);
00164 }
00165 else if (charStr == "pageup")
00166 c = oglPAGEUP;
00167 else if (charStr == "pagedown")
00168 c = oglPAGEDOWN;
00169 else if (charStr == "up")
00170 c = oglUP;
00171 else if (charStr == "down")
00172 c = oglDOWN;
00173 else if (charStr == "right")
00174 c = oglRIGHT;
00175 else if (charStr == "left")
00176 c = oglLEFT;
00177 else if (charStr == "home")
00178 c = oglHOME;
00179 else if (charStr == "end")
00180 c = oglEND;
00181 else if (charStr == "insert")
00182 c = oglINSERT;
00183 else if (charStr == "delete")
00184 c = oglDELETE;
00185 else if (charStr == "esc")
00186 c = oglESC;
00187 else if (charStr == "space")
00188 c = ' ';
00189 else if (charStr == "\\t")
00190 c = '\t';
00191 else if (charStr == "\\n")
00192 c = '\n';
00193 }
00194
00195 String
00196 GetKeyBinding(String name, String dflt)
00197 {
00198 CmdOptions& options = CmdOptions::GetInstance();
00199 String str = options.GetString(name, dflt);
00200 return str;
00201 }
00202
00203 bool
00204 CheckKeyBinding(KeyBindingsMap& kb, String keyStr, int c, int state)
00205 {
00206 int cVal, stateVal;
00207 String str = kb[keyStr];
00208 ParseKeyBindingStr(str, cVal, stateVal);
00209 if (!stateVal && isupper(c))
00210 stateVal = oglShift;
00211 return (c==cVal && (state==stateVal));
00212 }
00213
00214 bool
00215 CheckKeyBindingExt(KeyBindingsMap& kb, String keyStr, int c, int state, int n=6)
00216 {
00217 if (CheckKeyBinding(kb, keyStr, c, state))
00218 return true;
00219 for (int i=1; i<n; i++)
00220 if (CheckKeyBinding(kb, keyStr + "-" + MakeString(i), c, state))
00221 return true;
00222 return false;
00223 }
00224
00225 void
00226 TryInitKeyBinding(KeyBindingsMap& kb, String keyStr, String dfltStr, int n=0)
00227 {
00228 if (keyStr.empty())
00229 return;
00230
00231 String k = keyStr;
00232 if (n>0)
00233 k += "-" + MakeString(n);
00234 String bindStr = GetKeyBinding(k, dfltStr);
00235 if (!bindStr.empty())
00236 kb[k] = bindStr;
00237 }
00238
00239 void
00240 InitKeyBinding(KeyBindingsMap& kb, String keyStr, String dfltStr0,
00241 String dfltStr1="", String dfltStr2="",
00242 String dfltStr3="", String dfltStr4="",
00243 String dfltStr5="", String dfltStr6="")
00244 {
00245 TryInitKeyBinding(kb, keyStr, dfltStr0, 0);
00246 TryInitKeyBinding(kb, keyStr, dfltStr1, 1);
00247 TryInitKeyBinding(kb, keyStr, dfltStr2, 2);
00248 TryInitKeyBinding(kb, keyStr, dfltStr3, 3);
00249 TryInitKeyBinding(kb, keyStr, dfltStr4, 4);
00250 TryInitKeyBinding(kb, keyStr, dfltStr5, 5);
00251 TryInitKeyBinding(kb, keyStr, dfltStr6, 6);
00252 }
00253
00254 }
00255 }
00256
00257 #endif // Impala_Visualization_KeyBindingsMap_h