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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/*
$Id: window.cpp,v 1.16 2001/12/27 23:24:36 mbn Exp $
ClanGUI, copyrights by various people. Have a look in the CREDITS file.
This sourcecode is distributed using the Library GNU Public Licence,
version 2 or (at your option) any later version. Please read LICENSE
for details.
*/
#include "precomp.h"
#include "API/GUI/window.h"
#include "API/GUI/component_options.h"
#include "API/GUI/stylemanager.h"
#include "window_generic.h"
/////////////////////////////////////////////////////////////////////////////
// Construction
CL_Window::CL_Window(
CL_Component *parent,
CL_StyleManager *style)
: CL_Component(parent, style), impl(0)
{
impl = new CL_Window_Generic(this, std::string());
get_style_manager()->connect_styles("window", this);
}
CL_Window::CL_Window(
const CL_Rect &pos,
const std::string &title,
CL_Component *parent,
CL_StyleManager *style)
: CL_Component(pos, parent, style), impl(0)
{
impl = new CL_Window_Generic(this, title);
get_style_manager()->connect_styles("window", this);
}
CL_Window::CL_Window(
const CL_Rect &pos,
CL_Component *parent,
CL_StyleManager *style)
: CL_Component(pos, parent, style), impl(0)
{
impl = new CL_Window_Generic(this, std::string());
get_style_manager()->connect_styles("window", this);
}
CL_Window::~CL_Window()
{
delete impl;
}
/////////////////////////////////////////////////////////////////////////////
// Attributes:
CL_Component *CL_Window::get_client_area() const
{
return impl->client_area;
}
const std::string &CL_Window::get_title() const
{
return impl->title;
}
/////////////////////////////////////////////////////////////////////////////
// Operations:
void CL_Window::set_title(const std::string &text)
{
impl->title = text;
}
void CL_Window::set_client_size(int width, int height)
{
impl->set_client_size(width, height);
}
/////////////////////////////////////////////////////////////////////////////
// Signals:
|