tahoma2d/toonz/sources/include/tw/controlpanel.h

41 lines
734 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 TNZ_TW_CONTROL_PANEL_INCLUDED
#define TNZ_TW_CONTROL_PANEL_INCLUDED
#include "tw/tw.h"
#undef DVAPI
#undef DVVAR
#ifdef TWIN_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
2016-06-15 18:43:10 +12:00
class DVAPI TControlPanel : public TWidget {
class Layout;
Layout *m_layout;
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TControlPanel(TWidget *parent, string name = "control panel");
~TControlPanel();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void beginRow(Alignment align = BEGIN);
void endRow();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void add(TWidget *w, bool canResize = false);
void addSeparator(string title = "");
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void setTab(int x);
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void draw();
void configureNotify(const TDimension &d);
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
TDimension getMinimumSize();
2016-03-19 06:57:51 +13:00
};
#endif