#include "qshortcutmap_p.h"
#include "private/qobject_p.h"
#include "qkeysequence.h"
#include "qdebug.h"
#include "qevent.h"
#include "qwidget.h"
#include "qapplication.h"
#include "qvector.h"
#include "qmenu.h"
#include "qshortcut.h"
#include "qapplication_p.h"
#include <private/qaction_p.h>
#include <private/qkeymapper_p.h>
Include dependency graph for qshortcutmap.cpp:

Go to the source code of this file.
Classes | |
| struct | QShortcutEntry |
| class | QShortcutMapPrivate |
Functions | |
| QDebug & | operator<< (QDebug &dbg, const QShortcutEntry *se) |
| QDebug& operator<< | ( | QDebug & | dbg, | |
| const QShortcutEntry * | se | |||
| ) |
Definition at line 82 of file qshortcutmap.cpp.
References QShortcutEntry::autorepeat, QShortcutEntry::enabled, QShortcutEntry::id, QShortcutEntry::keyseq, QDebug::nospace(), QShortcutEntry::owner, and QDebug::space().
00082 { 00083 if (!se) 00084 return dbg << "QShortcutEntry(0x0)"; 00085 dbg.nospace() 00086 << "QShortcutEntry(" << se->keyseq 00087 << "), id(" << se->id << "), enabled(" << se->enabled << "), autorepeat(" << se->autorepeat 00088 << "), owner(" << se->owner << ")"; 00089 return dbg.space(); 00090 }
Here is the call graph for this function:

1.5.1