Make adding user tools possible.

Adding new categories is not there yet though, neither is moving tools
through the categories.
This commit is contained in:
con
2011-02-02 12:35:32 +01:00
parent 8cb7e30a15
commit 8cda869a15
5 changed files with 129 additions and 10 deletions

View File

@@ -193,6 +193,16 @@ QSharedPointer<ExternalTool> ExternalTool::preset() const
return m_presetTool;
}
void ExternalTool::setId(const QString &id)
{
m_id = id;
}
void ExternalTool::setCategory(const QString &category)
{
m_displayCategory = category;
}
void ExternalTool::setDisplayName(const QString &name)
{
m_displayName = name;