aseprite/src/app/ui/status_bar.cpp

554 lines
13 KiB
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// 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.
2007-09-19 07:57:02 +08:00
#ifdef HAVE_CONFIG_H
2007-09-19 07:57:02 +08:00
#include "config.h"
#endif
#include "app/app.h"
#include "app/commands/commands.h"
#include "app/commands/params.h"
#include "app/context_access.h"
#include "app/document_access.h"
#include "app/document_range.h"
#include "app/modules/editors.h"
#include "app/modules/gfx.h"
#include "app/modules/gui.h"
#include "app/modules/palettes.h"
#include "app/settings/settings.h"
#include "app/tools/tool.h"
#include "app/ui/button_set.h"
#include "app/ui/color_button.h"
#include "app/ui/editor/editor.h"
#include "app/ui/keyboard_shortcuts.h"
#include "app/ui/main_window.h"
#include "app/ui/skin/skin_theme.h"
#include "app/ui/status_bar.h"
#include "app/ui/timeline.h"
#include "app/ui_context.h"
#include "app/util/range_utils.h"
#include "base/bind.h"
#include "doc/cel.h"
#include "doc/image.h"
#include "doc/layer.h"
#include "doc/sprite.h"
#include "gfx/size.h"
#include "she/font.h"
#include "she/surface.h"
#include "ui/ui.h"
2007-09-19 07:57:02 +08:00
#include <algorithm>
#include <cstdarg>
#include <cstdio>
#include <cstring>
namespace app {
using namespace app::skin;
using namespace gfx;
using namespace ui;
using namespace doc;
2014-04-14 00:51:28 +08:00
static const char* kStatusBarText = "status_bar_text";
static const char* kStatusBarFace = "status_bar_face";
class StatusBar::CustomizedTipWindow : public ui::TipWindow {
public:
CustomizedTipWindow(const char* text)
: ui::TipWindow(text)
{
}
void setInterval(int msecs)
{
if (!m_timer)
m_timer.reset(new ui::Timer(msecs, this));
else
m_timer->setInterval(msecs);
}
void startTimer()
{
m_timer->start();
}
protected:
bool onProcessMessage(Message* msg);
private:
base::UniquePtr<ui::Timer> m_timer;
};
2007-09-19 07:57:02 +08:00
static void slider_change_hook(Slider* slider);
2007-09-19 07:57:02 +08:00
static WidgetType statusbar_type()
{
static WidgetType type = kGenericWidget;
if (type == kGenericWidget)
type = register_widget_type();
return type;
}
// This widget is used to show the current frame.
class GotoFrameEntry : public Entry {
public:
GotoFrameEntry() : Entry(4, "") {
}
bool onProcessMessage(Message* msg) override {
switch (msg->type()) {
// When the mouse enter in this entry, it got the focus and the
// text is automatically selected.
case kMouseEnterMessage:
requestFocus();
selectText(0, -1);
break;
case kKeyDownMessage: {
KeyMessage* keymsg = static_cast<KeyMessage*>(msg);
KeyScancode scancode = keymsg->scancode();
2015-02-12 23:16:25 +08:00
if (scancode == kKeyEnter || // TODO customizable keys
scancode == kKeyEnterPad) {
Command* cmd = CommandsModule::instance()->getCommandByName(CommandId::GotoFrame);
Params params;
int frame = getTextInt();
if (frame > 0) {
params.set("frame", getText().c_str());
UIContext::instance()->executeCommand(cmd, params);
}
// Select the text again
selectText(0, -1);
return true; // Key used.
}
break;
}
}
return Entry::onProcessMessage(msg);
}
};
StatusBar* StatusBar::m_instance = NULL;
StatusBar::StatusBar()
: Widget(statusbar_type())
, m_color(app::Color::fromMask())
2007-09-19 07:57:02 +08:00
{
m_instance = this;
setDoubleBuffered(true);
2014-04-14 00:51:28 +08:00
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
setBgColor(theme->getColorById(kStatusBarFace));
this->setFocusStop(true);
2007-09-19 07:57:02 +08:00
m_timeout = 0;
m_state = SHOW_TEXT;
m_tipwindow = NULL;
2007-09-19 07:57:02 +08:00
// The extra pixel in left and right borders are necessary so
// m_commandsBox and m_movePixelsBox do not overlap the upper-left
// and upper-right pixels drawn in onPaint() event (see putpixels)
setBorder(gfx::Border(1*guiscale(), 0, 1*guiscale(), 0));
2007-09-19 07:57:02 +08:00
// Construct the commands box
{
2011-01-25 06:48:09 +08:00
Box* box1 = new Box(JI_HORIZONTAL);
Box* box2 = new Box(JI_HORIZONTAL | JI_HOMOGENEOUS);
Box* box4 = new Box(JI_HORIZONTAL);
m_slider = new Slider(0, 255, 255);
m_currentFrame = new GotoFrameEntry();
m_newFrame = new Button("+");
m_newFrame->Click.connect(Bind<void>(&StatusBar::newFrame, this));
setup_mini_look(m_currentFrame);
setup_mini_look(m_newFrame);
setup_mini_look(m_slider);
m_slider->Change.connect(Bind<void>(&slider_change_hook, m_slider));
m_slider->setMinSize(gfx::Size(ui::display_w()/5, 0));
box1->setBorder(gfx::Border(2, 1, 2, 2)*guiscale());
box4->addChild(m_currentFrame);
box4->addChild(m_newFrame);
box1->addChild(box4);
box1->addChild(m_slider);
m_commandsBox = box1;
addChild(m_commandsBox);
m_commandsBox->setVisible(false);
}
2010-07-24 07:01:52 +08:00
App::instance()->CurrentToolChange.connect(&StatusBar::onCurrentToolChange, this);
}
2007-09-19 07:57:02 +08:00
StatusBar::~StatusBar()
{
for (Progress* bar : m_progress)
delete bar;
delete m_tipwindow; // widget
delete m_commandsBox;
2007-09-19 07:57:02 +08:00
}
void StatusBar::onCurrentToolChange()
2007-09-19 07:57:02 +08:00
{
if (isVisible()) {
tools::Tool* currentTool = UIContext::instance()->settings()->getCurrentTool();
if (currentTool) {
showTool(500, currentTool);
setTextf("%s Selected", currentTool->getText().c_str());
}
}
2007-09-19 07:57:02 +08:00
}
void StatusBar::clearText()
{
setStatusText(1, "");
}
bool StatusBar::setStatusText(int msecs, const char *format, ...)
2007-09-19 07:57:02 +08:00
{
// TODO this call should be in an observer of the "current frame" property changes.
updateCurrentFrame(current_editor);
if ((ui::clock() > m_timeout) || (msecs > 0)) {
char buf[256]; // TODO warning buffer overflow
2007-09-19 07:57:02 +08:00
va_list ap;
va_start(ap, format);
vsprintf(buf, format, ap);
va_end(ap);
2007-09-19 07:57:02 +08:00
m_timeout = ui::clock() + msecs;
m_state = SHOW_TEXT;
setText(buf);
invalidate();
return true;
2007-09-19 07:57:02 +08:00
}
else
return false;
2007-09-19 07:57:02 +08:00
}
void StatusBar::showTip(int msecs, const char *format, ...)
2007-09-19 07:57:02 +08:00
{
char buf[256]; // TODO warning buffer overflow
va_list ap;
int x, y;
va_start(ap, format);
vsprintf(buf, format, ap);
va_end(ap);
if (m_tipwindow == NULL) {
m_tipwindow = new CustomizedTipWindow(buf);
}
else {
m_tipwindow->setText(buf);
}
m_tipwindow->setInterval(msecs);
if (m_tipwindow->isVisible())
m_tipwindow->closeWindow(NULL);
2012-07-09 10:24:42 +08:00
m_tipwindow->openWindow();
m_tipwindow->remapWindow();
x = getBounds().x2() - m_tipwindow->getBounds().w;
y = getBounds().y - m_tipwindow->getBounds().h;
m_tipwindow->positionWindow(x, y);
m_tipwindow->startTimer();
// Set the text in status-bar (with inmediate timeout)
m_timeout = ui::clock();
setText(buf);
invalidate();
}
void StatusBar::showColor(int msecs, const char* text, const app::Color& color, int alpha)
{
if (setStatusText(msecs, text)) {
m_state = SHOW_COLOR;
m_color = color;
m_alpha = alpha;
}
}
void StatusBar::showTool(int msecs, tools::Tool* tool)
{
ASSERT(tool != NULL);
// Tool name
std::string text = tool->getText();
// Tool shortcut
Key* key = KeyboardShortcuts::instance()->tool(tool);
if (key && !key->accels().empty()) {
text += ", Shortcut: ";
text += key->accels().front().toString();
}
// Set text
if (setStatusText(msecs, text.c_str())) {
// Show tool
m_state = SHOW_TOOL;
m_tool = tool;
}
}
//////////////////////////////////////////////////////////////////////
// Progress bars stuff
Progress* StatusBar::addProgress()
{
Progress* progress = new Progress(this);
m_progress.push_back(progress);
invalidate();
return progress;
2007-09-19 07:57:02 +08:00
}
void StatusBar::removeProgress(Progress* progress)
2007-09-19 07:57:02 +08:00
{
ASSERT(progress->m_statusbar == this);
2007-09-19 07:57:02 +08:00
ProgressList::iterator it = std::find(m_progress.begin(), m_progress.end(), progress);
ASSERT(it != m_progress.end());
m_progress.erase(it);
invalidate();
2007-09-19 07:57:02 +08:00
}
Progress::Progress(StatusBar* statusbar)
: m_statusbar(statusbar)
, m_pos(0.0f)
2007-09-19 07:57:02 +08:00
{
}
Progress::~Progress()
2007-09-19 07:57:02 +08:00
{
if (m_statusbar) {
m_statusbar->removeProgress(this);
m_statusbar = NULL;
}
}
2007-09-19 07:57:02 +08:00
void Progress::setPos(double pos)
{
if (m_pos != pos) {
m_pos = pos;
m_statusbar->invalidate();
}
}
double Progress::getPos() const
{
return m_pos;
}
//////////////////////////////////////////////////////////////////////
// StatusBar message handler
void StatusBar::onResize(ResizeEvent& ev)
{
setBoundsQuietly(ev.getBounds());
Border border = getBorder();
Rect rc = ev.getBounds();
int w = rc.w/2 - border.getSize().w;
rc.x += w + border.left();
rc.w = w;
m_currentFrame->setVisible(w > 250*ui::guiscale());
m_newFrame->setVisible(w > 250*ui::guiscale());
m_slider->setVisible(w > 200*ui::guiscale());
m_commandsBox->setBounds(rc);
}
2012-09-27 05:34:52 +08:00
void StatusBar::onPreferredSize(PreferredSizeEvent& ev)
{
int s = 4*guiscale() + getTextHeight() + 4*guiscale();
2012-09-27 05:34:52 +08:00
ev.setPreferredSize(Size(s, s));
}
void StatusBar::onPaint(ui::PaintEvent& ev)
{
SkinTheme* theme = static_cast<SkinTheme*>(this->getTheme());
gfx::Color textColor = theme->getColorById(kStatusBarText);
Rect rc = getClientBounds();
Graphics* g = ev.getGraphics();
2014-04-14 00:51:28 +08:00
g->fillRect(getBgColor(), rc);
rc.shrink(Border(2, 1, 2, 2)*guiscale());
int x = rc.x + 4*guiscale();
// Color
if (m_state == SHOW_COLOR) {
// Draw eyedropper icon
she::Surface* icon = theme->get_toolicon("eyedropper");
if (icon) {
g->drawRgbaSurface(icon, x, rc.y + rc.h/2 - icon->height()/2);
x += icon->width() + 4*guiscale();
}
// Draw color
draw_color_button(g, gfx::Rect(x, rc.y, 32*guiscale(), rc.h),
m_color, false, false);
x += (32+4)*guiscale();
// Draw color description
std::string str = m_color.toHumanReadableString(app_get_current_pixel_format(),
app::Color::LongHumanReadableString);
if (m_alpha < 255) {
char buf[256];
sprintf(buf, " \xCE\xB1%d", m_alpha);
str += buf;
}
g->drawString(str, textColor, ColorNone,
gfx::Point(x, rc.y + rc.h/2 - getFont()->height()/2));
x += getFont()->textLength(str.c_str()) + 4*guiscale();
}
// Show tool
if (m_state == SHOW_TOOL) {
// Draw eyedropper icon
she::Surface* icon = theme->get_toolicon(m_tool->getId().c_str());
if (icon) {
g->drawRgbaSurface(icon, x, rc.y + rc.h/2 - icon->height()/2);
x += icon->width() + 4*guiscale();
}
}
// Status bar text
if (getTextLength() > 0) {
g->drawString(getText(), textColor, ColorNone,
gfx::Point(x, rc.y + rc.h/2 - getFont()->height()/2));
x += getFont()->textLength(getText().c_str()) + 4*guiscale();
}
// Draw progress bar
if (!m_progress.empty()) {
int width = 64;
int x = rc.x2() - (width+4);
for (ProgressList::iterator it = m_progress.begin(); it != m_progress.end(); ++it) {
Progress* progress = *it;
theme->paintProgressBar(g,
gfx::Rect(x, rc.y, width, rc.h),
progress->getPos());
x -= width+4;
}
}
}
void StatusBar::updateUsingEditor(Editor* editor)
{
updateFromDocument(editor);
updateCurrentFrame(editor);
}
bool StatusBar::CustomizedTipWindow::onProcessMessage(Message* msg)
{
switch (msg->type()) {
case kTimerMessage:
closeWindow(NULL);
break;
}
return ui::TipWindow::onProcessMessage(msg);
}
static void slider_change_hook(Slider* slider)
2007-09-19 07:57:02 +08:00
{
try {
ContextWriter writer(UIContext::instance());
DocumentRange range = App::instance()->getMainWindow()->getTimeline()->range();
if (range.enabled()) {
for (Cel* cel : get_unique_cels(writer.sprite(), range))
cel->setOpacity(slider->getValue());
2007-09-19 07:57:02 +08:00
}
else {
Cel* cel = writer.cel();
if (cel) {
// Update the opacity
cel->setOpacity(slider->getValue());
}
}
// Update the editors
update_screen_for_document(writer.document());
2007-09-19 07:57:02 +08:00
}
catch (LockedDocumentException&) {
// do nothing
}
2007-09-19 07:57:02 +08:00
}
void StatusBar::updateFromDocument(Editor* editor)
2007-09-19 07:57:02 +08:00
{
try {
if (editor && editor->document()) {
const DocumentReader reader(editor->document());
m_commandsBox->setVisible(true);
// Cel opacity
const Cel* cel;
if (editor->sprite()->supportAlpha() &&
editor->layer() &&
editor->layer()->isImage() &&
!editor->layer()->isBackground() &&
(cel = editor->layer()->cel(editor->frame()))) {
m_slider->setValue(MID(0, cel->opacity(), 255));
m_slider->setEnabled(true);
}
else {
m_slider->setValue(255);
m_slider->setEnabled(false);
}
}
else {
m_commandsBox->setVisible(false);
}
2007-09-19 07:57:02 +08:00
}
catch (LockedDocumentException&) {
// Disable all
m_slider->setEnabled(false);
2007-09-19 07:57:02 +08:00
}
}
void StatusBar::updateCurrentFrame(Editor* editor)
{
if (editor && editor->sprite())
m_currentFrame->setTextf("%d", editor->frame()+1);
}
void StatusBar::newFrame()
{
Command* cmd = CommandsModule::instance()->getCommandByName(CommandId::NewFrame);
UIContext::instance()->executeCommand(cmd);
updateCurrentFrame(current_editor);
}
} // namespace app