mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:49:55 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include "inventorywindow.hpp"
|
|
#include <iterator>
|
|
#include <algorithm>
|
|
#include "window_manager.hpp"
|
|
#include "widgets.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwworld/manualref.hpp"
|
|
#include <cmath>
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
|
|
#include <assert.h>
|
|
#include <iostream>
|
|
#include "../mwclass/container.hpp"
|
|
#include "../mwworld/containerstore.hpp"
|
|
#include <boost/lexical_cast.hpp>
|
|
#include "../mwworld/class.hpp"
|
|
#include "../mwworld/world.hpp"
|
|
#include "../mwworld/player.hpp"
|
|
namespace MWGui
|
|
{
|
|
|
|
InventoryWindow::InventoryWindow(WindowManager& parWindowManager,DragAndDrop* dragAndDrop)
|
|
: ContainerBase(parWindowManager,dragAndDrop,"openmw_inventory_window_layout.xml")
|
|
{
|
|
static_cast<MyGUI::Window*>(mMainWidget)->eventWindowChangeCoord += MyGUI::newDelegate(this, &InventoryWindow::onWindowResize);
|
|
}
|
|
|
|
void InventoryWindow::openInventory()
|
|
{
|
|
open(MWBase::Environment::get().getWorld()->getPlayer().getPlayer());
|
|
}
|
|
|
|
void InventoryWindow::onWindowResize(MyGUI::Window* _sender)
|
|
{
|
|
drawItems();
|
|
}
|
|
|
|
}
|