2 * Copyright (C) 2007 by Mathias Soeken <msoeken@tzi.de>
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_NOTIFIER_H
24 #define KTIMETRACKER_FOCUS_DETECTOR_NOTIFIER_H
32 Manages the FocusDetector for multiple TaskView instances, so only
33 one timer is used for all.
35 It starts and stops the timer when the list of taskviews is changing, so
36 the timer has to be stopped only iff there is no taskview left.
38 class FocusDetectorNotifier
: public QObject
43 virtual ~FocusDetectorNotifier();
44 static FocusDetectorNotifier
*instance();
47 void attach( TaskView
*view
);
48 void detach( TaskView
*view
);
50 FocusDetector
*focusDetector() const;
53 explicit FocusDetectorNotifier( QObject
*parent
= 0 );
54 static FocusDetectorNotifier
*mInstance
;
62 #endif // KTIMETRACKER_FOCUS_DETECTOR_NOTIFIER_H