summaryrefslogtreecommitdiff
path: root/decorators/libdecorator/duiabstractdecorator.h
blob: 2dcb77b609f6ee7e7c430058f31a0bf4f7b2a3fa (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (directui@nokia.com)
**
** This file is part of duicompositor.
**
** If you have questions regarding the use of this file, please contact
** Nokia at directui@nokia.com.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/

#ifndef DUIABSTRACTDECORATOR_H
#define DUIABSTRACTDECORATOR_H

#include <QObject>

/*!
 * DuiAbstractDecorator is the base class for window decorators
 */
class DuiAbstractDecorator: public QObject
{
    Q_OBJECT
public:
    /*!
     * Initializes DuiAbstractDecorator and the connections to DuiCompositor
     */
    DuiAbstractDecorator(QObject *parent = 0);
    virtual ~DuiAbstractDecorator() = 0;

    /*!
     * Returns the id of the window decorated by this decorator
     */
    Qt::HANDLE managedWinId();

public slots:

    /*!
    * Minimizes the managed window
    */
    void minimize();

    /*!
    * Closes the managed window
    */
    void close();

    /*!
     * Interface to DuiRMI sockets
     */
    void RemoteSetManagedWinId(qulonglong window);
    void RemoteActivateWindow();

protected:

    /*!
     * Pure virtual function that gets called when the user activates the
     * managed window by tapping on its client area.
     * Re-implement to obtain activate events from the managed window
     */
    virtual void activateEvent() = 0;
    
     /*!
      * Pure virtual function that gets called this decorator manages a window
      */
    virtual void manageEvent(Qt::HANDLE window) = 0;

private:
    Qt::HANDLE client;

};

#endif //DUIABSTRACTDECORATOR_H