1// Aseprite
2// Copyright (C) 2001-2015 David Capello
3//
4// This program is distributed under the terms of
5// the End-User License Agreement for Aseprite.
6
7#ifndef APP_UI_WORKSPACE_TABS_H_INCLUDED
8#define APP_UI_WORKSPACE_TABS_H_INCLUDED
9#pragma once
10
11#include "app/ui/tabs.h"
12
13namespace app {
14 class WorkspacePanel;
15
16 class WorkspaceTabs : public Tabs {
17 public:
18 ui::WidgetType Type();
19
20 WorkspaceTabs(TabsDelegate* tabsDelegate);
21 ~WorkspaceTabs();
22
23 WorkspacePanel* panel() const { return m_panel; }
24 void setPanel(WorkspacePanel* panel);
25
26 private:
27 WorkspacePanel* m_panel;
28 };
29
30} // namespace app
31
32#endif
33