📄 qwseventdispatcher_glib.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qwseventdispatcher_glib_p.h"#include "qapplication.h"#include "qplatformdefs.h"#include "qapplication.h"#include "private/qwscommand_qws_p.h"#include "qwsdisplay_qws.h"#include "qwsevent_qws.h"#include "qwindowsystem_qws.h"#include <glib.h>// from qapplication_qws.cppextern QWSDisplay* qt_fbdpy; // QWS `display'//from qwindowsystem_qws.cppextern QList<QWSCommand*> *qt_get_server_queue();struct GQWSEventSource{ GSource source; QEventLoop::ProcessEventsFlags flags; QWSEventDispatcherGlib *q; QWSEventDispatcherGlibPrivate *d;};class QWSEventDispatcherGlibPrivate : public QEventDispatcherGlibPrivate{ Q_DECLARE_PUBLIC(QWSEventDispatcherGlib)public: QWSEventDispatcherGlibPrivate(); GQWSEventSource *qwsEventSource; QList<QWSEvent*> queuedUserInputEvents;};static gboolean qwsEventSourcePrepare(GSource *s, gint *timeout){ if (timeout) *timeout = -1; GQWSEventSource *source = reinterpret_cast<GQWSEventSource *>(s); return qt_fbdpy->eventPending() || !source->d->queuedUserInputEvents.isEmpty() || !qt_get_server_queue()->isEmpty() ;}static gboolean qwsEventSourceCheck(GSource *s){ GQWSEventSource *source = reinterpret_cast<GQWSEventSource *>(s); return qt_fbdpy->eventPending() || !source->d->queuedUserInputEvents.isEmpty() || !qt_get_server_queue()->isEmpty() ;}static gboolean qwsEventSourceDispatch(GSource *s, GSourceFunc callback, gpointer user_data){ GQWSEventSource *source = reinterpret_cast<GQWSEventSource *>(s); //??? ulong marker = XNextRequest(X11->display); do { QWSEvent *event; if (!(source->flags & QEventLoop::ExcludeUserInputEvents) && !source->d->queuedUserInputEvents.isEmpty()) { // process a pending user input event event = source->d->queuedUserInputEvents.takeFirst(); } else if (qt_fbdpy->eventPending()) { event = qt_fbdpy->getEvent(); if (source->flags & QEventLoop::ExcludeUserInputEvents) { // queue user input events if (event->type == QWSEvent::Mouse || event->type == QWSEvent::Key) { source->d->queuedUserInputEvents.append(event); continue; } } } else { // no event to process break; } // send through event filter if (source->q->filterEvent(event)) { delete event; continue; } bool ret = qApp->qwsProcessEvent(event) == 1; delete event; if (ret) { return true; } } while (qt_fbdpy->eventPending()); if (callback) callback(user_data); return true;}static GSourceFuncs qwsEventSourceFuncs = { qwsEventSourcePrepare, qwsEventSourceCheck, qwsEventSourceDispatch, NULL, NULL, NULL};QWSEventDispatcherGlibPrivate::QWSEventDispatcherGlibPrivate(){ qwsEventSource = reinterpret_cast<GQWSEventSource *>(g_source_new(&qwsEventSourceFuncs, sizeof(GQWSEventSource))); g_source_set_can_recurse(&qwsEventSource->source, true); qwsEventSource->flags = QEventLoop::AllEvents; qwsEventSource->q = 0; qwsEventSource->d = 0; g_source_attach(&qwsEventSource->source, mainContext);}QWSEventDispatcherGlib::QWSEventDispatcherGlib(QObject *parent) : QEventDispatcherGlib(*new QWSEventDispatcherGlibPrivate, parent){}QWSEventDispatcherGlib::~QWSEventDispatcherGlib(){ Q_D(QWSEventDispatcherGlib); g_source_destroy(&d->qwsEventSource->source); d->qwsEventSource = 0;}bool QWSEventDispatcherGlib::processEvents(QEventLoop::ProcessEventsFlags flags){ Q_D(QWSEventDispatcherGlib); QEventLoop::ProcessEventsFlags saved_flags = d->qwsEventSource->flags; d->qwsEventSource->flags = flags; bool returnValue = QEventDispatcherGlib::processEvents(flags); d->qwsEventSource->flags = saved_flags; return returnValue;}void QWSEventDispatcherGlib::startingUp(){ Q_D(QWSEventDispatcherGlib); d->qwsEventSource->q = this; d->qwsEventSource->d = d;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -