
To pull this one off, a new class called VPath was created that denotes "virtual" paths that can exist anywhere among the list of mount points. It is functionally identical to QString, except that implicit conversion between QString and VPath is not allowed. This makes it easy to spot errors in path resolution at compile time, since get_real_path must be called to resolve a VPath into an absolute path that can be passed into a Qt function as a QString. Other functions, such as the get_*_suffix functions, also return an absolute path QString for convenience. As for the rest of the functions that return a VPath, you will need to call get_real_path yourself. Finally, a path resolution cache was added to try to avoid blowing up what is already a massive lookup cost for assets. The cache is invalidated when the mount path list is changed. Currently, this cache isn't bounded. Might need to write an LRU cache if issues arise.
49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
#include "aobutton.h"
|
|
|
|
#include "debug_functions.h"
|
|
#include "file_functions.h"
|
|
|
|
AOButton::AOButton(QWidget *parent, AOApplication *p_ao_app)
|
|
: QPushButton(parent)
|
|
{
|
|
ao_app = p_ao_app;
|
|
movie = new QMovie(this);
|
|
connect(movie, &QMovie::frameChanged, [=]{
|
|
this->setIcon(movie->currentPixmap().scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
this->setIconSize(QSize(this->width(), this->height()));
|
|
});
|
|
}
|
|
|
|
AOButton::~AOButton() {}
|
|
|
|
void AOButton::set_image(QString p_path, QString p_misc)
|
|
{
|
|
movie->stop();
|
|
QString p_image;
|
|
// Check if the user wants animated themes
|
|
if (ao_app->get_animated_theme())
|
|
// We want an animated image
|
|
p_image = ao_app->get_image(p_path, ao_app->current_theme, ao_app->get_subtheme(), ao_app->default_theme, p_misc);
|
|
else
|
|
// Grab a static variant of the image
|
|
p_image = ao_app->get_image_path(ao_app->get_asset_paths(p_path, ao_app->current_theme, ao_app->get_subtheme(), ao_app->default_theme, p_misc), true);
|
|
if (p_image.isEmpty()) {
|
|
this->setIcon(QIcon());
|
|
this->setIconSize(this->size());
|
|
this->setStyleSheet("");
|
|
return;
|
|
}
|
|
this->setText("");
|
|
this->setStyleSheet("QPushButton { background-color: transparent; border: 0px }");
|
|
movie->setFileName(p_image);
|
|
// We double-check if the user wants animated themes, so even if an animated image slipped through,
|
|
// we still set it static
|
|
if (ao_app->get_animated_theme() && movie->frameCount() > 1) {
|
|
movie->start();
|
|
}
|
|
else {
|
|
this->setIcon(QPixmap(p_image).scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
this->setIconSize(this->size());
|
|
}
|
|
}
|