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

26 lines
401 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 SERVERSTATUSPAGE_H
#define SERVERSTATUSPAGE_H
#include "tabPage.h"
2016-06-15 18:43:10 +12:00
class ServerStatusPage : public TabPage {
class Data;
Data *m_data;
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
ServerStatusPage(TWidget *parent);
~ServerStatusPage();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void configureNotify(const TDimension &size);
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 showServerInfo(const string &name);
2016-03-19 06:57:51 +13:00
};
#endif