summaryrefslogtreecommitdiff
path: root/src/DockProcess.h
blob: 76f375d8946883259b21045fc2b87ef85e0f4a6b (plain)
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
/* $Id: DockProcess.h,v 1.3 2007/01/07 05:00:56 whot Exp $ */

#ifndef __DOCKPROCESS_H__
#define __DOCKPROCESS_H__

#include <X11/Xlib.h>
#include "XConn.h"
#include "DockItem.h"
#include "WMWindow.h"

class WMWindow;
class PointerDevice;

/* An app that was minimized into the dock */
class DockProcess : public DockItem
{
    private:
        WMWindow* client;

    public:
        DockProcess(XConn* x11, WMWindow* client);
        void handleButtonEvent(PointerDevice* ptr, XDeviceButtonEvent* ev);
        void setup();

};

#endif