mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
27 lines
715 B
C++
27 lines
715 B
C++
#include "actionopen.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "../mwclass/container.hpp"
|
|
#include "../mwgui/window_manager.hpp"
|
|
#include "../mwgui/container.hpp"
|
|
|
|
#include "class.hpp"
|
|
#include "containerstore.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
ActionOpen::ActionOpen (const MWWorld::Ptr& container) : mContainer (container) {
|
|
mContainer = container;
|
|
}
|
|
|
|
void ActionOpen::execute ()
|
|
{
|
|
if (!MWBase::Environment::get().getWindowManager()->isAllowed(MWGui::GW_Inventory))
|
|
return;
|
|
|
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Container);
|
|
MWBase::Environment::get().getWindowManager()->getContainerWindow()->open(mContainer);
|
|
}
|
|
}
|