blob: 80eb245480977b192de8de9d740b0984c64f9a57 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/***************************************************************************
copyright : (C) 2005-2006 by Robby Stephenson
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
// much of this code is adapted from libkdepim
// which is GPL licensed, Copyright (c) 2004 David Faure
#ifndef TELLICO_GUI_OVERLAYWIDGET_H
#define TELLICO_GUI_OVERLAYWIDGET_H
#include <tqframe.h>
namespace Tellico {
namespace GUI {
/**
* @author Robby Stephenson
*/
class OverlayWidget : public TQFrame {
Q_OBJECT
TQ_OBJECT
public:
OverlayWidget(TQWidget* tqparent, TQWidget* anchor);
void setCorner(Corner corner);
Corner corner() const { return m_corner; }
void addWidget(TQWidget* widget);
protected:
void resizeEvent(TQResizeEvent* event);
bool eventFilter(TQObject* object, TQEvent* event);
bool event(TQEvent* event);
private:
void reposition();
TQWidget* m_anchor;
Corner m_corner;
};
} // end namespace
} // end namespace
#endif
|