src/Keys.cc (raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
// Keys.cc for Fluxbox - an X11 Window manager // Copyright (c) 2001 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. //$Id$ #include "Keys.hh" #include "fluxbox.hh" #include "Screen.hh" #include "FbTk/StringUtil.hh" #include "FbTk/App.hh" #include "FbTk/Command.hh" #include "CommandParser.hh" #include "FbTk/I18n.hh" #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H #ifdef HAVE_CTYPE_H #include <ctype.h> #endif // HAVE_CTYPE_H #ifdef HAVE_CSTDIO #include <cstdio> #else #include <stdio.h> #endif #ifdef HAVE_CSTDLIB #include <cstdlib> #else #include <stdlib.h> #endif #ifdef HAVE_CERRNO #include <cerrno> #else #include <errno.h> #endif #ifdef HAVE_CSTRING #include <cstring> #else #include <string.h> #endif #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif // HAVE_SYS_TYPES_H #ifdef HAVE_SYS_WAIT_H #include <sys/wait.h> #endif // HAVE_SYS_WAIT_H #ifdef HAVE_UNISTD_H #include <unistd.h> #endif // HAVE_UNISTD_H #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif // HAVE_SYS_STAT_H #include <X11/Xlib.h> #include <X11/Xproto.h> #include <X11/keysym.h> #include <X11/Xutil.h> #include <X11/XKBlib.h> #include <iostream> #include <fstream> #include <vector> #include <map> #include <memory> using std::cerr; using std::endl; using std::string; using std::vector; using std::ifstream; using std::pair; Keys::Keys(): m_display(FbTk::App::instance()->display()) { typedef std::list<BScreen *> ScreenList; ScreenList screen_list = Fluxbox::instance()->screenList(); ScreenList::iterator it = screen_list.begin(); ScreenList::iterator it_end = screen_list.end(); for (; it != it_end; ++it) m_window_list.push_back(RootWindow(m_display,(*it)->screenNumber())); } Keys::~Keys() { ungrabKeys(); ungrabButtons(); deleteTree(); } /// Destroys the keytree void Keys::deleteTree() { for (keyspace_t::iterator map_it = m_map.begin(); map_it != m_map.end(); ++map_it) delete map_it->second; m_map.clear(); } void Keys::grabKey(unsigned int key, unsigned int mod) { std::list<Window>::iterator it = m_window_list.begin(); std::list<Window>::iterator it_end = m_window_list.end(); for (; it != it_end; ++it) FbTk::KeyUtil::grabKey(key, mod, *it); } void Keys::ungrabKeys() { std::list<Window>::iterator it = m_window_list.begin(); std::list<Window>::iterator it_end = m_window_list.end(); for (; it != it_end; ++it) FbTk::KeyUtil::ungrabKeys(*it); } void Keys::grabButton(unsigned int button, unsigned int mod) { std::list<Window>::iterator it = m_window_list.begin(); std::list<Window>::iterator it_end = m_window_list.end(); for (; it != it_end; ++it) FbTk::KeyUtil::grabButton(button, mod, *it, ButtonPressMask|ButtonReleaseMask); } void Keys::ungrabButtons() { std::list<Window>::iterator it = m_window_list.begin(); std::list<Window>::iterator it_end = m_window_list.end(); for (; it != it_end; ++it) FbTk::KeyUtil::ungrabButtons(*it); } /** Load and grab keys TODO: error checking @return true on success else false */ bool Keys::load(const char *filename) { if (!filename) return false; //free memory of previous grabs deleteTree(); m_map["default:"] = new t_key(0,0,0,0); FbTk::App::instance()->sync(false); //open the file ifstream infile(filename); if (!infile) return false; // faild to open file unsigned int current_line = 0;//so we can tell the user where the fault is while (!infile.eof()) { string linebuffer; getline(infile, linebuffer); current_line++; if (!addBinding(linebuffer)) { _FB_USES_NLS; cerr<<_FB_CONSOLETEXT(Keys, InvalidKeyMod, "Keys: Invalid key/modifier on line", "A bad key/modifier string was found on line (number following)")<<" "<< current_line<<"): "<<linebuffer<<endl; } } // end while eof m_filename = filename; keyMode("default"); return true; } bool Keys::save(const char *filename) const { //!! //!! TODO: fix keybinding saving //!! (we probably need to save key actions //!! as strings instead of creating new Commands) // open file for writing // ofstream outfile(filename); // if (!outfile) return false; // return true; } bool Keys::addBinding(const string &linebuffer) { vector<string> val; // Parse arguments FbTk::StringUtil::stringtok(val, linebuffer.c_str()); // must have at least 1 argument if (val.size() <= 0) return true; // empty lines are valid. if (val[0][0] == '#' || val[0][0] == '!' ) //the line is commented return true; // still a valid line. unsigned int key = 0, mod = 0; int type = 0, context = 0; size_t argc = 0; t_key *current_key=m_map["default:"]; t_key *first_new_keylist = current_key, *first_new_key=0; if (val[0][val[0].length()-1] == ':') { argc++; keyspace_t::iterator it = m_map.find(val[0]); if (it == m_map.end()) m_map[val[0]] = new t_key(0,0,0,0); current_key = m_map[val[0]]; } // for each argument for (; argc < val.size(); argc++) { if (val[argc][0] != ':') { // parse key(s) int tmpmod = FbTk::KeyUtil::getModifier(val[argc].c_str()); if(tmpmod) mod |= tmpmod; //If it's a modifier else if (strcasecmp("ondesktop", val[argc].c_str()) == 0) context |= ON_DESKTOP; else if (strcasecmp("NONE",val[argc].c_str())) { // check if it's a mouse button if (!strcasecmp(val[argc].substr(0,5).c_str(), "mouse") && val[argc].length() > 5) { type = ButtonPress; key = atoi(val[argc].substr(5,val[argc].length()-5).c_str()); // keycode covers the following three two-byte cases: // 0x - hex // +[1-9] - number between +1 and +9 // numbers 10 and above // } else if (val[argc].size() > 1 && (isdigit(val[argc][0]) && (isdigit(val[argc][1]) || val[argc][1] == 'x') || val[argc][0] == '+' && isdigit(val[argc][1])) ) { key = strtoul(val[argc].c_str(), NULL, 0); type = KeyPress; if (errno == EINVAL || errno == ERANGE) key = 0; } else { // convert from string symbol key = FbTk::KeyUtil::getKey(val[argc].c_str()); type = KeyPress; } if (key == 0) return false; if (!first_new_key) { first_new_keylist = current_key; current_key = current_key->find(type, mod, key, context); if (!current_key) { first_new_key = new t_key(type, mod, key, context); current_key = first_new_key; } else if (*current_key->m_command) // already being used return false; } else { t_key *temp_key = new t_key(type, mod, key, context); current_key->keylist.push_back(temp_key); current_key = temp_key; } mod = 0; key = 0; type = 0; context = 0; } } else { // parse command line if (!first_new_key) return false; const char *str = FbTk::StringUtil::strcasestr(linebuffer.c_str(), val[argc].c_str() + 1); // +1 to skip ':' if (str) current_key->m_command = CommandParser::instance().parseLine(str); if (!str || *current_key->m_command == 0 || mod) { delete first_new_key; return false; } // success first_new_keylist->keylist.push_back(first_new_key); return true; } // end if } // end for return false; } // return true if bound to a command, else false bool Keys::doAction(int type, unsigned int mods, unsigned int key) { static t_key* next_key = m_keylist; if (!next_key) next_key = m_keylist; mods = FbTk::KeyUtil::instance().cleanMods(mods); // at the moment, any key/button that gets here is on root window // context will need to be added as an argument to doAction, though t_key *temp_key = next_key->find(type, mods, key, ON_DESKTOP|GLOBAL); // need to save this for emacs-style keybindings static t_key *saved_keymode = 0; // grab "None Escape" to exit keychain in the middle unsigned int esc = FbTk::KeyUtil::getKey("Escape"); if (temp_key && !temp_key->keylist.empty()) { // emacs-style if (!saved_keymode) saved_keymode = m_keylist; next_key = temp_key; setKeyMode(next_key); grabKey(esc,0); return true; } if (!temp_key || *temp_key->m_command == 0) { if (type == KeyPress && key == esc && mods == 0) { // if we're in the middle of an emacs-style keychain, exit it next_key = 0; if (saved_keymode) { setKeyMode(saved_keymode); saved_keymode = 0; } } return false; } temp_key->m_command->execute(); if (saved_keymode) { if (next_key == m_keylist) // don't reset keymode if command changed it setKeyMode(saved_keymode); saved_keymode = 0; } next_key = 0; return true; } /** deletes the tree and load configuration returns true on success else false */ bool Keys::reconfigure(const char *filename) { return load(filename); } void Keys::keyMode(string keyMode) { keyspace_t::iterator it = m_map.find(keyMode + ":"); if (it == m_map.end()) setKeyMode(m_map["default:"]); else setKeyMode(it->second); } void Keys::setKeyMode(t_key *keyMode) { ungrabKeys(); ungrabButtons(); keylist_t::iterator it = keyMode->keylist.begin(); keylist_t::iterator it_end = keyMode->keylist.end(); for (; it != it_end; ++it) { if ((*it)->type == KeyPress) grabKey((*it)->key,(*it)->mod); else if ((*it)->context == GLOBAL) grabButton((*it)->key,(*it)->mod); // we must use root window's event mask to get ON_DESKTOP events } m_keylist = keyMode; } Keys::t_key::t_key(int type_, unsigned int mod_, unsigned int key_, int context_, FbTk::RefCount<FbTk::Command> command) { key = key_; mod = mod_; type = type_; context = context_ ? context_ : GLOBAL; m_command = command; } Keys::t_key::t_key(t_key *k) { key = k->key; mod = k->mod; type = k->type; context = k->context; m_command = k->m_command; } Keys::t_key::~t_key() { for (keylist_t::iterator list_it = keylist.begin(); list_it != keylist.end(); ++list_it) delete *list_it; keylist.clear(); } |