small positioning fixes
[bbkeys.git] / src / WindowlistMenu.h
blob8a1fc85926338144928827bc53ae14432ae3cd4d
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // -- WindowlistMenu.h --
3 // Copyright (c) 2001 - 2003 Jason 'vanRijn' Kasper <vR at movingparts dot net>
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
23 // E_O_H_VR
25 #ifndef WINDOWLISTMENU_HH
26 #define WINDOWLISTMENU_HH
28 extern "C" {
29 #include <X11/Xlib.h>
32 #include <Menu.hh>
34 #include "ScreenHandler.h"
35 #include "Config.h"
36 #include "window.hh"
37 #include "keytree.hh"
39 class ScreenHandler;
40 class keytree;
41 class XWindow;
43 class WindowlistMenu : public bt::Menu
46 public:
47 WindowlistMenu (ScreenHandler * s);
48 void showCycleMenu (WindowList theList ) ;
49 void itemClicked(unsigned int id, unsigned int button);
51 void selectPrevious();
52 void selectNext();
53 XWindow * getSelectedWindow();
55 private:
56 ScreenHandler * _screen;
57 WindowList _windowList;
58 keytree * _keybindings;
59 Display * _display;
60 Config * _config;
61 const bt::ScreenInfo * _screen_info;
62 bool _debug;
63 int _current_index;
65 void keyPressEvent (const XKeyEvent * const e) ;
66 void keyReleaseEvent (const XKeyEvent * const e) ;
69 #endif