mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-04 01:21:10 +00:00
Add support for pinch gesture on palette view
This commit is contained in:
parent
a19a834c4d
commit
268cfa3a46
@ -186,15 +186,15 @@ app::Color PaletteView::getColorByPosition(const gfx::Point& pos)
|
|||||||
|
|
||||||
int PaletteView::getBoxSize() const
|
int PaletteView::getBoxSize() const
|
||||||
{
|
{
|
||||||
return m_boxsize / guiscale();
|
return int(m_boxsize) / guiscale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PaletteView::setBoxSize(int boxsize)
|
void PaletteView::setBoxSize(double boxsize)
|
||||||
{
|
{
|
||||||
m_boxsize = MID(4, boxsize, 32)*guiscale();
|
m_boxsize = MID(4.0, boxsize, 32.0)*guiscale();
|
||||||
|
|
||||||
if (m_delegate)
|
if (m_delegate)
|
||||||
m_delegate->onPaletteViewChangeSize(m_boxsize / guiscale());
|
m_delegate->onPaletteViewChangeSize(int(m_boxsize) / guiscale());
|
||||||
|
|
||||||
View* view = View::getView(this);
|
View* view = View::getView(this);
|
||||||
if (view)
|
if (view)
|
||||||
@ -411,6 +411,11 @@ bool PaletteView::onProcessMessage(Message* msg)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case kTouchMagnifyMessage: {
|
||||||
|
setBoxSize(m_boxsize + m_boxsize * static_cast<ui::TouchMessage*>(msg)->magnification());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return Widget::onProcessMessage(msg);
|
return Widget::onProcessMessage(msg);
|
||||||
@ -475,14 +480,14 @@ void PaletteView::onPaint(ui::PaintEvent& ev)
|
|||||||
case FgBgColors:
|
case FgBgColors:
|
||||||
if (fgIndex == i) {
|
if (fgIndex == i) {
|
||||||
gfx::Color neg = color_utils::blackandwhite_neg(gfxColor);
|
gfx::Color neg = color_utils::blackandwhite_neg(gfxColor);
|
||||||
for (int i=0; i<m_boxsize/2; ++i)
|
for (int i=0; i<int(m_boxsize/2); ++i)
|
||||||
g->drawHLine(neg, box.x, box.y+i, m_boxsize/2-i);
|
g->drawHLine(neg, box.x, box.y+i, m_boxsize/2-i);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bgIndex == i) {
|
if (bgIndex == i) {
|
||||||
gfx::Color neg = color_utils::blackandwhite_neg(gfxColor);
|
gfx::Color neg = color_utils::blackandwhite_neg(gfxColor);
|
||||||
for (int i=0; i<m_boxsize/4; ++i)
|
for (int i=0; i<int(m_boxsize/4); ++i)
|
||||||
g->drawHLine(neg, box.x+box.w-(i+1), box.y+box.h-m_boxsize/4+i, i+1);
|
g->drawHLine(neg, box.x+box.w-(i+1), box.y+box.h-int(m_boxsize/4)+i, i+1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (transparentIndex == i)
|
if (transparentIndex == i)
|
||||||
@ -582,7 +587,7 @@ void PaletteView::onResize(ui::ResizeEvent& ev)
|
|||||||
if (view) {
|
if (view) {
|
||||||
int columns =
|
int columns =
|
||||||
(view->viewportBounds().w-this->childSpacing()*2)
|
(view->viewportBounds().w-this->childSpacing()*2)
|
||||||
/ (m_boxsize+this->childSpacing());
|
/ (int(m_boxsize)+this->childSpacing());
|
||||||
setColumns(MAX(1, columns));
|
setColumns(MAX(1, columns));
|
||||||
}
|
}
|
||||||
m_isUpdatingColumns = false;
|
m_isUpdatingColumns = false;
|
||||||
@ -602,8 +607,8 @@ void PaletteView::onSizeHint(ui::SizeHintEvent& ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
gfx::Size sz;
|
gfx::Size sz;
|
||||||
sz.w = border().width() + cols*m_boxsize + (cols-1)*childSpacing();
|
sz.w = border().width() + cols*int(m_boxsize) + (cols-1)*childSpacing();
|
||||||
sz.h = border().height() + rows*m_boxsize + (rows-1)*childSpacing();
|
sz.h = border().height() + rows*int(m_boxsize) + (rows-1)*childSpacing();
|
||||||
|
|
||||||
ev.setSizeHint(sz);
|
ev.setSizeHint(sz);
|
||||||
}
|
}
|
||||||
@ -629,18 +634,18 @@ void PaletteView::update_scroll(int color)
|
|||||||
d = div(currentPalette()->size(), m_columns);
|
d = div(currentPalette()->size(), m_columns);
|
||||||
cols = m_columns;
|
cols = m_columns;
|
||||||
|
|
||||||
y = (m_boxsize+childSpacing()) * (color / cols);
|
y = (int(m_boxsize)+childSpacing()) * (color / cols);
|
||||||
x = (m_boxsize+childSpacing()) * (color % cols);
|
x = (int(m_boxsize)+childSpacing()) * (color % cols);
|
||||||
|
|
||||||
if (scroll.x > x)
|
if (scroll.x > x)
|
||||||
scroll.x = x;
|
scroll.x = x;
|
||||||
else if (scroll.x+vp.w-m_boxsize-2 < x)
|
else if (scroll.x+vp.w-int(m_boxsize)-2 < x)
|
||||||
scroll.x = x-vp.w+m_boxsize+2;
|
scroll.x = x-vp.w+int(m_boxsize)+2;
|
||||||
|
|
||||||
if (scroll.y > y)
|
if (scroll.y > y)
|
||||||
scroll.y = y;
|
scroll.y = y;
|
||||||
else if (scroll.y+vp.h-m_boxsize-2 < y)
|
else if (scroll.y+vp.h-int(m_boxsize)-2 < y)
|
||||||
scroll.y = y-vp.h+m_boxsize+2;
|
scroll.y = y-vp.h+int(m_boxsize)+2;
|
||||||
|
|
||||||
view->setViewScroll(scroll);
|
view->setViewScroll(scroll);
|
||||||
}
|
}
|
||||||
@ -662,9 +667,9 @@ gfx::Rect PaletteView::getPaletteEntryBounds(int index) const
|
|||||||
int row = index / cols;
|
int row = index / cols;
|
||||||
|
|
||||||
return gfx::Rect(
|
return gfx::Rect(
|
||||||
bounds.x + border().left() + col*(m_boxsize+childSpacing()),
|
bounds.x + border().left() + col*(int(m_boxsize)+childSpacing()),
|
||||||
bounds.y + border().top() + row*(m_boxsize+childSpacing()),
|
bounds.y + border().top() + row*(int(m_boxsize)+childSpacing()),
|
||||||
m_boxsize, m_boxsize);
|
int(m_boxsize), int(m_boxsize));
|
||||||
}
|
}
|
||||||
|
|
||||||
PaletteView::Hit PaletteView::hitTest(const gfx::Point& pos)
|
PaletteView::Hit PaletteView::hitTest(const gfx::Point& pos)
|
||||||
@ -716,8 +721,8 @@ PaletteView::Hit PaletteView::hitTest(const gfx::Point& pos)
|
|||||||
}
|
}
|
||||||
|
|
||||||
gfx::Rect box = getPaletteEntryBounds(0);
|
gfx::Rect box = getPaletteEntryBounds(0);
|
||||||
box.w = (m_boxsize+childSpacing());
|
box.w = (int(m_boxsize)+childSpacing());
|
||||||
box.h = (m_boxsize+childSpacing());
|
box.h = (int(m_boxsize)+childSpacing());
|
||||||
|
|
||||||
int colsLimit = m_columns;
|
int colsLimit = m_columns;
|
||||||
if (m_state == State::DRAGGING_OUTLINE)
|
if (m_state == State::DRAGGING_OUTLINE)
|
||||||
|
@ -74,7 +74,7 @@ namespace app {
|
|||||||
app::Color getColorByPosition(const gfx::Point& pos) override;
|
app::Color getColorByPosition(const gfx::Point& pos) override;
|
||||||
|
|
||||||
int getBoxSize() const;
|
int getBoxSize() const;
|
||||||
void setBoxSize(int boxsize);
|
void setBoxSize(double boxsize);
|
||||||
|
|
||||||
void clearSelection();
|
void clearSelection();
|
||||||
void cutToClipboard();
|
void cutToClipboard();
|
||||||
@ -147,7 +147,7 @@ namespace app {
|
|||||||
PaletteViewStyle m_style;
|
PaletteViewStyle m_style;
|
||||||
PaletteViewDelegate* m_delegate;
|
PaletteViewDelegate* m_delegate;
|
||||||
int m_columns;
|
int m_columns;
|
||||||
int m_boxsize;
|
double m_boxsize;
|
||||||
int m_currentEntry;
|
int m_currentEntry;
|
||||||
int m_rangeAnchor;
|
int m_rangeAnchor;
|
||||||
doc::PalettePicks m_selectedEntries;
|
doc::PalettePicks m_selectedEntries;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user