summaryrefslogtreecommitdiffstats
path: root/src/clip.h
blob: 11fca73c5dd64e0c12d89f4ad6c75bb9bf9a8ad5 (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
28
29
#ifndef CLIP_H
#define CLIP_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <tqwidget.h>

#include <netwm.h>
#include <twin.h>

class clip : public TQWidget
{
  Q_OBJECT
  public:
    clip(TQWidget* parent = 0, const char* name = 0);

    virtual ~clip();
    void clipDesktop(int, int, int, int, int, int, int, int, int, int, int, int);

  private:
    NETWinInfo* info;

  protected:
    void paintEvent(TQPaintEvent*);
};

#endif // CLIP_H