Searched refs:QObject (Results 1 – 25 of 58) sorted by relevance
123
/glogg/glogg/src/ |
H A D | signalmux.h |
|
H A D | signalmux.cpp |
|
H A D | quickfindmux.h |
|
H A D | externalcom.h |
|
H A D | menuactiontooltipbehavior.cpp |
|
H A D | menuactiontooltipbehavior.h |
|
H A D | dbusexternalcom.h |
|
H A D | dbuscontrol.h |
|
H A D | filewatcher.h |
|
H A D | quickfind.h |
|
H A D | viewtools.h |
|
/glogg/src/ |
H A D | signalmux.h | 53 class QObject; variable 71 void connect(QObject *sender, const char *signal, const char *slot); 72 void disconnect(QObject *sender, const char *signal, const char *slot); 74 void connect(const char *signal, QObject *receiver, const char *slot); 75 void disconnect(const char *signal, QObject *receiver, const char *slot); 78 void setCurrentDocument( QObject* current_document ); 82 QPointer<QObject> source; 83 QPointer<QObject> sink; 93 QPointer<QObject> currentDocument_;
|
H A D | signalmux.cpp | 33 void SignalMux::connect( QObject *sender, in connect() 47 void SignalMux::disconnect( QObject *sender, in disconnect() 54 { return ((QObject*)c.source == sender) && (c.sink == nullptr) && in disconnect() 71 QObject* receiver, const char* slot ) in connect() 85 QObject* receiver, const char *slot ) in disconnect() 91 { return ((QObject*)c.sink == receiver) && (c.source == nullptr) && in disconnect() 106 void SignalMux::setCurrentDocument( QObject* current_document ) in setCurrentDocument() 136 QObject::connect( connection.source, connection.signal, in connect() 142 QObject::connect( currentDocument_, connection.signal, in connect() 160 QObject::disconnect( connection.source, connection.signal, in disconnect() [all …]
|
H A D | quickfindmux.h | 53 std::vector<QObject*> getAllSearchables() const in getAllSearchables() 57 virtual std::vector<QObject*> doGetAllSearchables() const = 0; 66 class QuickFindMux : public QObject 134 std::vector<QObject*> registeredSearchables_; 137 void registerSearchable( QObject* searchable );
|
H A D | externalcom.h | 46 class ExternalCommunicator : public QObject 51 ExternalCommunicator() : QObject() {} in ExternalCommunicator()
|
H A D | menuactiontooltipbehavior.cpp | 34 QObject *parent = 0) in MenuActionToolTipBehavior() 35 : QObject(parent), in MenuActionToolTipBehavior() 59 QObject::timerEvent(event); in timerEvent()
|
H A D | menuactiontooltipbehavior.h | 34 class MenuActionToolTipBehavior : public QObject 40 QObject *parent);
|
H A D | dbusexternalcom.h | 42 class DBusInterfaceExternalCommunicator : public QObject 47 DBusInterfaceExternalCommunicator() : QObject() {} in DBusInterfaceExternalCommunicator()
|
H A D | dbuscontrol.h | 4 class DBusControl : public QObject {
|
H A D | filewatcher.h | 27 class FileWatcher : public QObject {
|
H A D | quickfind.h | 39 class SearchingNotifier : public QObject 72 class QuickFind : public QObject
|
H A D | viewtools.h | 30 class ElasticHook : public QObject {
|
/glogg/glogg/tests/ |
H A D | testlogdata.h |
|
H A D | testlogfiltereddata.h |
|
/glogg/tests/ |
H A D | testlogdata.h | 5 class TestLogData: public QObject
|
123