mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
removed mac cruft
This commit is contained in:
parent
21e490984f
commit
5910c30b80
3 changed files with 0 additions and 101 deletions
|
@ -33,8 +33,6 @@
|
|||
#include "kglobalaccel_x11.h"
|
||||
#include <QX11Info>
|
||||
#include <QApplication>
|
||||
#elif defined(Q_WS_MACX)
|
||||
#include "kglobalaccel_mac.h"
|
||||
#else
|
||||
#include "kglobalaccel_qws.h"
|
||||
#endif
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
/* This file is part of the KDE libraries
|
||||
Copyright (C) 2001,2002 Ellis Whitehead <ellis@kde.org>
|
||||
Copyright (C) 2006 Marijn Kruisselbrink <m.kruisselbrink@student.tue.nl>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; see the file COPYING.LIB. If not, write to
|
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "kglobalaccel_mac.h"
|
||||
|
||||
#include <kdebug.h>
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
/* This file is part of the KDE libraries
|
||||
Copyright (C) 2006 Marijn Kruisselbrink <m.kruisselbrink@student.tue.nl>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; see the file COPYING.LIB. If not, write to
|
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef _KGLOBALACCEL_MAC_H
|
||||
#define _KGLOBALACCEL_MAC_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "kshortcut.h"
|
||||
/* including kglobalaccel.h here because Carbon.h includes AssertMacros.h which
|
||||
defines check(assertion) as nothing and breaks compilation */
|
||||
#include "kglobalaccel.h"
|
||||
|
||||
#include <Carbon/Carbon.h>
|
||||
|
||||
template <class Key, class T> class QMap;
|
||||
template <class T> class QList;
|
||||
|
||||
class GlobalShortcutsRegistry;
|
||||
class KGlobalAccelImpl: public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
KGlobalAccelImpl(GlobalShortcutsRegistry* owner);
|
||||
~KGlobalAccelImpl();
|
||||
|
||||
public:
|
||||
/**
|
||||
* This function registers or unregisters a certain key for global capture,
|
||||
* depending on \b grab.
|
||||
*
|
||||
* Before destruction, every grabbed key will be released, so this
|
||||
* object does not need to do any tracking.
|
||||
*
|
||||
* \param key the Qt keycode to grab or release.
|
||||
* \param grab true to grab they key, false to release the key.
|
||||
*
|
||||
* \return true if successful, otherwise false.
|
||||
*/
|
||||
bool grabKey(int key, bool grab);
|
||||
|
||||
/// Enable/disable all shortcuts. There will not be any grabbed shortcuts at this point.
|
||||
void setEnabled(bool);
|
||||
|
||||
void keyboardLayoutChanged();
|
||||
private:
|
||||
friend OSStatus hotKeyEventHandler(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData);
|
||||
/// Called by the carbon event handler when a key is pressed.
|
||||
bool keyPressed(int key);
|
||||
|
||||
GlobalShortcutsRegistry* m_owner;
|
||||
EventTargetRef m_eventTarget;
|
||||
EventHandlerUPP m_eventHandler;
|
||||
EventTypeSpec m_eventType[2];
|
||||
EventHandlerRef m_curHandler;
|
||||
QMap<int, QList<EventHotKeyRef> >* refs;
|
||||
};
|
||||
|
||||
#endif // _KGLOBALACCEL_MAC_H
|
Loading…
Add table
Reference in a new issue