OSDN Git Service

ffc6fbae33a1c752029f01aba822f408c9b8d867
[qt-creator-jp/qt-creator-jp.git] / src / plugins / coreplugin / eventfilteringmainwindow.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "eventfilteringmainwindow.h"
35
36 #ifdef Q_OS_WIN
37 #include <windows.h>
38 #endif
39
40 #include <QtCore/QtDebug>
41 #include <QtCore/QEvent>
42 #include <QtCore/QCoreApplication>
43
44 namespace Core {
45 namespace Internal {
46
47 /* The notification signal is delayed by using a custom event
48  * as otherwise device removal is not detected properly
49  * (devices are still present in the registry. */
50
51 class DeviceNotifyEvent : public QEvent {
52 public:
53     explicit DeviceNotifyEvent(int id) : QEvent(static_cast<QEvent::Type>(id)) {}
54 };
55
56 EventFilteringMainWindow::EventFilteringMainWindow() :
57         m_deviceEventId(QEvent::registerEventType(QEvent::User + 2))
58 {
59 }
60
61 #ifdef Q_OS_WIN
62 bool EventFilteringMainWindow::event(QEvent *event)
63 {
64     if (event->type() == m_deviceEventId) {
65         event->accept();
66         emit deviceChange();
67         return true;
68     }
69     return QMainWindow::event(event);
70 }
71
72 bool EventFilteringMainWindow::winEvent(MSG *msg, long *result)
73 {
74     if (msg->message == WM_DEVICECHANGE) {
75         if (msg->wParam & 0x7 /* DBT_DEVNODES_CHANGED */) {
76             *result = TRUE;
77             QCoreApplication::postEvent(this, new DeviceNotifyEvent(m_deviceEventId));
78         }
79     }
80     return false;
81 }
82 #endif
83
84 } // namespace Internal
85 } // namespace Core
86