* added option to create a Coati project from a Maven POM file * show list of indexed file paths in maven project setup * use FileManager to detect indexed files in project setup (except cdb) * added Maven path to preferences window and added path detectors. * fixed: QtDialogView::hideStatusDialog now also hides loader in status bar. * refactored ProjectType fortune cookie message = If you continually give, you will continually have.
34 lines
767 B
C++
34 lines
767 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,
|
|
std::shared_ptr<DialogView> dialogView
|
|
);
|
|
|
|
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;
|
|
std::shared_ptr<DialogView> m_dialogView;
|
|
};
|
|
|
|
#endif // TASK_SHOW_STATUS_DIALOG_H
|