mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-09 18:44:46 +00:00
1006 lines
24 KiB
C++
1006 lines
24 KiB
C++
// Aseprite
|
|
// Copyright (C) 2001-2015 David Capello
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "app/ui/tabs.h"
|
|
|
|
#include "app/modules/gfx.h"
|
|
#include "app/modules/gui.h"
|
|
#include "app/ui/editor/editor_view.h"
|
|
#include "app/ui/skin/skin_theme.h"
|
|
#include "app/ui/skin/style.h"
|
|
#include "she/font.h"
|
|
#include "she/scoped_surface_lock.h"
|
|
#include "she/surface.h"
|
|
#include "she/system.h"
|
|
#include "ui/intern.h"
|
|
#include "ui/ui.h"
|
|
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
|
|
#define ANI_ADDING_TAB_TICKS 5
|
|
#define ANI_REMOVING_TAB_TICKS 10
|
|
#define ANI_REORDER_TABS_TICKS 5
|
|
|
|
#define HAS_ARROWS(tabs) ((m_button_left->getParent() == (tabs)))
|
|
|
|
namespace app {
|
|
|
|
using namespace app::skin;
|
|
using namespace ui;
|
|
|
|
WidgetType Tabs::Type()
|
|
{
|
|
static WidgetType type = kGenericWidget;
|
|
if (type == kGenericWidget)
|
|
type = register_widget_type();
|
|
return type;
|
|
}
|
|
|
|
Tabs::Tabs(TabsDelegate* delegate)
|
|
: Widget(Tabs::Type())
|
|
, m_border(2)
|
|
, m_docked(false)
|
|
, m_hot(nullptr)
|
|
, m_hotCloseButton(false)
|
|
, m_clickedCloseButton(false)
|
|
, m_selected(nullptr)
|
|
, m_delegate(delegate)
|
|
, m_removedTab(nullptr)
|
|
, m_isDragging(false)
|
|
, m_dragCopy(false)
|
|
, m_dragTab(nullptr)
|
|
, m_floatingTab(nullptr)
|
|
, m_floatingOverlay(nullptr)
|
|
, m_dropNewTab(nullptr)
|
|
, m_dropNewIndex(-1)
|
|
{
|
|
setDoubleBuffered(true);
|
|
initTheme();
|
|
|
|
SkinTheme* theme = static_cast<SkinTheme*>(getTheme());
|
|
m_tabsHeight = theme->dimensions.tabsHeight();
|
|
m_tabsBottomHeight = theme->dimensions.tabsBottomHeight();
|
|
setBgColor(theme->colors.windowFace());
|
|
}
|
|
|
|
Tabs::~Tabs()
|
|
{
|
|
m_removedTab.reset();
|
|
|
|
// Stop animation
|
|
stopAnimation();
|
|
|
|
// Remove all tabs
|
|
m_list.clear();
|
|
}
|
|
|
|
void Tabs::addTab(TabView* tabView, bool from_drop, int pos)
|
|
{
|
|
resetOldPositions();
|
|
if (!from_drop || m_list.empty())
|
|
startAnimation(ANI_ADDING_TAB, ANI_ADDING_TAB_TICKS);
|
|
else
|
|
startAnimation(ANI_REORDER_TABS, ANI_REORDER_TABS_TICKS);
|
|
|
|
TabPtr tab(new Tab(tabView));
|
|
if (pos < 0)
|
|
m_list.push_back(tab);
|
|
else
|
|
m_list.insert(m_list.begin()+pos, tab);
|
|
|
|
updateTabs();
|
|
|
|
tab->oldX = (from_drop ? m_dropNewPosX-tab->width/2: tab->x);
|
|
if (tab->oldX < 0)
|
|
tab->oldX = 0;
|
|
|
|
tab->oldWidth = tab->width;
|
|
tab->modified = (m_delegate ? m_delegate->isTabModified(this, tabView): false);
|
|
}
|
|
|
|
void Tabs::removeTab(TabView* tabView, bool with_animation)
|
|
{
|
|
TabPtr tab(getTabByView(tabView));
|
|
if (!tab)
|
|
return;
|
|
|
|
if (m_hot == tab)
|
|
m_hot.reset();
|
|
|
|
if (m_selected == tab) {
|
|
if (tab == m_list.back())
|
|
selectPreviousTab();
|
|
else
|
|
selectNextTab();
|
|
|
|
if (m_selected == tab)
|
|
m_selected.reset();
|
|
}
|
|
|
|
if (with_animation)
|
|
resetOldPositions();
|
|
|
|
TabsListIterator it =
|
|
std::find(m_list.begin(), m_list.end(), tab);
|
|
ASSERT(it != m_list.end() && "Removing a tab that is not part of the Tabs widget");
|
|
it = m_list.erase(it);
|
|
|
|
m_removedTab = tab;
|
|
|
|
if (with_animation) {
|
|
if (m_delegate)
|
|
tab->modified = m_delegate->isTabModified(this, tabView);
|
|
tab->view = nullptr; // The view will be destroyed after Tabs::removeTab() anyway
|
|
|
|
startAnimation(ANI_REMOVING_TAB, ANI_REMOVING_TAB_TICKS);
|
|
}
|
|
|
|
updateTabs();
|
|
}
|
|
|
|
void Tabs::updateTabs()
|
|
{
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
|
|
double availWidth = getBounds().w - m_border*ui::guiscale();
|
|
double defTabWidth = theme->dimensions.tabsWidth();
|
|
double tabWidth = defTabWidth;
|
|
if (tabWidth * m_list.size() > availWidth) {
|
|
tabWidth = availWidth / double(m_list.size());
|
|
tabWidth = MAX(4*ui::guiscale(), tabWidth);
|
|
}
|
|
double x = 0.0;
|
|
int i = 0;
|
|
|
|
for (auto& tab : m_list) {
|
|
if (tab == m_floatingTab && !m_dragCopy) {
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
if ((m_dropNewTab && m_dropNewIndex == i) ||
|
|
(m_dragTab && !m_floatingTab &&
|
|
m_dragCopy &&
|
|
m_dragCopyIndex == i)) {
|
|
x += tabWidth;
|
|
}
|
|
|
|
tab->text = tab->view->getTabText();
|
|
tab->icon = tab->view->getTabIcon();
|
|
tab->x = int(x);
|
|
tab->width = int(x+tabWidth) - int(x);
|
|
x += tabWidth;
|
|
++i;
|
|
}
|
|
|
|
calculateHot();
|
|
invalidate();
|
|
}
|
|
|
|
// Returns true if the user can select other tab.
|
|
bool Tabs::canSelectOtherTab() const
|
|
{
|
|
return (m_selected && !m_isDragging);
|
|
}
|
|
|
|
void Tabs::selectTab(TabView* tabView)
|
|
{
|
|
ASSERT(tabView != NULL);
|
|
|
|
TabPtr tab(getTabByView(tabView));
|
|
if (tab)
|
|
selectTabInternal(tab);
|
|
}
|
|
|
|
void Tabs::selectNextTab()
|
|
{
|
|
if (!m_selected)
|
|
return;
|
|
|
|
TabsListIterator currentTabIt = getTabIteratorByView(m_selected->view);
|
|
TabsListIterator it = currentTabIt;
|
|
if (it != m_list.end()) {
|
|
// If we are at the end of the list, cycle to the first tab.
|
|
if (it == --m_list.end())
|
|
it = m_list.begin();
|
|
// Go to next tab.
|
|
else
|
|
++it;
|
|
|
|
if (it != currentTabIt)
|
|
selectTabInternal(*it);
|
|
}
|
|
}
|
|
|
|
void Tabs::selectPreviousTab()
|
|
{
|
|
if (!m_selected)
|
|
return;
|
|
|
|
TabsListIterator currentTabIt = getTabIteratorByView(m_selected->view);
|
|
TabsListIterator it = currentTabIt;
|
|
if (it != m_list.end()) {
|
|
// If we are at the beginning of the list, cycle to the last tab.
|
|
if (it == m_list.begin())
|
|
it = --m_list.end();
|
|
// Go to previous tab.
|
|
else
|
|
--it;
|
|
|
|
if (it != currentTabIt)
|
|
selectTabInternal(*it);
|
|
}
|
|
}
|
|
|
|
TabView* Tabs::getSelectedTab()
|
|
{
|
|
if (m_selected)
|
|
return m_selected->view;
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
void Tabs::setDockedStyle()
|
|
{
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
|
|
|
|
m_docked = true;
|
|
m_tabsHeight = theme->dimensions.dockedTabsHeight();
|
|
m_tabsBottomHeight = 0;
|
|
|
|
setBgColor(theme->colors.workspace());
|
|
}
|
|
|
|
void Tabs::setDropViewPreview(const gfx::Point& pos, TabView* view)
|
|
{
|
|
int newIndex = -1;
|
|
|
|
if (!m_list.empty()) {
|
|
newIndex = (pos.x - getBounds().x) / m_list[0]->width;
|
|
newIndex = MID(0, newIndex, (int)m_list.size());
|
|
}
|
|
else
|
|
newIndex = 0;
|
|
|
|
bool startAni = (m_dropNewIndex != newIndex ||
|
|
m_dropNewTab != view);
|
|
|
|
m_dropNewIndex = newIndex;
|
|
m_dropNewPosX = (pos.x - getBounds().x);
|
|
m_dropNewTab = view;
|
|
|
|
if (startAni)
|
|
startReorderTabsAnimation();
|
|
else
|
|
invalidate();
|
|
}
|
|
|
|
void Tabs::removeDropViewPreview()
|
|
{
|
|
m_dropNewTab = nullptr;
|
|
|
|
startReorderTabsAnimation();
|
|
}
|
|
|
|
bool Tabs::onProcessMessage(Message* msg)
|
|
{
|
|
switch (msg->type()) {
|
|
|
|
case kMouseEnterMessage:
|
|
calculateHot();
|
|
return true;
|
|
|
|
case kMouseMoveMessage:
|
|
calculateHot();
|
|
|
|
if (hasCapture() && m_selected) {
|
|
MouseMessage* mouseMsg = static_cast<MouseMessage*>(msg);
|
|
gfx::Point mousePos = mouseMsg->position();
|
|
gfx::Point delta = mousePos - m_dragMousePos;
|
|
|
|
if (!m_isDragging) {
|
|
if (!m_clickedCloseButton && mouseMsg->left()) {
|
|
double dist = std::sqrt(delta.x*delta.x + delta.y*delta.y);
|
|
if (dist > 4.0/ui::guiscale())
|
|
startDrag();
|
|
}
|
|
}
|
|
// We are dragging a tab...
|
|
else {
|
|
// Floating tab (to create a new window)
|
|
if (!getBounds().contains(mousePos) &&
|
|
(ABS(delta.y) > 16*guiscale() ||
|
|
mousePos.x < getBounds().x-16*guiscale() ||
|
|
mousePos.x > getBounds().x2()+16*guiscale())) {
|
|
DropViewPreviewResult result = DropViewPreviewResult::FLOATING;
|
|
|
|
if (!m_floatingTab) {
|
|
resetOldPositions();
|
|
m_floatingTab = m_selected;
|
|
startRemoveDragTabAnimation();
|
|
}
|
|
|
|
if (m_delegate)
|
|
result = m_delegate->onFloatingTab(this, m_selected->view, mousePos);
|
|
|
|
if (result != DropViewPreviewResult::DROP_IN_TABS) {
|
|
if (!m_floatingOverlay)
|
|
createFloatingOverlay(m_selected.get());
|
|
m_floatingOverlay->moveOverlay(mousePos - m_floatingOffset);
|
|
}
|
|
else {
|
|
destroyFloatingOverlay();
|
|
}
|
|
}
|
|
else {
|
|
destroyFloatingTab();
|
|
|
|
if (m_delegate)
|
|
m_delegate->onDockingTab(this, m_selected->view);
|
|
}
|
|
|
|
// Docked tab
|
|
if (!m_floatingTab) {
|
|
m_dragTab->oldX = m_dragTab->x = m_dragTabX + delta.x;
|
|
updateDragTabIndexes(mousePos.x, false);
|
|
}
|
|
|
|
invalidate();
|
|
}
|
|
}
|
|
return true;
|
|
|
|
case kMouseLeaveMessage:
|
|
if (m_hot) {
|
|
m_hot.reset();
|
|
invalidate();
|
|
}
|
|
return true;
|
|
|
|
case kMouseDownMessage:
|
|
if (m_hot && !hasCapture()) {
|
|
MouseMessage* mouseMsg = static_cast<MouseMessage*>(msg);
|
|
m_dragMousePos = mouseMsg->position();
|
|
m_floatingOffset = mouseMsg->position() -
|
|
(getBounds().getOrigin() + getTabBounds(m_hot.get()).getOrigin());
|
|
|
|
if (m_hotCloseButton) {
|
|
if (!m_clickedCloseButton) {
|
|
m_clickedCloseButton = true;
|
|
invalidate();
|
|
}
|
|
}
|
|
else if (mouseMsg->left()) {
|
|
selectTabInternal(m_hot);
|
|
}
|
|
|
|
captureMouse();
|
|
}
|
|
return true;
|
|
|
|
case kMouseUpMessage:
|
|
if (hasCapture()) {
|
|
MouseMessage* mouseMsg = static_cast<MouseMessage*>(msg);
|
|
|
|
releaseMouse();
|
|
|
|
if (!m_isDragging) {
|
|
if ((mouseMsg->middle()) ||
|
|
(mouseMsg->left() && m_hotCloseButton && m_clickedCloseButton)) {
|
|
if (m_hot && m_delegate)
|
|
m_delegate->onCloseTab(this, m_hot->view);
|
|
}
|
|
else if (mouseMsg->right() && m_hot) {
|
|
if (m_delegate)
|
|
m_delegate->onContextMenuTab(this, m_hot->view);
|
|
}
|
|
|
|
if (m_clickedCloseButton) {
|
|
m_clickedCloseButton = false;
|
|
invalidate();
|
|
}
|
|
}
|
|
else {
|
|
DropTabResult result = DropTabResult::NOT_HANDLED;
|
|
|
|
if (m_delegate) {
|
|
ASSERT(m_selected);
|
|
result = m_delegate->onDropTab(
|
|
this, m_selected->view,
|
|
mouseMsg->position(), m_dragCopy);
|
|
}
|
|
|
|
stopDrag(result);
|
|
}
|
|
}
|
|
return true;
|
|
|
|
case kMouseWheelMessage:
|
|
if (!m_isDragging) {
|
|
int dz =
|
|
(static_cast<MouseMessage*>(msg)->wheelDelta().x +
|
|
static_cast<MouseMessage*>(msg)->wheelDelta().y);
|
|
|
|
auto it = std::find(m_list.begin(), m_list.end(), m_selected);
|
|
if (it != m_list.end()) {
|
|
int index = (it - m_list.begin());
|
|
int newIndex = index + dz;
|
|
newIndex = MID(0, newIndex, int(m_list.size())-1);
|
|
if (newIndex != index) {
|
|
selectTabInternal(m_list[newIndex]);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
break;
|
|
|
|
case kKeyDownMessage:
|
|
case kKeyUpMessage: {
|
|
TabPtr tab = (m_isDragging ? m_dragTab: m_hot);
|
|
|
|
bool oldDragCopy = m_dragCopy;
|
|
m_dragCopy = ((msg->ctrlPressed() || msg->altPressed()) &&
|
|
(tab && m_delegate && m_delegate->canCloneTab(this, tab->view)));
|
|
|
|
if (oldDragCopy != m_dragCopy) {
|
|
updateDragTabIndexes(get_mouse_position().x, true);
|
|
updateMouseCursor();
|
|
}
|
|
break;
|
|
}
|
|
|
|
case kSetCursorMessage:
|
|
updateMouseCursor();
|
|
return true;
|
|
|
|
}
|
|
|
|
return Widget::onProcessMessage(msg);
|
|
}
|
|
|
|
void Tabs::onPaint(PaintEvent& ev)
|
|
{
|
|
Graphics* g = ev.getGraphics();
|
|
gfx::Rect rect = getClientBounds();
|
|
gfx::Rect box(rect.x, rect.y, rect.w,
|
|
m_tabsHeight - m_tabsBottomHeight);
|
|
|
|
g->fillRect(getBgColor(), g->getClipBounds());
|
|
|
|
if (!m_docked)
|
|
drawFiller(g, box);
|
|
|
|
// For each tab...
|
|
for (TabPtr& tab : m_list) {
|
|
if (tab == m_floatingTab && !m_dragCopy)
|
|
continue;
|
|
|
|
box = getTabBounds(tab.get());
|
|
|
|
// The m_dragTab is drawn after all other regular tabs.
|
|
if ((!m_dragTab) ||
|
|
(tab->view != m_dragTab->view) ||
|
|
(m_dragCopy)) {
|
|
int dy = 0;
|
|
if (animation() == ANI_ADDING_TAB && tab == m_selected) {
|
|
double t = animationTime();
|
|
dy = int(box.h - box.h * t);
|
|
}
|
|
|
|
drawTab(g, box, tab.get(), dy,
|
|
(tab == m_hot),
|
|
(tab == m_selected));
|
|
}
|
|
|
|
box.x = box.x2();
|
|
}
|
|
|
|
// Draw deleted tab
|
|
if (animation() == ANI_REMOVING_TAB && m_removedTab) {
|
|
m_removedTab->width = 0;
|
|
box = getTabBounds(m_removedTab.get());
|
|
drawTab(g, box, m_removedTab.get(), 0,
|
|
(m_removedTab == m_floatingTab),
|
|
(m_removedTab == m_floatingTab));
|
|
}
|
|
|
|
// Tab that is being dragged. It's drawn here so it appears at the
|
|
// front of all other tabs.
|
|
if (m_dragTab && !m_floatingTab) {
|
|
TabPtr tab(m_dragTab);
|
|
box = getTabBounds(tab.get());
|
|
drawTab(g, box, tab.get(), 0, true, true);
|
|
}
|
|
|
|
// New tab from other Tab that want to be dropped here.
|
|
if (m_dropNewTab) {
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
|
|
Tab newTab(m_dropNewTab);
|
|
|
|
newTab.width = newTab.oldWidth =
|
|
(!m_list.empty() ? m_list[0]->width:
|
|
theme->dimensions.tabsWidth());
|
|
|
|
newTab.x = newTab.oldX =
|
|
m_dropNewPosX - newTab.width/2;
|
|
|
|
box = getTabBounds(&newTab);
|
|
drawTab(g, box, &newTab, 0, true, true);
|
|
}
|
|
}
|
|
|
|
void Tabs::onResize(ResizeEvent& ev)
|
|
{
|
|
setBoundsQuietly(ev.getBounds());
|
|
updateTabs();
|
|
}
|
|
|
|
void Tabs::onPreferredSize(PreferredSizeEvent& ev)
|
|
{
|
|
ev.setPreferredSize(gfx::Size(0, m_tabsHeight));
|
|
}
|
|
|
|
void Tabs::selectTabInternal(TabPtr& tab)
|
|
{
|
|
if (m_selected != tab) {
|
|
m_selected = tab;
|
|
makeTabVisible(tab.get());
|
|
invalidate();
|
|
}
|
|
|
|
if (m_delegate)
|
|
m_delegate->onSelectTab(this, tab->view);
|
|
}
|
|
|
|
void Tabs::drawTab(Graphics* g, const gfx::Rect& _box,
|
|
Tab* tab, int dy, bool hover, bool selected)
|
|
{
|
|
gfx::Rect box = _box;
|
|
if (box.w < ui::guiscale()*8)
|
|
box.w = ui::guiscale()*8;
|
|
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
|
|
int clipTextRightSide;
|
|
|
|
gfx::Rect closeBox = getTabCloseButtonBounds(tab, box);
|
|
if (closeBox.isEmpty())
|
|
clipTextRightSide = 4*ui::guiscale();
|
|
else {
|
|
closeBox.y += dy;
|
|
clipTextRightSide = closeBox.w;
|
|
}
|
|
|
|
skin::Style::State state;
|
|
if (selected) state += skin::Style::active();
|
|
if (hover) state += skin::Style::hover();
|
|
|
|
// Tab without text
|
|
theme->styles.tab()->paint(g,
|
|
gfx::Rect(box.x, box.y+dy, box.w, box.h),
|
|
nullptr, state);
|
|
|
|
{
|
|
IntersectClip clip(g, gfx::Rect(box.x, box.y+dy, box.w-clipTextRightSide, box.h));
|
|
|
|
// Tab icon
|
|
TabIcon icon = tab->icon;
|
|
int dx = 0;
|
|
switch (icon) {
|
|
case TabIcon::NONE:
|
|
break;
|
|
case TabIcon::HOME:
|
|
{
|
|
theme->styles.tabHome()->paint(g,
|
|
gfx::Rect(
|
|
box.x,
|
|
box.y+dy,
|
|
box.x-dx,
|
|
box.h),
|
|
nullptr, state);
|
|
dx += theme->dimensions.tabsIconWidth();
|
|
}
|
|
break;
|
|
}
|
|
|
|
// Tab with text + clipping the close button
|
|
if (box.w > 8*ui::guiscale()) {
|
|
theme->styles.tabText()->paint(g,
|
|
gfx::Rect(box.x+dx, box.y+dy, box.w-dx, box.h),
|
|
tab->text.c_str(), state);
|
|
}
|
|
}
|
|
|
|
// Tab bottom part
|
|
if (!m_docked)
|
|
theme->styles.tabBottom()->paint(g,
|
|
gfx::Rect(box.x, box.y2(), box.w, getBounds().y2()-box.y2()),
|
|
nullptr, state);
|
|
|
|
// Close button
|
|
if (!closeBox.isEmpty()) {
|
|
skin::Style* style = theme->styles.tabCloseIcon();
|
|
|
|
if (m_delegate) {
|
|
if (tab->view)
|
|
tab->modified = m_delegate->isTabModified(this, tab->view);
|
|
|
|
if (tab->modified &&
|
|
(!hover || !m_hotCloseButton)) {
|
|
style = theme->styles.tabModifiedIcon();
|
|
}
|
|
}
|
|
|
|
state = skin::Style::State();
|
|
if (hover && m_hotCloseButton) {
|
|
state += skin::Style::hover();
|
|
if (selected)
|
|
state += skin::Style::active();
|
|
if (m_clickedCloseButton)
|
|
state += skin::Style::clicked();
|
|
}
|
|
else if (selected)
|
|
state += skin::Style::active();
|
|
|
|
style->paint(g, closeBox, nullptr, state);
|
|
}
|
|
}
|
|
|
|
void Tabs::drawFiller(ui::Graphics* g, const gfx::Rect& box)
|
|
{
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
|
|
gfx::Rect rect = getClientBounds();
|
|
skin::Style::State state;
|
|
|
|
theme->styles.tabFiller()->paint(g,
|
|
gfx::Rect(box.x, box.y, rect.x2()-box.x, box.h), nullptr, state);
|
|
|
|
theme->styles.tabBottom()->paint(g,
|
|
gfx::Rect(box.x, box.y2(), rect.x2()-box.x, rect.y2()-box.y2()), nullptr, state);
|
|
}
|
|
|
|
Tabs::TabsListIterator Tabs::getTabIteratorByView(TabView* tabView)
|
|
{
|
|
TabsListIterator it, end = m_list.end();
|
|
|
|
for (it = m_list.begin(); it != end; ++it) {
|
|
if ((*it)->view == tabView)
|
|
break;
|
|
}
|
|
|
|
return it;
|
|
}
|
|
|
|
Tabs::TabPtr Tabs::getTabByView(TabView* tabView)
|
|
{
|
|
TabsListIterator it = getTabIteratorByView(tabView);
|
|
if (it != m_list.end())
|
|
return TabPtr(*it);
|
|
else
|
|
return TabPtr(nullptr);
|
|
}
|
|
|
|
void Tabs::makeTabVisible(Tab* thisTab)
|
|
{
|
|
updateTabs();
|
|
}
|
|
|
|
void Tabs::calculateHot()
|
|
{
|
|
if (m_isDragging)
|
|
return;
|
|
|
|
gfx::Rect rect = getBounds();
|
|
gfx::Rect box(rect.x+m_border*guiscale(), rect.y, 0, rect.h-1);
|
|
gfx::Point mousePos = ui::get_mouse_position();
|
|
TabPtr hot(nullptr);
|
|
bool hotCloseButton = false;
|
|
|
|
// For each tab
|
|
for (TabPtr& tab : m_list) {
|
|
if (tab == m_floatingTab)
|
|
continue;
|
|
|
|
box.w = tab->width;
|
|
|
|
if (box.contains(mousePos)) {
|
|
hot = tab;
|
|
hotCloseButton = getTabCloseButtonBounds(tab.get(), box).contains(mousePos);
|
|
break;
|
|
}
|
|
|
|
box.x += box.w;
|
|
}
|
|
|
|
if (m_hot != hot ||
|
|
m_hotCloseButton != hotCloseButton) {
|
|
m_hot = hot;
|
|
m_hotCloseButton = hotCloseButton;
|
|
|
|
if (m_delegate)
|
|
m_delegate->onMouseOverTab(this, m_hot ? m_hot->view: NULL);
|
|
|
|
invalidate();
|
|
}
|
|
}
|
|
|
|
gfx::Rect Tabs::getTabCloseButtonBounds(Tab* tab, const gfx::Rect& box)
|
|
{
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
|
|
int iconW = theme->dimensions.tabsCloseIconWidth();
|
|
int iconH = theme->dimensions.tabsCloseIconHeight();
|
|
|
|
if (box.w-iconW > 32*ui::guiscale() || tab == m_selected.get())
|
|
return gfx::Rect(box.x2()-iconW, box.y+box.h/2-iconH/2, iconW, iconH);
|
|
else
|
|
return gfx::Rect();
|
|
}
|
|
|
|
void Tabs::resetOldPositions()
|
|
{
|
|
for (TabPtr& tab : m_list) {
|
|
if (tab == m_floatingTab)
|
|
continue;
|
|
|
|
tab->oldX = tab->x;
|
|
tab->oldWidth = tab->width;
|
|
}
|
|
}
|
|
|
|
void Tabs::resetOldPositions(double t)
|
|
{
|
|
for (TabPtr& tab : m_list) {
|
|
if (tab == m_floatingTab)
|
|
continue;
|
|
|
|
ASSERT(tab->x != 0xfefefefe);
|
|
ASSERT(tab->width != 0xfefefefe);
|
|
ASSERT(tab->oldX != 0xfefefefe);
|
|
ASSERT(tab->oldWidth != 0xfefefefe);
|
|
|
|
tab->oldX = int(inbetween(tab->oldX, tab->x, t));
|
|
tab->oldWidth = int(inbetween(tab->oldWidth, tab->width, t));
|
|
}
|
|
}
|
|
|
|
void Tabs::onAnimationFrame()
|
|
{
|
|
invalidate();
|
|
}
|
|
|
|
void Tabs::onAnimationStop(int animation)
|
|
{
|
|
if (m_list.empty()) {
|
|
Widget* root = getRoot();
|
|
if (root)
|
|
root->layout();
|
|
}
|
|
}
|
|
|
|
void Tabs::startDrag()
|
|
{
|
|
ASSERT(m_selected);
|
|
|
|
updateTabs();
|
|
|
|
m_isDragging = true;
|
|
m_dragCopy = false;
|
|
m_dragTab.reset(new Tab(m_selected->view));
|
|
m_dragTab->oldX = m_dragTab->x = m_dragTabX = m_selected->x;
|
|
m_dragTab->oldWidth = m_dragTab->width = m_selected->width;
|
|
|
|
m_dragTabIndex =
|
|
m_dragCopyIndex = std::find(m_list.begin(), m_list.end(), m_selected) - m_list.begin();
|
|
|
|
EditorView::SetScrollUpdateMethod(EditorView::KeepCenter);
|
|
}
|
|
|
|
void Tabs::stopDrag(DropTabResult result)
|
|
{
|
|
m_isDragging = false;
|
|
ASSERT(m_dragTab);
|
|
|
|
switch (result) {
|
|
|
|
case DropTabResult::NOT_HANDLED:
|
|
case DropTabResult::DONT_REMOVE: {
|
|
destroyFloatingTab();
|
|
|
|
bool localCopy = false;
|
|
if (result == DropTabResult::NOT_HANDLED &&
|
|
m_dragTab && m_dragCopy && m_delegate) {
|
|
ASSERT(m_dragCopyIndex >= 0);
|
|
|
|
m_delegate->onCloneTab(this, m_dragTab->view, m_dragCopyIndex);
|
|
|
|
// To animate the new tab created by onCloneTab() from the
|
|
// m_dragTab position.
|
|
m_list[m_dragCopyIndex]->oldX = m_dragTab->x;
|
|
m_list[m_dragCopyIndex]->oldWidth = m_dragTab->width;
|
|
localCopy = true;
|
|
}
|
|
|
|
m_dragCopy = false;
|
|
m_dragCopyIndex = -1;
|
|
|
|
startReorderTabsAnimation();
|
|
|
|
if (m_selected && m_dragTab && !localCopy) {
|
|
if (result == DropTabResult::NOT_HANDLED) {
|
|
// To animate m_selected tab from the m_dragTab position
|
|
// when we drop the tab in the same Tabs (with no copy)
|
|
m_selected->oldX = m_dragTab->x;
|
|
m_selected->oldWidth = m_dragTab->width;
|
|
}
|
|
else {
|
|
ASSERT(result == DropTabResult::DONT_REMOVE);
|
|
|
|
// In this case the tab was copied to other Tabs, so we
|
|
// avoid any kind of animation for the m_selected (it stays
|
|
// were it's).
|
|
m_selected->oldX = m_selected->x;
|
|
m_selected->oldWidth = m_selected->width;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
case DropTabResult::REMOVE:
|
|
m_floatingTab.reset();
|
|
m_removedTab.reset();
|
|
m_dragCopy = false;
|
|
m_dragCopyIndex = -1;
|
|
destroyFloatingTab();
|
|
|
|
ASSERT(m_dragTab.get());
|
|
if (m_dragTab)
|
|
removeTab(m_dragTab->view, false);
|
|
break;
|
|
|
|
}
|
|
|
|
m_dragTab.reset();
|
|
|
|
EditorView::SetScrollUpdateMethod(EditorView::KeepOrigin);
|
|
}
|
|
|
|
gfx::Rect Tabs::getTabBounds(Tab* tab)
|
|
{
|
|
gfx::Rect rect = getClientBounds();
|
|
gfx::Rect box(rect.x, rect.y, rect.w, m_tabsHeight - m_tabsBottomHeight);
|
|
int startX = m_border*guiscale();
|
|
double t = animationTime();
|
|
|
|
if (animation() == ANI_NONE) {
|
|
box.x = startX + tab->x;
|
|
box.w = tab->width;
|
|
}
|
|
else {
|
|
ASSERT(tab->x != 0xfefefefe);
|
|
ASSERT(tab->width != 0xfefefefe);
|
|
ASSERT(tab->oldX != 0xfefefefe);
|
|
ASSERT(tab->oldWidth != 0xfefefefe);
|
|
|
|
box.x = startX + int(inbetween(tab->oldX, tab->x, t));
|
|
box.w = int(inbetween(tab->oldWidth, tab->width, t));
|
|
}
|
|
|
|
return box;
|
|
}
|
|
|
|
void Tabs::startReorderTabsAnimation()
|
|
{
|
|
resetOldPositions(animationTime());
|
|
updateTabs();
|
|
startAnimation(ANI_REORDER_TABS, ANI_REORDER_TABS_TICKS);
|
|
}
|
|
|
|
void Tabs::startRemoveDragTabAnimation()
|
|
{
|
|
m_removedTab.reset();
|
|
updateTabs();
|
|
startAnimation(ANI_REMOVING_TAB, ANI_REMOVING_TAB_TICKS);
|
|
}
|
|
|
|
void Tabs::createFloatingOverlay(Tab* tab)
|
|
{
|
|
ASSERT(!m_floatingOverlay);
|
|
|
|
she::Surface* surface = she::instance()->createRgbaSurface(
|
|
tab->width, m_tabsHeight);
|
|
|
|
// Fill the surface with pink color
|
|
{
|
|
she::ScopedSurfaceLock lock(surface);
|
|
lock->fillRect(gfx::rgba(255, 0, 255), gfx::Rect(0, 0, surface->width(), surface->height()));
|
|
}
|
|
{
|
|
Graphics g(surface, 0, 0);
|
|
g.setFont(getFont());
|
|
drawTab(&g, g.getClipBounds(), tab, 0, true, true);
|
|
}
|
|
// Make pink parts transparent (TODO remove this hack when we change the back-end to Skia)
|
|
{
|
|
she::ScopedSurfaceLock lock(surface);
|
|
|
|
for (int y=0; y<surface->height(); ++y)
|
|
for (int x=0; x<surface->width(); ++x) {
|
|
gfx::Color c = lock->getPixel(x, y);
|
|
c = (c != gfx::rgba(255, 0, 255) ? gfx::seta(c, 255): gfx::ColorNone);
|
|
lock->putPixel(c, x, y);
|
|
}
|
|
}
|
|
|
|
m_floatingOverlay.reset(new Overlay(surface, gfx::Point(), Overlay::MouseZOrder-1));
|
|
OverlayManager::instance()->addOverlay(m_floatingOverlay.get());
|
|
}
|
|
|
|
void Tabs::destroyFloatingTab()
|
|
{
|
|
destroyFloatingOverlay();
|
|
|
|
if (m_floatingTab) {
|
|
TabPtr tab(m_floatingTab);
|
|
m_floatingTab.reset();
|
|
|
|
resetOldPositions();
|
|
startAnimation(ANI_ADDING_TAB, ANI_ADDING_TAB_TICKS);
|
|
updateTabs();
|
|
|
|
tab->oldX = tab->x;
|
|
tab->oldWidth = 0;
|
|
}
|
|
}
|
|
|
|
void Tabs::destroyFloatingOverlay()
|
|
{
|
|
if (m_floatingOverlay) {
|
|
OverlayManager::instance()->removeOverlay(m_floatingOverlay.get());
|
|
m_floatingOverlay.reset();
|
|
}
|
|
}
|
|
|
|
void Tabs::updateMouseCursor()
|
|
{
|
|
if (m_dragCopy)
|
|
ui::set_mouse_cursor(kArrowPlusCursor);
|
|
else
|
|
ui::set_mouse_cursor(kArrowCursor);
|
|
}
|
|
|
|
void Tabs::updateDragTabIndexes(int mouseX, bool startAni)
|
|
{
|
|
if (m_dragTab) {
|
|
int i = (mouseX - m_border*guiscale() - getBounds().x) / m_dragTab->width;
|
|
|
|
if (m_dragCopy) {
|
|
i = MID(0, i, int(m_list.size()));
|
|
if (i != m_dragCopyIndex) {
|
|
m_dragCopyIndex = i;
|
|
startAni = true;
|
|
}
|
|
}
|
|
else if (hasMouseOver()) {
|
|
i = MID(0, i, int(m_list.size())-1);
|
|
if (i != m_dragTabIndex) {
|
|
m_list.erase(m_list.begin()+m_dragTabIndex);
|
|
m_list.insert(m_list.begin()+i, m_selected);
|
|
m_dragTabIndex = i;
|
|
startAni = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (startAni)
|
|
startReorderTabsAnimation();
|
|
}
|
|
|
|
} // namespace app
|