~ubuntu-branches/ubuntu/warty/kdebase/warty

« back to all changes in this revision

Viewing changes to kwin/notifications.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-09-16 04:51:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040916045145-9vr63kith3k1cpza
Tags: upstream-3.2.2
ImportĀ upstreamĀ versionĀ 3.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************
 
2
 KWin - the KDE window manager
 
3
 This file is part of the KDE project.
 
4
 
 
5
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
 
6
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
 
7
 
 
8
You can Freely distribute this program under the GNU General Public
 
9
License. See the file "COPYING" for the exact licensing terms.
 
10
******************************************************************/
 
11
 
 
12
#ifndef KWIN_NOTIFICATIONS_H
 
13
#define KWIN_NOTIFICATIONS_H
 
14
 
 
15
namespace KWinInternal
 
16
{
 
17
 
 
18
class Notify
 
19
    {
 
20
    public:
 
21
 
 
22
        enum Event 
 
23
            {
 
24
            Activate,
 
25
            Close,
 
26
            Minimize,
 
27
            UnMinimize,
 
28
            Maximize,
 
29
            UnMaximize,
 
30
            OnAllDesktops,
 
31
            NotOnAllDesktops,
 
32
            New,
 
33
            Delete,
 
34
            TransNew,
 
35
            TransDelete,
 
36
            ShadeUp,
 
37
            ShadeDown,
 
38
            MoveStart,
 
39
            MoveEnd,
 
40
            ResizeStart,
 
41
            ResizeEnd,
 
42
            DesktopChange = 100
 
43
            };
 
44
 
 
45
        static void raise( Event );
 
46
    };
 
47
 
 
48
} // namespace
 
49
 
 
50
#endif