Code Search for Developers
 
 
  

BrowseInfoWnd.cpp from FreeOrion at Krugle


Show BrowseInfoWnd.cpp syntax highlighted

/* GG is a GUI for SDL and OpenGL.
   Copyright (C) 2003 T. Zachary Laine

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public License
   as published by the Free Software Foundation; either version 2.1
   of the License, or (at your option) any later version.
   
   This library 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
   Lesser General Public License for more details.
    
   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA

   If you do not wish to comply with the terms of the LGPL please
   contact the author as other terms are available for a fee.
    
   Zach Laine
   whatwasthataddress@hotmail.com */

#include <GG/BrowseInfoWnd.h>

#include <GG/GUI.h>
#include <GG/DrawUtil.h>
#include <GG/Font.h>
#include <GG/Layout.h>
#include <GG/StyleFactory.h>
#include <GG/TextControl.h>

using namespace GG;

////////////////////////////////////////////////
// GG::BrowseInfoWnd
////////////////////////////////////////////////
BrowseInfoWnd::BrowseInfoWnd() :
    Wnd()
{}

BrowseInfoWnd::BrowseInfoWnd(int x, int y, int w, int h) :
    Wnd(x, y, w, h)
{}

void BrowseInfoWnd::Update(int mode, const Wnd* target)
{
    UpdateImpl(mode, target);
    MoveTo(m_cursor_pos - Pt(Width() / 2, Height()));
    Pt ul = UpperLeft(), lr = LowerRight();
    if (GUI::GetGUI()->AppWidth() <= lr.x)
        ul.x += GUI::GetGUI()->AppWidth() - lr.x;
    else if (ul.x < 0)
        ul.x = 0;
    if (GUI::GetGUI()->AppHeight() <= lr.y)
        ul.y += GUI::GetGUI()->AppHeight() - lr.y;
    else if (ul.y < 0)
        ul.y = 0;
    MoveTo(ul);
}

void BrowseInfoWnd::SetCursorPosition(const Pt& cursor_pos)
{ m_cursor_pos = cursor_pos; }

void BrowseInfoWnd::UpdateImpl(int mode, const Wnd* target)
{}


////////////////////////////////////////////////
// GG::TextBoxBrowseInfoWnd
////////////////////////////////////////////////
TextBoxBrowseInfoWnd::TextBoxBrowseInfoWnd() :
    BrowseInfoWnd(),
    m_text_from_target(true),
    m_border_width(1),
    m_preferred_width(1),
    m_text_control(0)
{}

TextBoxBrowseInfoWnd::TextBoxBrowseInfoWnd(int w, const boost::shared_ptr<Font>& font, Clr color, Clr border_color, Clr text_color,
                                           Flags<TextFormat> format/* = FORMAT_LEFT | FORMAT_WORDBREAK*/, int border_width/* = 2*/, int text_margin/* = 4*/) :
    BrowseInfoWnd(0, 0, w, 100),
    m_text_from_target(true),
    m_font(font),
    m_color(color),
    m_border_color(border_color),
    m_border_width(border_width),
    m_preferred_width(w),
    m_text_control(GetStyleFactory()->NewTextControl(0, 0, w, 1, "", m_font, text_color, format))
{
    AttachChild(m_text_control);
    GridLayout();
    SetLayoutBorderMargin(text_margin);
}

bool TextBoxBrowseInfoWnd::WndHasBrowseInfo(const Wnd* wnd, int mode) const
{
    const std::vector<Wnd::BrowseInfoMode>& browse_modes = wnd->BrowseModes();
    assert(0 <= mode && mode <= static_cast<int>(browse_modes.size()));
    return !wnd->BrowseInfoText(mode).empty();
}

bool TextBoxBrowseInfoWnd::TextFromTarget() const
{
    return m_text_from_target;
}

const std::string& TextBoxBrowseInfoWnd::Text() const
{
    return m_text_control->WindowText();
}

const boost::shared_ptr<Font>& TextBoxBrowseInfoWnd::GetFont() const
{
    return m_font;
}

Clr TextBoxBrowseInfoWnd::Color() const
{
    return m_color;
}

Clr TextBoxBrowseInfoWnd::TextColor() const
{
    return m_text_control->TextColor();
}

Flags<TextFormat> TextBoxBrowseInfoWnd::GetTextFormat() const
{
    return m_text_control->GetTextFormat();
}

Clr TextBoxBrowseInfoWnd::BorderColor() const
{
    return m_border_color;
}

int TextBoxBrowseInfoWnd::BorderWidth() const
{
    return m_border_width;
}

int TextBoxBrowseInfoWnd::TextMargin() const
{
    return GetLayout()->BorderMargin();
}

void TextBoxBrowseInfoWnd::SetText(const std::string& str)
{
    m_text = str;
    Resize(Pt(m_preferred_width, 1));
    m_text_control->SetText(str);
    if (str.empty())
        Hide();
    else
        Show();
    Resize(Pt(1, 1));
    Resize(Pt(std::min(m_preferred_width, GetLayout()->MinUsableSize().x), GetLayout()->MinUsableSize().y));
}

void TextBoxBrowseInfoWnd::Render()
{
    Pt ul = UpperLeft(), lr = LowerRight();
    FlatRectangle(ul.x, ul.y, lr.x, lr.y, m_color, m_border_color, m_border_width);
}

void TextBoxBrowseInfoWnd::SetTextFromTarget(bool b)
{
    m_text_from_target = b;
}

void TextBoxBrowseInfoWnd::SetFont(const boost::shared_ptr<Font>& font)
{
    m_font = font;
}

void TextBoxBrowseInfoWnd::SetColor(Clr color)
{
    m_color = color;
}

void TextBoxBrowseInfoWnd::SetBorderColor(Clr border_color)
{
    m_border_color = border_color;
}

void TextBoxBrowseInfoWnd::SetTextColor(Clr text_color)
{
    m_text_control->SetTextColor(text_color);
}

void TextBoxBrowseInfoWnd::SetTextFormat(Flags<TextFormat> format)
{
    m_text_control->SetTextFormat(format);
}

void TextBoxBrowseInfoWnd::SetBorderWidth(int border_width)
{
    m_border_width = border_width;
}

void TextBoxBrowseInfoWnd::SetTextMargin(int text_margin)
{
    SetLayoutBorderMargin(text_margin);
}

void TextBoxBrowseInfoWnd::UpdateImpl(int mode, const Wnd* target)
{
    if (m_text_from_target)
        SetText(target->BrowseInfoText(mode));
}




See more files for this project here

FreeOrion

FreeOrion brings nation building to a galactic scale with its full-featured grand campaign and in-game racial histories, in addition to the classic 4X model of galactic conquest and tactical combat.

Project homepage: http://sourceforge.net/projects/freeorion
Programming language(s): C,C++
License: other

  Ogre/
    Plugins/
      OISInput.cfg
      OISInput.cpp
      OISInput.h
      OgreGUIInputPlugin.cpp
      OgreGUIInputPlugin.h
      SConscript
    OgreGUI.cpp
    SConscript
  SDL/
    SConscript
    SDLGUI.cpp
  dialogs/
    ColorDlg.cpp
    FileDlg.cpp
    SConscript
    ThreeButtonDlg.cpp
  AlignmentFlags.cpp
  Base.cpp
  BrowseInfoWnd.cpp
  Button.cpp
  Clr.cpp
  Control.cpp
  Cursor.cpp
  DrawUtil.cpp
  DropDownList.cpp
  DynamicGraphic.cpp
  Edit.cpp
  EventPump.cpp
  Font.cpp
  GUI.cpp
  Layout.cpp
  ListBox.cpp
  Menu.cpp
  MultiEdit.cpp
  Plugin.cpp
  PluginInterface.cpp
  PtRect.cpp
  SConscript
  Scroll.cpp
  Slider.cpp
  StaticGraphic.cpp
  StyleFactory.cpp
  TabWnd.cpp
  TextControl.cpp
  Texture.cpp
  Timer.cpp
  Wnd.cpp
  WndEditor.cpp
  WndEvent.cpp
  ZList.cpp
  _vsnprintf.c