Merge branch 'master' into tilemap-editor

This commit is contained in:
David Capello 2020-06-17 23:02:01 -03:00
commit 81b6a99c2c
36 changed files with 161 additions and 111 deletions

2
laf

@ -1 +1 @@
Subproject commit 9c6ecadd9cbcfd2b87b7cfa61e01466013da3797
Subproject commit e1fb70a069c6482be282bf6f6d9190e3a0def14a

View File

@ -539,7 +539,7 @@ App::~App()
m_instance = NULL;
}
catch (const std::exception& e) {
LOG(ERROR) << "APP: Error: " << e.what() << "\n";
LOG(ERROR, "APP: Error: %s\n", e.what());
os::error_message(e.what());
// no re-throw

View File

@ -1,4 +1,5 @@
// Aseprite
// Copyright (C) 2020 Igara Studio S.A.
// Copyright (C) 2001-2016 David Capello
//
// This program is distributed under the terms of
@ -184,7 +185,7 @@ AppBrushes::AppBrushes()
load(fn);
}
catch (const std::exception& ex) {
LOG(ERROR) << "BRSH: Error loading user brushes: " << ex.what() << "\n";
LOG(ERROR, "BRSH: Error loading user brushes: %s\n", ex.what());
}
}

View File

@ -1,4 +1,5 @@
// Aseprite
// Copyright (C) 2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -14,6 +15,7 @@
#include "ui/timer.h"
#include "updater/check_update.h"
#include <atomic>
#include <memory>
namespace app {
@ -47,7 +49,7 @@ namespace app {
std::unique_ptr<base::thread> m_thread;
std::unique_ptr<CheckUpdateBackgroundJob> m_bgJob;
bool m_doCheck;
bool m_received;
std::atomic<bool> m_received;
// Mini-stats
int m_inits;

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2019-2020 Igara Studio S.A.
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
@ -10,6 +10,7 @@
#include "base/time.h"
#include <atomic>
#include <condition_variable>
#include <mutex>
#include <thread>
@ -49,7 +50,7 @@ namespace app {
base::tick_t timestamp;
};
bool m_done;
std::atomic<bool> m_done;
base::tick_t m_dataRecoveryPeriodMSecs;
base::tick_t m_keepClosedDocAliveForMSecs;
std::vector<ClosedDoc> m_docs;

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2019-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -35,11 +35,13 @@ void DeselectMask::onUndo()
{
Doc* doc = document();
doc->setMask(m_oldMask.get());
doc->setMaskVisible(true);
doc->notifySelectionChanged();
if (m_oldMask) {
doc->setMask(m_oldMask.get());
doc->setMaskVisible(true);
m_oldMask.reset();
}
m_oldMask.reset();
doc->notifySelectionChanged();
}
size_t DeselectMask::onMemSize() const

View File

@ -189,7 +189,8 @@ void PasteTextCommand::onExecute(Context* ctx)
image.get(), NULL, sprite->pixelFormat(),
render::Dithering(),
rgbmap, sprite->palette(editor->frame()),
false, 0));
false,
sprite->transparentColor()));
}
// TODO we don't support pasting text in multiple cels at the

View File

@ -110,6 +110,8 @@ void BackupObserver::onRemoveDocument(Doc* doc)
// then it's deleted from ClosedDocs::backgroundThread()
TRACE("RECO: Adding to CLOSEDOC %p\n", doc);
std::unique_lock<std::mutex> lock(m_mutex);
m_closedDocs.push_back(doc);
}
else {

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2019-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -13,6 +13,7 @@
#include "app/doc_observer.h"
#include "app/docs_observer.h"
#include <atomic>
#include <condition_variable>
#include <mutex>
#include <thread>
@ -48,7 +49,7 @@ namespace crash {
Context* m_ctx;
std::vector<Doc*> m_documents;
std::vector<Doc*> m_closedDocs;
bool m_done;
std::atomic<bool> m_done;
std::mutex m_mutex;

View File

@ -210,8 +210,8 @@ void Session::removeFromDisk()
}
catch (const std::exception& ex) {
(void)ex;
LOG(ERROR) << "RECO: Session directory cannot be removed, it's not empty.\n"
<< " Error: " << ex.what() << "\n";
LOG(ERROR, "RECO: Session directory cannot be removed, it's not empty.\n"
" Error: %s\n", ex.what());
}
}
@ -265,7 +265,7 @@ void Session::removeDocument(Doc* doc)
markDocumentAsCorrectlyClosed(doc);
}
catch (const std::exception& ex) {
LOG(FATAL) << "Exception deleting document " << ex.what() << "\n";
LOG(FATAL, "Exception deleting document %s\n", ex.what());
}
}

View File

@ -125,7 +125,7 @@ void Doc::unlock()
m_rwLock.unlock();
}
bool Doc::weakLock(base::RWLock::WeakLock* weak_lock_flag)
bool Doc::weakLock(std::atomic<base::RWLock::WeakLock>* weak_lock_flag)
{
return m_rwLock.weakLock(weak_lock_flag);
}

View File

@ -26,6 +26,7 @@
#include "obs/observable.h"
#include "os/color_space.h"
#include <atomic>
#include <memory>
#include <string>
@ -80,7 +81,7 @@ namespace app {
void downgradeToRead();
void unlock();
bool weakLock(base::RWLock::WeakLock* weak_lock_flag);
bool weakLock(std::atomic<base::RWLock::WeakLock>* weak_lock_flag);
void weakUnlock();
// Sets active/running transaction.

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2019-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -13,6 +13,7 @@
#include "app/doc.h"
#include "base/exception.h"
#include <atomic>
#include <exception>
namespace app {
@ -245,7 +246,7 @@ namespace app {
WeakDocReader(const WeakDocReader&);
WeakDocReader& operator=(const WeakDocReader&);
base::RWLock::WeakLock m_weak_lock;
std::atomic<base::RWLock::WeakLock> m_weak_lock;
};
} // namespace app

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2018-2019 Igara Studio S.A.
// Copyright (C) 2018-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -107,7 +107,7 @@ static void output_message(j_common_ptr cinfo)
(*cinfo->err->format_message)(cinfo, buffer);
// Put in the log file if.
LOG(ERROR) << "JPEG: \"" << buffer << "\"\n";
LOG(ERROR, "JPEG: \"%s\"\n", buffer);
// Leave the message for the application.
((struct error_mgr *)cinfo->err)->fop->setError("%s\n", buffer);

View File

@ -80,8 +80,8 @@ public:
unsigned int m_version;
bool m_removed;
mutable bool m_is_folder;
double m_thumbnailProgress;
os::Surface* m_thumbnail;
std::atomic<double> m_thumbnailProgress;
std::atomic<os::Surface*> m_thumbnail;
#ifdef _WIN32
LPITEMIDLIST m_pidl; // relative to parent
LPITEMIDLIST m_fullpidl; // relative to the Desktop folder
@ -593,9 +593,9 @@ os::Surface* FileItem::getThumbnail()
void FileItem::setThumbnail(os::Surface* thumbnail)
{
if (m_thumbnail)
m_thumbnail->dispose();
m_thumbnail = thumbnail;
auto old = m_thumbnail.exchange(thumbnail);
if (old)
old->dispose();
}
FileItem::FileItem(FileItem* parent)
@ -621,8 +621,8 @@ FileItem::~FileItem()
{
FS_TRACE("FS: Destroying FileItem() with parent %p\n", m_parent);
if (m_thumbnail)
m_thumbnail->dispose();
if (auto ptr = m_thumbnail.load())
ptr->dispose();
#ifdef _WIN32
if (m_fullpidl && m_fullpidl != m_pidl) {

View File

@ -72,10 +72,10 @@ void HttpLoader::threadHttpRequest()
LOG("HTTP: Response: %d\n", response.status());
}
catch (const std::exception& e) {
LOG(ERROR) << "HTTP: Unexpected exception sending http request: " << e.what() << "\n";
LOG(ERROR, "HTTP: Unexpected exception sending http request: %s\n", e.what());
}
catch (...) {
LOG(ERROR) << "HTTP: Unexpected unknown exception sending http request\n";
LOG(ERROR, "HTTP: Unexpected unknown exception sending http request\n");
}
delete m_request;

View File

@ -28,8 +28,8 @@ namespace app {
ResourceFinder::ResourceFinder(bool log)
: m_log(log)
, m_current(-1)
{
m_current = -1;
}
const std::string& ResourceFinder::filename() const

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2019-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -12,6 +12,7 @@
#include "base/disable_copying.h"
#include "base/paths.h"
#include <atomic>
#include <string>
namespace app {
@ -64,7 +65,7 @@ namespace app {
private:
bool m_log;
base::paths m_paths;
int m_current;
std::atomic<int> m_current;
std::string m_default;
DISABLE_COPYING(ResourceFinder);

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2018-2019 Igara Studio S.A.
// Copyright (C) 2018-2020 Igara Studio S.A.
// Copyright (C) 2015-2018 David Capello
//
// This program is distributed under the terms of
@ -116,9 +116,11 @@ int Selection_deselect(lua_State* L)
Doc* doc = static_cast<Doc*>(sprite->document());
ASSERT(doc);
Tx tx;
tx(new cmd::DeselectMask(doc));
tx.commit();
if (doc->isMaskVisible()) {
Tx tx;
tx(new cmd::DeselectMask(doc));
tx.commit();
}
}
else {
auto mask = obj->mask(L);

View File

@ -29,6 +29,7 @@ Task::~Task()
void Task::run(base::task::func_t&& func)
{
std::lock_guard<std::mutex> lock(m_token_mutex);
m_task.on_execute(std::move(func));
m_token = &m_task.start(tasks_pool);
}

View File

@ -11,6 +11,7 @@
#include "base/task.h"
#include <functional>
#include <mutex>
namespace app {
@ -33,6 +34,7 @@ namespace app {
}
bool canceled() const {
std::lock_guard<std::mutex> lock(m_token_mutex);
if (m_token)
return m_token->canceled();
else
@ -40,6 +42,7 @@ namespace app {
}
float progress() const {
std::lock_guard<std::mutex> lock(m_token_mutex);
if (m_token)
return m_token->progress();
else
@ -47,17 +50,20 @@ namespace app {
}
void cancel() {
std::lock_guard<std::mutex> lock(m_token_mutex);
if (m_token)
m_token->cancel();
}
void set_progress(float progress) {
std::lock_guard<std::mutex> lock(m_token_mutex);
if (m_token)
m_token->set_progress(progress);
}
private:
base::task m_task;
mutable std::mutex m_token_mutex;
base::task_token* m_token;
};

View File

@ -31,6 +31,7 @@
#include "render/render.h"
#include <algorithm>
#include <atomic>
#include <memory>
#include <thread>
@ -167,7 +168,10 @@ private:
thumbnailImage.get(), palette.get(), thumbnail,
0, 0, 0, 0, thumbnailImage->width(), thumbnailImage->height());
m_item.fileitem->setThumbnail(thumbnail);
{
base::scoped_lock lock(m_mutex);
m_item.fileitem->setThumbnail(thumbnail);
}
}
THUMB_TRACE("FOP done with thumbnail: %s %s\n",
@ -176,7 +180,10 @@ private:
// Reset the m_item (first the fileitem so this worker is not
// associated to this fileitem anymore, and then the FileOp).
m_item.fileitem = nullptr;
{
base::scoped_lock lock(m_mutex);
m_item.fileitem = nullptr;
}
}
catch (const std::exception& e) {
m_fop->setError("Error loading file:\n%s", e.what());
@ -205,7 +212,7 @@ private:
app::ThumbnailGenerator::Item m_item;
FileOp* m_fop;
mutable base::mutex m_mutex;
bool m_isDone;
std::atomic<bool> m_isDone;
base::thread m_thread;
};

View File

@ -216,7 +216,7 @@ void ToolBox::loadTools()
if (!groupId)
throw base::Exception("The configuration file has a <group> without 'id' or 'text' attributes.");
LOG(VERBOSE) << "TOOL: Group " << groupId << "\n";
LOG(VERBOSE, "TOOL: %s group\n", groupId);
// Find an existent ToolGroup (this is useful in case we are
// reloading tool text/tooltips).
@ -258,7 +258,7 @@ void ToolBox::loadTools()
tool->setDefaultBrushSize(
defaultBrushSize ? std::strtol(defaultBrushSize, nullptr, 10): 1);
LOG(VERBOSE) << "TOOL: Tool " << toolId << " in group " << groupId << " found\n";
LOG(VERBOSE, "TOOL: %s.%s tool\n", groupId, toolId);
loadToolProperties(xmlTool, tool, 0, "left");
loadToolProperties(xmlTool, tool, 1, "right");

View File

@ -15,6 +15,7 @@
#include "app/app_menus.h"
#include "app/crash/data_recovery.h"
#include "app/crash/session.h"
#include "app/doc.h"
#include "app/i18n/strings.h"
#include "app/modules/gui.h"
#include "app/pref/preferences.h"
@ -28,6 +29,7 @@
#include "app/ui/workspace.h"
#include "app/ui_context.h"
#include "base/bind.h"
#include "base/fs.h"
#include "fmt/format.h"
#include "ui/alert.h"
#include "ui/button.h"
@ -174,6 +176,15 @@ private:
restoreView = nullptr;
}
// Check if the original path of the recovered document exists, in
// other case remove the path so we use the default one (last path
// used, or user docs folder, etc.)
{
std::string dir = base::get_file_path(doc->filename());
if (!base::is_directory(dir))
doc->setFilename(base::get_file_name(doc->filename()));
}
UIContext::instance()->documents().add(doc);
if (restoreView)

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2018-2019 Igara Studio S.A.
// Copyright (C) 2018-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -488,7 +488,7 @@ void KeyboardShortcuts::importFile(TiXmlElement* rootElement, KeySource source)
if (tool) {
KeyPtr key = this->tool(tool);
if (key && tool_key) {
LOG(VERBOSE) << "KEYS: Shortcut for tool " << tool_id << ": " << tool_key << "\n";
LOG(VERBOSE, "KEYS: Shortcut for tool %s: %s\n", tool_id, tool_key);
Accelerator accel(tool_key);
if (!removed)
@ -516,7 +516,7 @@ void KeyboardShortcuts::importFile(TiXmlElement* rootElement, KeySource source)
if (tool) {
KeyPtr key = this->quicktool(tool);
if (key && tool_key) {
LOG(VERBOSE) << "KEYS: Shortcut for quicktool " << tool_id << ": " << tool_key << "\n";
LOG(VERBOSE, "KEYS: Shortcut for quicktool %s: %s\n", tool_id, tool_key);
Accelerator accel(tool_key);
if (!removed)
@ -544,8 +544,7 @@ void KeyboardShortcuts::importFile(TiXmlElement* rootElement, KeySource source)
if (action != KeyAction::None) {
KeyPtr key = this->action(action);
if (key && action_key) {
LOG(VERBOSE) << "KEYS: Shortcut for action " << action_id
<< ": " << action_key << "\n";
LOG(VERBOSE, "KEYS: Shortcut for action %s: %s\n", action_id, action_key);
Accelerator accel(action_key);
if (!removed)
@ -573,8 +572,7 @@ void KeyboardShortcuts::importFile(TiXmlElement* rootElement, KeySource source)
if (action != WheelAction::None) {
KeyPtr key = this->wheelAction(action);
if (key && action_key) {
LOG(VERBOSE) << "KEYS: Shortcut for wheel action " << action_id
<< ": " << action_key << "\n";
LOG(VERBOSE, "KEYS: Shortcut for wheel action %s: %s\n", action_id, action_key);
Accelerator accel(action_key);
if (!removed)

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2018-2019 Igara Studio S.A.
// Copyright (C) 2018-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
@ -533,6 +533,7 @@ void MainWindow::configureWorkspaceLayout()
}
m_menuBar->setVisible(normal);
m_notifications->setVisible(normal && m_notifications->hasNotifications());
m_tabsBar->setVisible(normal);
colorBarPlaceholder()->setVisible(normal && isDoc);
m_toolBar->setVisible(normal && isDoc);

View File

@ -1,4 +1,5 @@
// Aseprite
// Copyright (C) 2020 Igara Studio S.A.
// Copyright (C) 2001-2017 David Capello
//
// This program is distributed under the terms of
@ -41,14 +42,14 @@ private:
Notifications::Notifications()
: Button("")
, m_flagStyle(skin::SkinTheme::instance()->styles.flag())
, m_withNotifications(false)
, m_red(false)
{
}
void Notifications::addLink(INotificationDelegate* del)
{
m_popup.addChild(new NotificationItem(del));
m_withNotifications = true;
m_red = true;
}
void Notifications::onSizeHint(SizeHintEvent& ev)
@ -62,7 +63,7 @@ void Notifications::onPaint(PaintEvent& ev)
PaintWidgetPartInfo info;
if (hasMouseOver()) info.styleFlags |= ui::Style::Layer::kMouse;
if (m_withNotifications) info.styleFlags |= ui::Style::Layer::kFocus;
if (m_red) info.styleFlags |= ui::Style::Layer::kFocus;
if (isSelected()) info.styleFlags |= ui::Style::Layer::kSelected;
theme()->paintWidgetPart(
@ -71,7 +72,7 @@ void Notifications::onPaint(PaintEvent& ev)
void Notifications::onClick(ui::Event& ev)
{
m_withNotifications = false;
m_red = false;
invalidate();
gfx::Rect bounds = this->bounds();

View File

@ -1,4 +1,5 @@
// Aseprite
// Copyright (C) 2020 Igara Studio S.A.
// Copyright (C) 2001-2017 David Capello
//
// This program is distributed under the terms of
@ -23,6 +24,7 @@ namespace app {
Notifications();
void addLink(INotificationDelegate* del);
bool hasNotifications() const { return m_popup.hasChildren(); }
protected:
void onSizeHint(ui::SizeHintEvent& ev) override;
@ -31,7 +33,7 @@ namespace app {
private:
ui::Style* m_flagStyle;
bool m_withNotifications;
bool m_red;
ui::Menu m_popup;
};

View File

@ -136,7 +136,7 @@ static FontData* load_font(std::map<std::string, FontData*>& fonts,
if (it != fonts.end())
return it->second;
LOG(VERBOSE) << "THEME: Loading font '" << name << "'\n";
LOG(VERBOSE, "THEME: Loading font '%s'\n", name.c_str());
const char* typeStr = xmlFont->Attribute("type");
if (!typeStr)
@ -185,7 +185,7 @@ static FontData* load_font(std::map<std::string, FontData*>& fonts,
font->setAntialias(antialias);
if (!fontFilename.empty())
LOG(VERBOSE) << "THEME: Font file '" << fontFilename << "' found\n";
LOG(VERBOSE, "THEME: Font file '%s' found\n", fontFilename.c_str());
}
else {
throw base::Exception("Invalid type=\"%s\" in '%s' for <font name=\"%s\" ...>\n",
@ -389,7 +389,7 @@ void SkinTheme::loadXml(BackwardCompatibility* backward)
FontData* fontData = load_font(m_fonts, xmlFont, xml_filename);
if (idStr && fontData) {
std::string id(idStr);
LOG(VERBOSE) << "THEME: Loading theme font '" << id << "\n";
LOG(VERBOSE, "THEME: Loading theme font %s\n", idStr);
int size = 10;
const char* sizeStr = xmlFont->Attribute("size");
@ -425,7 +425,7 @@ void SkinTheme::loadXml(BackwardCompatibility* backward)
std::string id = xmlDim->Attribute("id");
uint32_t value = strtol(xmlDim->Attribute("value"), NULL, 10);
LOG(VERBOSE) << "THEME: Loading dimension '" << id << "\n";
LOG(VERBOSE, "THEME: Loading dimension %s\n", id.c_str());
m_dimensions_by_id[id] = value;
xmlDim = xmlDim->NextSiblingElement();
@ -446,7 +446,7 @@ void SkinTheme::loadXml(BackwardCompatibility* backward)
(value & 0xff00) >> 8,
(value & 0xff));
LOG(VERBOSE) << "THEME: Loading color " << id << "\n";
LOG(VERBOSE, "THEME: Loading color %s\n", id.c_str());
m_colors_by_id[id] = color;
xmlColor = xmlColor->NextSiblingElement();
@ -467,7 +467,7 @@ void SkinTheme::loadXml(BackwardCompatibility* backward)
int w = (xmlPart->Attribute("w") ? scale*strtol(xmlPart->Attribute("w"), nullptr, 10): 0);
int h = (xmlPart->Attribute("h") ? scale*strtol(xmlPart->Attribute("h"), nullptr, 10): 0);
LOG(VERBOSE) << "THEME: Loading part " << part_id << "\n";
LOG(VERBOSE, "THEME: Loading part %s\n", part_id);
SkinPartPtr part = m_parts_by_id[part_id];
if (!part)
@ -504,7 +504,7 @@ void SkinTheme::loadXml(BackwardCompatibility* backward)
int focusx = scale*std::strtol(xmlPart->Attribute("focusx"), NULL, 10);
int focusy = scale*std::strtol(xmlPart->Attribute("focusy"), NULL, 10);
LOG(VERBOSE) << "THEME: Loading cursor '" << cursorName << "'\n";
LOG(VERBOSE, "THEME: Loading cursor '%s'\n", cursorName.c_str());
auto it = m_cursors.find(cursorName);
if (it != m_cursors.end() && it->second != nullptr) {
@ -622,8 +622,7 @@ void SkinTheme::loadXml(BackwardCompatibility* backward)
while (xmlLayer) {
const std::string layerName = xmlLayer->Value();
LOG(VERBOSE) << "THEME: Layer " << layerName
<< " for " << style_id << "\n";
LOG(VERBOSE, "THEME: Layer %s for %s\n", layerName.c_str(), style_id);
ui::Style::Layer layer;

View File

@ -1523,7 +1523,6 @@ void Timeline::onResize(ui::ResizeEvent& ev)
{
gfx::Rect rc = ev.bounds();
setBoundsQuietly(rc);
setSeparatorX(m_separator_x);
gfx::Size sz = m_aniControls.sizeHint();
m_aniControls.setBounds(
@ -1531,7 +1530,7 @@ void Timeline::onResize(ui::ResizeEvent& ev)
rc.x,
rc.y+(visibleTagBands()-1)*oneTagHeight(),
(!m_sprite || m_sprite->tags().empty() ? std::min(sz.w, rc.w):
std::min(sz.w, m_separator_x)),
std::min(sz.w, separatorX())),
oneTagHeight()));
updateScrollBars();
@ -2637,7 +2636,7 @@ void Timeline::drawPaddings(ui::Graphics* g)
gfx::Rect Timeline::getLayerHeadersBounds() const
{
gfx::Rect rc = clientBounds();
rc.w = m_separator_x;
rc.w = separatorX();
int h = topHeight() + headerBoxHeight();
rc.y += h;
rc.h -= h;
@ -2647,9 +2646,9 @@ gfx::Rect Timeline::getLayerHeadersBounds() const
gfx::Rect Timeline::getFrameHeadersBounds() const
{
gfx::Rect rc = clientBounds();
rc.x += m_separator_x;
rc.x += separatorX();
rc.y += topHeight();
rc.w -= m_separator_x;
rc.w -= separatorX();
rc.h = headerBoxHeight();
return rc;
}
@ -2676,8 +2675,8 @@ gfx::Rect Timeline::getOnionskinFramesBounds() const
gfx::Rect Timeline::getCelsBounds() const
{
gfx::Rect rc = clientBounds();
rc.x += m_separator_x;
rc.w -= m_separator_x;
rc.x += separatorX();
rc.w -= separatorX();
rc.y += headerBoxHeight() + topHeight();
rc.h -= headerBoxHeight() + topHeight();
return rc;
@ -2697,8 +2696,8 @@ gfx::Rect Timeline::getPartBounds(const Hit& hit) const
return gfx::Rect(bounds.x, bounds.y, bounds.w, y);
case PART_SEPARATOR:
return gfx::Rect(bounds.x + m_separator_x, bounds.y + y,
m_separator_x + m_separator_w, bounds.h - y);
return gfx::Rect(bounds.x + separatorX(), bounds.y + y,
separatorX() + m_separator_w, bounds.h - y);
case PART_HEADER_EYE:
return gfx::Rect(bounds.x + headerBoxWidth()*0, bounds.y + y,
@ -2722,11 +2721,11 @@ gfx::Rect Timeline::getPartBounds(const Hit& hit) const
case PART_HEADER_LAYER:
return gfx::Rect(bounds.x + headerBoxWidth()*5, bounds.y + y,
m_separator_x - headerBoxWidth()*5, headerBoxHeight());
separatorX() - headerBoxWidth()*5, headerBoxHeight());
case PART_HEADER_FRAME:
return gfx::Rect(
bounds.x + m_separator_x + m_separator_w - 1
bounds.x + separatorX() + m_separator_w - 1
+ frameBoxWidth()*std::max(firstFrame(), hit.frame) - viewScroll().x,
bounds.y + y, frameBoxWidth(), headerBoxHeight());
@ -2734,7 +2733,7 @@ gfx::Rect Timeline::getPartBounds(const Hit& hit) const
if (validLayer(hit.layer)) {
return gfx::Rect(bounds.x,
bounds.y + y + headerBoxHeight() + layerBoxHeight()*(lastLayer()-hit.layer) - viewScroll().y,
m_separator_x, layerBoxHeight());
separatorX(), layerBoxHeight());
}
break;
@ -2767,14 +2766,14 @@ gfx::Rect Timeline::getPartBounds(const Hit& hit) const
int x = headerBoxWidth()*3;
return gfx::Rect(bounds.x + x,
bounds.y + y + headerBoxHeight() + layerBoxHeight()*(lastLayer()-hit.layer) - viewScroll().y,
m_separator_x - x, layerBoxHeight());
separatorX() - x, layerBoxHeight());
}
break;
case PART_CEL:
if (validLayer(hit.layer) && hit.frame >= frame_t(0)) {
return gfx::Rect(
bounds.x + m_separator_x + m_separator_w - 1 + frameBoxWidth()*hit.frame - viewScroll().x,
bounds.x + separatorX() + m_separator_w - 1 + frameBoxWidth()*hit.frame - viewScroll().x,
bounds.y + y + headerBoxHeight() + layerBoxHeight()*(lastLayer()-hit.layer) - viewScroll().y,
frameBoxWidth(), layerBoxHeight());
}
@ -2818,16 +2817,16 @@ gfx::Rect Timeline::getPartBounds(const Hit& hit) const
case PART_TAGS:
return gfx::Rect(
bounds.x + m_separator_x + m_separator_w - 1,
bounds.x + separatorX() + m_separator_w - 1,
bounds.y,
bounds.w - m_separator_x - m_separator_w + 1, y);
bounds.w - separatorX() - m_separator_w + 1, y);
case PART_TAG_BAND:
return gfx::Rect(
bounds.x + m_separator_x + m_separator_w - 1,
bounds.x + separatorX() + m_separator_w - 1,
bounds.y
+ (m_tagFocusBand < 0 ? oneTagHeight() * std::max(0, hit.band): 0),
bounds.w - m_separator_x - m_separator_w + 1,
bounds.w - separatorX() - m_separator_w + 1,
oneTagHeight());
case PART_TAG_SWITCH_BUTTONS: {
@ -3068,7 +3067,7 @@ Timeline::Hit Timeline::hitTest(ui::Message* msg, const gfx::Point& mousePos)
+ scroll.y) / layerBoxHeight());
hit.frame = frame_t((mousePos.x
- m_separator_x
- separatorX()
- m_separator_w
+ scroll.x) / frameBoxWidth());
@ -3097,8 +3096,8 @@ Timeline::Hit Timeline::hitTest(ui::Message* msg, const gfx::Point& mousePos)
hit.part = PART_HEADER_ONIONSKIN_RANGE_RIGHT;
}
// Is the mouse on the separator.
else if (mousePos.x > m_separator_x-4
&& mousePos.x <= m_separator_x) {
else if (mousePos.x > separatorX()-4
&& mousePos.x <= separatorX()) {
hit.part = PART_SEPARATOR;
}
// Is the mouse on the frame tags area?
@ -3173,7 +3172,7 @@ Timeline::Hit Timeline::hitTest(ui::Message* msg, const gfx::Point& mousePos)
}
// Is the mouse on the headers?
else if (mousePos.y >= top && mousePos.y < top+headerBoxHeight()) {
if (mousePos.x < m_separator_x) {
if (mousePos.x < separatorX()) {
if (getPartBounds(Hit(PART_HEADER_EYE)).contains(mousePos))
hit.part = PART_HEADER_EYE;
else if (getPartBounds(Hit(PART_HEADER_PADLOCK)).contains(mousePos))
@ -3195,7 +3194,7 @@ Timeline::Hit Timeline::hitTest(ui::Message* msg, const gfx::Point& mousePos)
else if (mousePos.y < top+headerBoxHeight())
hit.part = PART_TOP;
// Is the mouse on a layer's label?
else if (mousePos.x < m_separator_x) {
else if (mousePos.x < separatorX()) {
if (getPartBounds(Hit(PART_ROW_EYE_ICON, hit.layer)).contains(mousePos))
hit.part = PART_ROW_EYE_ICON;
else if (getPartBounds(Hit(PART_ROW_PADLOCK_ICON, hit.layer)).contains(mousePos))
@ -3251,7 +3250,7 @@ Timeline::Hit Timeline::hitTestCel(const gfx::Point& mousePos)
+ scroll.y) / layerBoxHeight());
hit.frame = frame_t((mousePos.x
- m_separator_x
- separatorX()
- m_separator_w
+ scroll.x) / frameBoxWidth());
@ -4233,9 +4232,14 @@ void Timeline::setLayerCollapsedFlag(const layer_t l, const bool state)
}
}
int Timeline::separatorX() const
{
return base::clamp(m_separator_x, headerBoxWidth(), bounds().w-guiscale());
}
void Timeline::setSeparatorX(int newValue)
{
m_separator_x = base::clamp(newValue, headerBoxWidth(), bounds().w-guiscale());
m_separator_x = std::max(0, newValue);
}
} // namespace app

View File

@ -357,6 +357,7 @@ namespace app {
void setLayerContinuousFlag(const layer_t layer, const bool state);
void setLayerCollapsedFlag(const layer_t layer, const bool state);
int separatorX() const;
void setSeparatorX(int newValue);
ui::ScrollBar m_hbar;

View File

@ -1,5 +1,5 @@
// Aseprite Config Library
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2019-2020 Igara Studio S.A.
// Copyright (C) 2014-2017 David Capello
//
// This file is released under the terms of the MIT license.
@ -96,7 +96,8 @@ public:
m_ini.SetMultiLine();
SI_Error err = m_ini.LoadFile(file.get());
if (err != SI_OK) {
LOG(ERROR) << "CFG: Error " << err << " loading configuration from " << m_filename << "\n";
LOG(ERROR, "CFG: Error %d loading configuration from %s\n",
(int)err, m_filename.c_str());
}
}
}
@ -106,7 +107,8 @@ public:
if (file) {
SI_Error err = m_ini.SaveFile(file.get());
if (err != SI_OK) {
LOG(ERROR) << "CFG: Error " << err << " saving configuration into " << m_filename << "\n";
LOG(ERROR, "CFG: Error %d saving configuration into %s\n",
(int)err, m_filename.c_str());
}
}
}

View File

@ -1,4 +1,5 @@
// Aseprite Document Library
// Copyright (c) 2020 Igara Studio S.A.
// Copyright (c) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
@ -25,7 +26,7 @@
namespace doc {
namespace file {
Palette* load_gpl_file(const char *filename)
Palette* load_gpl_file(const char* filename)
{
std::ifstream f(FSTREAM_PATH(filename));
if (f.bad()) return NULL;
@ -93,7 +94,7 @@ Palette* load_gpl_file(const char *filename)
base::trim_string(comment, comment);
if (!comment.empty()) {
LOG(VERBOSE) << "PAL: " << filename << " comment: " << comment << "\n";
LOG(VERBOSE, "PAL: %s comment: %s\n", filename, comment.c_str());
pal->setComment(comment);
}

View File

@ -173,9 +173,8 @@ void Widget::setBgColor(gfx::Color color)
#ifdef _DEBUG
if (m_style) {
LOG(WARNING) << "UI: " << typeid(*this).name()
<< ": Warning setting bgColor to a widget with style ("
<< m_style->id() << ")\n";
LOG(WARNING, "UI: %s: Warning setting bgColor to a widget with style (%s)\n",
typeid(*this).name(), m_style->id().c_str());
}
#endif
}
@ -707,9 +706,8 @@ void Widget::setBorder(const Border& br)
#ifdef _DEBUG
if (m_style) {
LOG(WARNING) << "UI: " << typeid(*this).name()
<< ": Warning setting border to a widget with style ("
<< m_style->id() << ")\n";
LOG(WARNING, "UI: %s: Warning setting border to a widget with style (%s)\n",
typeid(*this).name(), m_style->id().c_str());
}
#endif
}
@ -720,9 +718,8 @@ void Widget::setChildSpacing(int childSpacing)
#ifdef _DEBUG
if (m_style) {
LOG(WARNING) << "UI: " << typeid(*this).name()
<< ": Warning setting child spacing to a widget with style ("
<< m_style->id() << ")\n";
LOG(WARNING, "UI: %s: Warning setting child spacing to a widget with style (%s)\n",
typeid(*this).name(), m_style->id().c_str());
}
#endif
}
@ -734,9 +731,8 @@ void Widget::noBorderNoChildSpacing()
#ifdef _DEBUG
if (m_style) {
LOG(WARNING) << "UI: " << typeid(*this).name()
<< ": Warning setting no border to a widget with style ("
<< m_style->id() << ")\n";
LOG(WARNING, "UI: %s: Warning setting no border to a widget with style (%s)\n",
typeid(*this).name(), m_style->id().c_str());
}
#endif
}

View File

@ -167,16 +167,17 @@ namespace ui {
// Returns a list of children.
const WidgetsList& children() const { return m_children; }
bool hasChildren() const { return !m_children.empty(); }
Widget* at(int index) { return m_children[index]; }
int getChildIndex(Widget* child);
// Returns the first/last child or nullptr if it doesn't exist.
Widget* firstChild() {
return (!m_children.empty() ? m_children.front(): nullptr);
return (hasChildren() ? m_children.front(): nullptr);
}
Widget* lastChild() {
return (!m_children.empty() ? m_children.back(): nullptr);
return (hasChildren() ? m_children.back(): nullptr);
}
// Returns the next or previous siblings.

View File

@ -1,8 +1,12 @@
# ASEPRITE
# Copyright (C) 2020 Igara Studio S.A.
# Copyright (C) 2001-2013 David Capello
add_library(tinyxml
tinystr.cpp
tinyxml.cpp
tinyxmlerror.cpp
tinyxmlparser.cpp)
# Use std::string instead of TiXmlString (we've found some threading
# issues related to TiXmlString::nullrep_)
target_compile_definitions(tinyxml PUBLIC TIXML_USE_STL)