New Appointment -> New Task
[kdepim.git] / ktimetracker / focusdetector.h
blob35da1b8a42f2b6a84a197355562a914c1fd6a51b
1 /*
2 * Copyright (C) 2007 by René Mérou <ochominutosdearco@gmail.com>
3 * 2007 the ktimetracker developers
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the
17 * Free Software Foundation, Inc.
18 * 51 Franklin Street, Fifth Floor
19 * Boston, MA 02110-1301 USA.
23 #ifndef KTIMETRACKER_FOCUS_DETECTOR_H
24 #define KTIMETRACKER_FOCUS_DETECTOR_H
26 #include <kwindowsystem.h>
27 #include <QObject>
29 #include <config-ktimetracker.h> // HAVE_LIBXSS
31 class QTimer;
33 /**
34 Keep track of what window has the focus.
36 class FocusDetector : public QObject
38 Q_OBJECT
40 public:
41 /**
42 Initializes the time period
44 FocusDetector();
46 public slots:
47 void slotfocuschanged();
49 Q_SIGNALS:
50 void newFocus( const QString & );
53 #endif // KTIMETRACKER_FOCUS_DETECTOR_H