X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Factions.cc;h=e37ff2470602338e445b40ed65d9dac5510e61cc;hb=97019b8b77f7e6450d87b057bcb6eae43e9f3e2b;hp=35ddbb80976c8a962d35ea11ac233cbbc6a48c6a;hpb=843f9726ab6fd99fe3a2f285e6c85bd2880a275f;p=chaz%2Fopenbox diff --git a/util/epist/actions.cc b/util/epist/actions.cc index 35ddbb80..e37ff247 100644 --- a/util/epist/actions.cc +++ b/util/epist/actions.cc @@ -1,5 +1,5 @@ // -*- mode: C++; indent-tabs-mode: nil; -*- -// actions.cc for Epistophy - a key handler for NETWM/EWMH window managers. +// actions.cc for Epistrophy - a key handler for NETWM/EWMH window managers. // Copyright (c) 2002 - 2002 Ben Jansens // // Permission is hereby granted, free of charge, to any person obtaining a @@ -22,14 +22,31 @@ #include "actions.hh" -Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask, - int num) - : _type(type), _keycode(keycode), - _modifierMask(modifierMask), _numberParam(num) -{ } - Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask, const std::string &str) - : _type(type), _keycode(keycode), - _modifierMask(modifierMask), _stringParam(str) -{ } + : _type(type), _keycode(keycode), _modifierMask(modifierMask) +{ + // These are the action types that take string arguments. This + // should probably be moved to a static member + ActionType str_types[] = { + execute, + nextWindowOfClass, + prevWindowOfClass, + nextWindowOfClassOnAllWorkspaces, + prevWindowOfClassOnAllWorkspaces, + noaction + }; + + for (int i = 0; str_types[i] != noaction; ++i) { + if (type == str_types[i]) { + _stringParam = str; + return; + } + } + + _numberParam = atoi( str.c_str() ); + + // workspace 1 to the user is workspace 0 to us + if (type == changeWorkspace || type == sendToWorkspace) + _numberParam--; +}