summaryrefslogtreecommitdiff
path: root/src/textfile_gui.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2012-02-12 10:32:41 +0000
committerrubidium <rubidium@openttd.org>2012-02-12 10:32:41 +0000
commite8dbcf90430610e2f19aeb3b764d9e8809c8f3ea (patch)
tree8cca3b6ad3193e943cd0121ba465e5cedf268307 /src/textfile_gui.h
parent0542e26460cf5da6fb4a3486ed9b515721bdb0bd (diff)
downloadopenttd-e8dbcf90430610e2f19aeb3b764d9e8809c8f3ea.tar.xz
(svn r23932) -Codechange: split the NewGRF text window into its own source files
Diffstat (limited to 'src/textfile_gui.h')
-rw-r--r--src/textfile_gui.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/textfile_gui.h b/src/textfile_gui.h
new file mode 100644
index 000000000..56760505c
--- /dev/null
+++ b/src/textfile_gui.h
@@ -0,0 +1,46 @@
+/* $Id$ */
+
+/*
+ * This file is part of OpenTTD.
+ * OpenTTD 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, version 2.
+ * OpenTTD 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 OpenTTD. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/** @file textfile_gui.h GUI functions related to textfiles. */
+
+#ifndef TEXTFILE_GUI_H
+#define TEXTFILE_GUI_H
+
+#include "strings_func.h"
+#include "textfile_type.h"
+#include "window_gui.h"
+
+/** Window for displaying a textfile */
+struct TextfileWindow : public Window, MissingGlyphSearcher {
+ TextfileType file_type; ///< Type of textfile to view.
+ int line_height; ///< Height of a line in the display widget.
+ Scrollbar *vscroll; ///< Vertical scrollbar.
+ Scrollbar *hscroll; ///< Horizontal scrollbar.
+ char *text; ///< Lines of text from the NewGRF's textfile.
+ SmallVector<const char *, 64> lines; ///< #text, split into lines in a table with lines.
+ uint max_length; ///< The longest line in the textfile (in pixels).
+ uint search_iterator; ///< Iterator for the font check search.
+
+ static const int TOP_SPACING = WD_FRAMETEXT_TOP; ///< Additional spacing at the top of the #WID_TF_BACKGROUND widget.
+ static const int BOTTOM_SPACING = WD_FRAMETEXT_BOTTOM; ///< Additional spacing at the bottom of the #WID_TF_BACKGROUND widget.
+
+ TextfileWindow(TextfileType file_type);
+ virtual ~TextfileWindow();
+ virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize);
+ virtual void DrawWidget(const Rect &r, int widget) const;
+ virtual void OnResize();
+ virtual void Reset();
+ virtual FontSize DefaultSize();
+ virtual const char *NextString();
+ virtual bool Monospace();
+ virtual void SetFontNames(FreeTypeSettings *settings, const char *font_name);
+ virtual void LoadTextfile(const char *textfile, Subdirectory dir);
+};
+
+#endif /* TEXTFILE_GUI_H */