summaryrefslogtreecommitdiff
path: root/src/DockProcess.h
blob: a286409c7b0e99151ea61d51d83c8ae94dfa277b (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
/* $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;
/* An app that was minimized into the dock */
class DockProcess : public DockItem
{
    private:
        WMWindow* client;

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

};

#endif