~ubuntu-branches/ubuntu/precise/widelands/precise-backports

« back to all changes in this revision

Viewing changes to src/ui/ui_basic/ui_textarea.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Quinson
  • Date: 2005-02-14 10:41:12 UTC
  • Revision ID: james.westby@ubuntu.com-20050214104112-6v08iux9fptxpva9
Tags: upstream-build9
Import upstream version build9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2002 by Widelands Development Team
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef __S__TEXTAREA_H
 
21
#define __S__TEXTAREA_H
 
22
 
 
23
#include <string>
 
24
#include "font_handler.h"
 
25
#include "ui_panel.h"
 
26
 
 
27
/**
 
28
 * This defines a non responsive (to clicks) text area, where a text
 
29
 * can easily be printed
 
30
 */
 
31
class UITextarea : public UIPanel {
 
32
public:
 
33
        UITextarea(UIPanel *parent, int x, int y, std::string text, Align align = Align_Left);
 
34
        UITextarea(UIPanel *parent, int x, int y, int w, int h, std::string text,
 
35
                           Align align = Align_Left, bool multiline = false);
 
36
        ~UITextarea();
 
37
 
 
38
        void set_text(std::string text);
 
39
        void set_align(Align align);
 
40
 
 
41
        // Drawing and event handlers
 
42
        void draw(RenderTarget* dst);
 
43
 
 
44
   inline void set_font(std::string name, int size, RGBColor fg) { m_fontname=name; m_fontsize=size; m_fcolor=fg; g_fh->load_font(name, size, fg, RGBColor(0,0,0)); set_text(m_text.c_str()); }
 
45
 
 
46
private:
 
47
        void collapse();
 
48
        void expand();
 
49
 
 
50
        std::string             m_text;
 
51
        Align                           m_align;
 
52
        bool                            m_multiline;
 
53
   std::string    m_fontname;
 
54
   int            m_fontsize;
 
55
   RGBColor       m_fcolor;
 
56
};
 
57
 
 
58
#endif // __S__TEXTAREA_H
 
59