tahoma2d/toonz/sources/toonzfarm/tfarmclient/taskstatuspage.h

27 lines
430 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TASKSTATUSPAGE_H
#define TASKSTATUSPAGE_H
#include "tabPage.h"
2016-06-15 18:43:10 +12:00
class TaskStatusPage : public TabPage {
class Data;
Data *m_data;
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TaskStatusPage(TWidget *parent);
~TaskStatusPage();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void configureNotify(const TDimension &size);
void rightButtonDown(const TMouseEvent &e);
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void onActivate();
void onDeactivate();
void update();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void showTaskInfo(const string &id);
2016-03-19 06:57:51 +13:00
};
#endif