summaryrefslogtreecommitdiffstats
path: root/yakuake/src/terminal_focus_watcher.h
blob: c08002e62162e1de7bc1d3cb188b2f74ca28c368 (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
/*
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
*/

/*
  Copyright (C) 2007 Eike Hein <hein@kde.org>
*/


#ifndef TERMINAL_FOCUS_WATCHER_H
#define TERMINAL_FOCUS_WATCHER_H


#include <tqobject.h>


class TerminalFocusWatcher : public TQObject
{
    TQ_OBJECT
  

    public:
        explicit TerminalFocusWatcher(TQObject* parent = 0, const char* name = 0);
        virtual ~TerminalFocusWatcher();

        virtual bool eventFilter (TQObject* watched, TQEvent* e);


    signals:
        void focusChanged();
};

#endif /* TERMINAL_FOCUS_WATCHER_H */