all repos — openbox @ 90ee16fc8664f38683edf3b2eb4dd376a572f4ce

openbox fork - make it a bit more like ryudo

util/epist/parser.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
extern "C" {
#include <stdio.h>
}

#include "parser.hh"

#include <string>

using std::string;


parser::parser(keytree *kt)
    : _kt(kt), _mask(0), _action(Action::noaction), _key(""), _arg("") 
{
}

parser::~parser()
{
    // nothing to see here. move along.
}

void parser::parse(string rc_file)
{
    extern int yyparse(void *);
    extern FILE *yyin;

    yyin = fopen(rc_file.c_str(), "r");

    yyparse(this);

    fclose(yyin);
    _kt->reset();
}

void parser::setAction(string act)
{
    struct {
        string str;
        Action::ActionType act;
    }
    actions[] = {
        { "noaction", Action::noaction },
        { "execute", Action::execute },
        { "iconify", Action::iconify },
        { "raise", Action::raise },
        { "lower", Action::lower },
        { "close", Action::close },
        { "toggleshade", Action::toggleshade },
        { "toggleomnipresent", Action::toggleomnipresent },
        { "moveWindowUp", Action::moveWindowUp },
        { "moveWindowDown", Action::moveWindowDown },
        { "moveWindowLeft", Action::moveWindowLeft },
        { "moveWindowRight", Action::moveWindowRight },
        { "resizeWindowWidth", Action::resizeWindowWidth },
        { "resizeWindowHeight", Action::resizeWindowHeight },
        { "toggleMaximizeFull", Action::toggleMaximizeFull },
        { "toggleMaximizeVertical", Action::toggleMaximizeVertical },
        { "toggleMaximizeHorizontal", Action::toggleMaximizeHorizontal },
        { "sendToWorkspace", Action::sendToWorkspace },
        { "nextWindow", Action::nextWindow },
        { "prevWindow", Action::prevWindow },
        { "nextWindowOnAllWorkspaces", Action::nextWindowOnAllWorkspaces },
        { "prevWindowOnAllWorkspaces", Action::prevWindowOnAllWorkspaces },
        { "nextWindowOnAllScreens", Action::nextWindowOnAllScreens },
        { "prevWindowOnAllScreens", Action::prevWindowOnAllScreens },
        { "nextWindowOfClass", Action::nextWindowOfClass },
        { "prevWindowOfClass", Action::prevWindowOfClass },
        { "nextWindowOfClassOnAllWorkspaces", Action::nextWindowOfClassOnAllWorkspaces },
        { "prevWindowOfClassOnAllWorkspaces", Action::prevWindowOfClassOnAllWorkspaces },
        { "changeWorkspace", Action::changeWorkspace },
        { "nextWorkspace", Action::nextWorkspace },
        { "prevWorkspace", Action::prevWorkspace },
        { "nextScreen", Action::nextScreen },
        { "prevScreen", Action::prevScreen },
        { "showRootMenu", Action::showRootMenu },
        { "showWorkspaceMenu", Action::showWorkspaceMenu },
        { "stringChain", Action::stringChain },
        { "keyChain", Action::keyChain },
        { "numberChain", Action::numberChain },
        { "cancel", Action::cancel },
        { "", Action::noaction }
    };

    bool found = false;

    for (int i = 0; actions[i].str != ""; ++i) {
        if (actions[i].str == act) {
            _action = actions[i].act;
            found = true;
        }
    }

    if (!found)
        _action = Action::noaction;
}

void parser::addModifier(string mod)
{
    struct {
        string str;
        unsigned int mask;
    }
    modifiers[] = {
        { "Mod1", Mod1Mask },
        { "Mod2", Mod2Mask },
        { "Mod3", Mod3Mask },
        { "Control", ControlMask },
        { "Shift", ShiftMask },
        { "", 0 }
    };

    for (int i = 0; modifiers[i].str != ""; ++i) {
        if (modifiers[i].str == mod)
            _mask |= modifiers[i].mask;
    }
}

void parser::endAction()
{
    _kt->addAction(_action, _mask, _key, _arg);
    reset();
}

void parser::startChain()
{
    _kt->advanceOnNewNode();
    setChainBinding();
    reset();
}

void parser::endChain()
{
    _kt->retract();
    reset();
}

void parser::setChainBinding()
{
    if (_mask != 0 && _key != "") {
        _kt->setCurrentNodeProps(Action::noaction, _mask, _key, "");
        reset();
    }
}

void parser::reset()
{
    _mask = 0;
    _action = Action::noaction;
    _key = "";
    _arg = "";
}