##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QShortcutEvent.cpp
24 lines | 665 B | text/x-c | CppLexer
#include "PythonQtWrapper_QShortcutEvent.h"
#include <QVariant>
#include <qkeysequence.h>
QShortcutEvent* PythonQtWrapper_QShortcutEvent::new_QShortcutEvent(const QKeySequence& key, int id, bool ambiguous)
{
return new QShortcutEvent(key, id, ambiguous); }
bool PythonQtWrapper_QShortcutEvent::isAmbiguous(QShortcutEvent* theWrappedObject) const
{
return theWrappedObject->isAmbiguous();
}
const QKeySequence& PythonQtWrapper_QShortcutEvent::key(QShortcutEvent* theWrappedObject) const
{
return theWrappedObject->key();
}
int PythonQtWrapper_QShortcutEvent::shortcutId(QShortcutEvent* theWrappedObject) const
{
return theWrappedObject->shortcutId();
}