Files
Sourcetrail/src/lib/data/TaskShowStatusDialog.h
T
malte_langkabel 7b30ac18de logic: source groups for project settings
* project can not have multiple source groups with different types
* language of a project is now inferred from source groups
* setting global NameHierarchy delimiter of first sourceGroup in project
* added project settings migrations for source groups
* Add Settings Migration classes (MoveKey, DeleteKey, Lambda)
* Update sample projects with migrations
* added method to config to retrieve sublevel key names
* implemented recursive removing of keys in settings
* moved project files out of top level
* removed solution parsing code as it is not used anymore

fortune cookie message = The secret of getting ahead is getting started.
2017-03-31 16:11:37 +02:00

32 lines
682 B
C++

#ifndef TASK_SHOW_STATUS_DIALOG_H
#define TASK_SHOW_STATUS_DIALOG_H
#include <string>
#include "utility/scheduling/Task.h"
class DialogView;
class TaskShowStatusDialog
: public Task
{
public:
TaskShowStatusDialog(
const std::string& title,
const std::string& message
);
virtual ~TaskShowStatusDialog();
private:
virtual void doEnter(std::shared_ptr<Blackboard> blackboard);
virtual TaskState doUpdate(std::shared_ptr<Blackboard> blackboard);
virtual void doExit(std::shared_ptr<Blackboard> blackboard);
virtual void doReset(std::shared_ptr<Blackboard> blackboard);
const std::string m_title;
const std::string m_message;
};
#endif // TASK_SHOW_STATUS_DIALOG_H