1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
// This file is part of RLVM, a RealLive virtual machine clone.
//
// -----------------------------------------------------------------------
//
// Copyright (C) 2007 Elliot Glaysher
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
//
// -----------------------------------------------------------------------
#ifndef TEST_TEST_SYSTEM_TEST_TEXT_WINDOW_H_
#define TEST_TEST_SYSTEM_TEST_TEXT_WINDOW_H_
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
#include "systems/base/text_window.h"
class TestTextWindow : public TextWindow {
public:
TestTextWindow(System& system, int x);
virtual ~TestTextWindow();
// Overridden from TextWindow:
virtual void SetFontColor(const std::vector<int>& colour_data) override;
virtual std::shared_ptr<Surface> GetTextSurface() override;
virtual std::shared_ptr<Surface> GetNameSurface() override;
virtual bool DisplayCharacter(const std::string& current,
const std::string& next) override;
virtual void RenderNameInBox(const std::string& utf8str);
virtual void ClearWin() override;
virtual void SetName(const std::string& utf8name,
const std::string& next_char) override;
virtual void HardBrake() override;
// To implement for real, instead of just recording in the mocklog.
virtual void ResetIndentation() override;
virtual void MarkRubyBegin() override;
virtual void DisplayRubyText(const std::string& utf8str) override;
std::string current_contents() const { return current_contents_; }
virtual void AddSelectionItem(const std::string& utf8str, int selection_id) override {}
private:
std::string current_contents_;
std::shared_ptr<Surface> name_surface_;
};
#endif // TEST_TEST_SYSTEM_TEST_TEXT_WINDOW_H_
|