blob: 7b4453ec8ba7bd25ce7dbc8c99d4ea1806caca24 (
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
|
/***************************************************************************
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 <qframe.h>
namespace Tellico {
namespace GUI {
/**
* @author Robby Stephenson
*/
class OverlayWidget : public QFrame {
Q_OBJECT
public:
OverlayWidget(QWidget* parent, QWidget* anchor);
void setCorner(Corner corner);
Corner corner() const { return m_corner; }
void addWidget(QWidget* widget);
protected:
void resizeEvent(QResizeEvent* event);
bool eventFilter(QObject* object, QEvent* event);
bool event(QEvent* event);
private:
void reposition();
QWidget* m_anchor;
Corner m_corner;
};
} // end namespace
} // end namespace
#endif
|