You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
817 B
C++
53 lines
817 B
C++
#include "shop.h"
|
|
#include <QIcon>
|
|
#include "shopform.h"
|
|
#include "shopservice.h"
|
|
#include "settings/shopsettingsform.h"
|
|
#include "shopoverview.h"
|
|
|
|
Shop::Shop()
|
|
{
|
|
}
|
|
|
|
void Shop::initServiceUi()
|
|
{
|
|
m_ui = new ShopForm();
|
|
m_service = new ShopService();
|
|
m_settingsUi = new ShopSettingsForm();
|
|
m_dashboardWidgets << new ShopOverview();
|
|
}
|
|
|
|
QIcon Shop::pluginIcon()
|
|
{
|
|
return QIcon(":/icons/shop.svg");
|
|
}
|
|
|
|
QWidget *Shop::ui()
|
|
{
|
|
QWidget *uiWidget = IPlugin::ui();
|
|
|
|
if (uiWidget == nullptr)
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
qobject_cast<ShopForm*>(uiWidget)->setupForm();
|
|
|
|
return uiWidget;
|
|
}
|
|
|
|
QTranslator *Shop::translator()
|
|
{
|
|
return translatorFrom(":/translations/shop_");
|
|
}
|
|
|
|
bool Shop::hasNumberSeries()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
QString Shop::numberSeriesPrefix()
|
|
{
|
|
return "PD";
|
|
}
|