File: windowmenu.hh

package info (click to toggle)
aewm%2B%2B 1.1.2-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 216 kB
  • ctags: 423
  • sloc: cpp: 3,016; makefile: 81; sh: 35
file content (27 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (6)
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
/* 
 * frankhale@gmail.com
 * http://frankhale.org
 *
 * This code is released under the GPL license www.gnu.org
 */
#ifndef _WINDOWMENU_HH
#define _WINDOWMENU_HH

#include "aewm.hh"

class WindowMenu : public GenericMenu
{
private:
	Client *client;
	
public:
	WindowMenu(Display * dpy);

	virtual void handleButtonReleaseEvent(XButtonEvent *e);

	void updateWindowMenu();
	
	void setThisClient(Client *c) { client = c; }
};

#endif