1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-02 23:34:31 +00:00
openmw/apps/openmw/mwgui/journalwindow.hpp
Alexei Kotov 38efdd2fd8 Revert "Merge branch 'master' into 'master'"
This reverts merge request !4710
2025-07-05 01:00:26 +03:00

37 lines
842 B
C++

#ifndef MWGUI_JOURNAL_H
#define MWGUI_JOURNAL_H
#include "windowbase.hpp"
#include <components/toutf8/toutf8.hpp>
#include <memory>
namespace MWBase
{
class WindowManager;
}
namespace MWGui
{
struct JournalViewModel;
struct JournalWindow : public BookWindowBase
{
JournalWindow();
/// construct a new instance of the one JournalWindow implementation
static std::unique_ptr<JournalWindow> create(
std::shared_ptr<JournalViewModel> model, bool questList, ToUTF8::FromType encoding);
/// destroy this instance of the JournalWindow implementation
virtual ~JournalWindow() {}
/// show/hide the journal window
void setVisible(bool newValue) override = 0;
std::string_view getWindowIdForLua() const override { return "Journal"; }
};
}
#endif