Skip to content
Snippets Groups Projects
Commit 4bbe36b1 authored by Daniel Teske's avatar Daniel Teske
Browse files

Make TaskMarks that have no icon invisible


Change-Id: I145af259369ed8f2f98a2c9cc2ce4998e2e97938
Reviewed-by: default avatarTobias Hunger <tobias.hunger@nokia.com>
parent b267027c
No related branches found
No related tags found
No related merge requests found
......@@ -41,14 +41,16 @@ using namespace ProjectExplorer;
class TaskMark : public TextEditor::BaseTextMark
{
public:
TaskMark(unsigned int id, const QString &fileName, int lineNumber)
: BaseTextMark(fileName, lineNumber), m_id(id)
TaskMark(unsigned int id, const QString &fileName, int lineNumber, bool visible)
: BaseTextMark(fileName, lineNumber), m_id(id), m_visible(visible)
{}
void updateLineNumber(int lineNumber);
void removedFromEditor();
bool visible() const;
private:
unsigned int m_id;
bool m_visible;
};
void TaskMark::updateLineNumber(int lineNumber)
......@@ -61,6 +63,11 @@ void TaskMark::removedFromEditor()
ProjectExplorerPlugin::instance()->taskHub()->updateTaskLineNumber(m_id, -1);
}
bool TaskMark::visible() const
{
return m_visible;
}
TaskHub::TaskHub()
: m_errorIcon(QLatin1String(":/projectexplorer/images/compile_error.png")),
m_warningIcon(QLatin1String(":/projectexplorer/images/compile_warning.png"))
......@@ -82,7 +89,8 @@ void TaskHub::addCategory(const Core::Id &categoryId, const QString &displayName
void TaskHub::addTask(Task task)
{
if (task.line != -1 && !task.file.isEmpty()) {
TaskMark *mark = new TaskMark(task.taskId, task.file.toString(), task.line);
bool visible = (task.type == Task::Warning || task.type == Task::Error);
TaskMark *mark = new TaskMark(task.taskId, task.file.toString(), task.line, visible);
mark->setIcon(taskTypeIcon(task.type));
mark->setPriority(TextEditor::ITextMark::HighPriority);
task.addMark(mark);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment