libtdepim

overlaywidget.h
1/*
2 * overlaywidget.h
3 *
4 * Copyright (c) 2004 David Faure <faure@kde.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 * In addition, as a special exception, the copyright holders give
20 * permission to link the code of this program with any edition of
21 * the TQt library by Trolltech AS, Norway (or with modified versions
22 * of TQt that use the same license as TQt), and distribute linked
23 * combinations including the two. You must obey the GNU General
24 * Public License in all respects for all of the code used other than
25 * TQt. If you modify this file, you may extend this exception to
26 * your version of the file, but you are not obligated to do so. If
27 * you do not wish to do so, delete this exception statement from
28 * your version.
29 */
30#ifndef OVERLAYWIDGET_H
31#define OVERLAYWIDGET_H
32
33#include <tqhbox.h>
34
35namespace KPIM {
36
44class OverlayWidget : public TQHBox
45{
46 TQ_OBJECT
47
48
49public:
50 OverlayWidget( TQWidget* alignWidget, TQWidget* parent, const char* name = 0 );
52
53 TQWidget * alignWidget() { return mAlignWidget; }
54 void setAlignWidget( TQWidget * alignWidget );
55
56protected:
57 void resizeEvent( TQResizeEvent* ev );
58 bool eventFilter( TQObject* o, TQEvent* e);
59
60private:
61 void reposition();
62
63private:
64 TQWidget * mAlignWidget;
65};
66
67} // namespace
68
69#endif /* OVERLAYWIDGET_H */
70
This is a widget that can align itself with another one, without using a layout, so that it can actua...
Definition: overlaywidget.h:45
TDEPIM classes for drag and drop of mails.