mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:49:56 +00:00
6f89d453a5
tested resizing of Operations QDockWidget for multiple concurrent operations.
17 lines
420 B
C++
17 lines
420 B
C++
#include "subview.hpp"
|
|
|
|
CSVDoc::SubView::SubView (const CSMWorld::UniversalId& id) : mUniversalId (id)
|
|
{
|
|
/// \todo add a button to the title bar that clones this sub view
|
|
|
|
setWindowTitle (mUniversalId.toString().c_str());
|
|
|
|
/// \todo remove (for testing only)
|
|
setMinimumWidth (100);
|
|
setMinimumHeight (60);
|
|
}
|
|
|
|
CSMWorld::UniversalId CSVDoc::SubView::getUniversalId() const
|
|
{
|
|
return mUniversalId;
|
|
}
|