ui: search view autocompletion

- Implemented autocompletion for the QtSearchView.
- Added: MessageFinishedParsing that will be dispatched by the Project after the parsing step is done.
- Moved the initial MessageActivateToken from the Project to the Application.
- Added getNamesForNodesWithNamePrefix() to GraphAccess.
This commit is contained in:
malte_langkabel
2014-07-07 11:25:46 +02:00
parent a70a9009cc
commit c02767362f
18 changed files with 162 additions and 11 deletions
@@ -17,7 +17,6 @@ public:
return "MessageActivateToken";
}
public:
const Id tokenId;
};
@@ -0,0 +1,19 @@
#ifndef MESSAGE_FINISHED_PARSING_H
#define MESSAGE_FINISHED_PARSING_H
#include "utility/messaging/Message.h"
class MessageFinishedParsing: public Message<MessageFinishedParsing>
{
public:
MessageFinishedParsing()
{
}
static const std::string getStaticType()
{
return "MessageFinishedParsing";
}
};
#endif // MESSAGE_FINISHED_PARSING_H