KDEUI
kmodifierkeyinfo.cpp
Go to the documentation of this file.
00001 /* 00002 Copyright 2009 Michael Leupold <lemma@confuego.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Lesser General Public 00006 License as published by the Free Software Foundation; either 00007 version 2.1 of the License, or (at your option) version 3, or any 00008 later version accepted by the membership of KDE e.V. (or its 00009 successor approved by the membership of KDE e.V.), which shall 00010 act as a proxy defined in Section 6 of version 3 of the license. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public 00018 License along with this library. If not, see <http://www.gnu.org/licenses/>. 00019 */ 00020 00021 #include "kmodifierkeyinfo.h" 00022 #include "kmodifierkeyinfoprovider_p.h" 00023 00024 KModifierKeyInfo::KModifierKeyInfo(QObject *parent) 00025 : QObject(parent), p(new KModifierKeyInfoProvider) 00026 { 00027 connect(p, SIGNAL(keyPressed(Qt::Key, bool)), this, SIGNAL(keyPressed(Qt::Key, bool))); 00028 connect(p, SIGNAL(keyLatched(Qt::Key, bool)), this, SIGNAL(keyLatched(Qt::Key, bool))); 00029 connect(p, SIGNAL(keyLocked(Qt::Key, bool)), this, SIGNAL(keyLocked(Qt::Key, bool))); 00030 connect(p, SIGNAL(buttonPressed(Qt::MouseButton, bool)), 00031 this, SIGNAL(buttonPressed(Qt::MouseButton, bool))); 00032 connect(p, SIGNAL(keyAdded(Qt::Key)), this, SIGNAL(keyAdded(Qt::Key))); 00033 connect(p, SIGNAL(keyRemoved(Qt::Key)), this, SIGNAL(keyRemoved(Qt::Key))); 00034 } 00035 00036 KModifierKeyInfo::~KModifierKeyInfo() 00037 { 00038 delete p; 00039 } 00040 00041 bool KModifierKeyInfo::knowsKey(Qt::Key key) const 00042 { 00043 return p->knowsKey(key); 00044 } 00045 00046 const QList<Qt::Key> KModifierKeyInfo::knownKeys() const 00047 { 00048 return p->knownKeys(); 00049 } 00050 00051 bool KModifierKeyInfo::isKeyPressed(Qt::Key key) const 00052 { 00053 return p->isKeyPressed(key); 00054 } 00055 00056 bool KModifierKeyInfo::isKeyLatched(Qt::Key key) const 00057 { 00058 return p->isKeyLatched(key); 00059 } 00060 00061 bool KModifierKeyInfo::setKeyLatched(Qt::Key key, bool latched) 00062 { 00063 return p->setKeyLatched(key, latched); 00064 } 00065 00066 bool KModifierKeyInfo::isKeyLocked(Qt::Key key) const 00067 { 00068 return p->isKeyLocked(key); 00069 } 00070 00071 bool KModifierKeyInfo::setKeyLocked(Qt::Key key, bool locked) 00072 { 00073 return p->setKeyLocked(key, locked); 00074 } 00075 00076 bool KModifierKeyInfo::isButtonPressed(Qt::MouseButton button) const 00077 { 00078 return p->isButtonPressed(button); 00079 } 00080 00081 #include "kmodifierkeyinfo.moc"
KDE 4.6 API Reference