mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-28 09:27:39 +01:00
Localize stripped down gtk2
This is intended mainly for GNU/Linux distros who will remove GTK2 support in the near future.
This commit is contained in:
parent
2a928dae19
commit
ad51c7c2ba
1528 changed files with 915658 additions and 57 deletions
165
libs/tk/ydkmm/rectangle.cc
Normal file
165
libs/tk/ydkmm/rectangle.cc
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
// Generated by gmmproc 2.45.3 -- DO NOT MODIFY!
|
||||
|
||||
|
||||
#include <glibmm.h>
|
||||
|
||||
#include <gdkmm/rectangle.h>
|
||||
#include <gdkmm/private/rectangle_p.h>
|
||||
|
||||
#include <cstring> // std::memset()
|
||||
|
||||
// -*- c++ -*-
|
||||
/* $Id: rectangle.ccg,v 1.1 2003/01/21 13:38:38 murrayc Exp $ */
|
||||
|
||||
/*
|
||||
*
|
||||
* Copyright 1998-2002 The gtkmm Development Team
|
||||
*
|
||||
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
namespace Gdk
|
||||
{
|
||||
|
||||
Rectangle::Rectangle(int x, int y, int width, int height)
|
||||
{
|
||||
gobject_.x = x;
|
||||
gobject_.y = y;
|
||||
gobject_.width = width;
|
||||
gobject_.height = height;
|
||||
}
|
||||
|
||||
// gdk_rectangle_union() and gdk_rectangle_intersect() work fine even if
|
||||
// the destination points to one of the input rectangles. The join() and
|
||||
// intersect() implementations rely on this ability.
|
||||
|
||||
Rectangle& Rectangle::join(const Rectangle& src2)
|
||||
{
|
||||
gdk_rectangle_union(
|
||||
&gobject_, const_cast<GdkRectangle*>(&src2.gobject_), &gobject_);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Rectangle& Rectangle::intersect(const Rectangle& src2)
|
||||
{
|
||||
gdk_rectangle_intersect(
|
||||
&gobject_, const_cast<GdkRectangle*>(&src2.gobject_), &gobject_);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Rectangle& Rectangle::intersect(const Rectangle& src2, bool& rectangles_intersect)
|
||||
{
|
||||
rectangles_intersect = gdk_rectangle_intersect(
|
||||
&gobject_, const_cast<GdkRectangle*>(&src2.gobject_), &gobject_);
|
||||
return *this;
|
||||
}
|
||||
|
||||
bool Rectangle::has_zero_area() const
|
||||
{
|
||||
return (gobject_.width == 0 || gobject_.height == 0);
|
||||
}
|
||||
|
||||
} // namespace Gdk
|
||||
|
||||
|
||||
namespace
|
||||
{
|
||||
} // anonymous namespace
|
||||
|
||||
|
||||
namespace Glib
|
||||
{
|
||||
|
||||
Gdk::Rectangle& wrap(GdkRectangle* object)
|
||||
{
|
||||
return *reinterpret_cast<Gdk::Rectangle*>(object);
|
||||
}
|
||||
|
||||
const Gdk::Rectangle& wrap(const GdkRectangle* object)
|
||||
{
|
||||
return *reinterpret_cast<const Gdk::Rectangle*>(object);
|
||||
}
|
||||
|
||||
} // namespace Glib
|
||||
|
||||
|
||||
namespace Gdk
|
||||
{
|
||||
|
||||
|
||||
// static
|
||||
GType Rectangle::get_type()
|
||||
{
|
||||
return gdk_rectangle_get_type();
|
||||
}
|
||||
|
||||
Rectangle::Rectangle()
|
||||
{
|
||||
std::memset(&gobject_, 0, sizeof(GdkRectangle));
|
||||
}
|
||||
|
||||
Rectangle::Rectangle(const GdkRectangle* gobject)
|
||||
{
|
||||
if(gobject)
|
||||
gobject_ = *gobject;
|
||||
else
|
||||
std::memset(&gobject_, 0, sizeof(GdkRectangle));
|
||||
}
|
||||
|
||||
|
||||
int Rectangle::get_x() const
|
||||
{
|
||||
return gobj()->x;
|
||||
}
|
||||
|
||||
void Rectangle::set_x(const int& value)
|
||||
{
|
||||
gobj()->x = value;
|
||||
}
|
||||
|
||||
int Rectangle::get_y() const
|
||||
{
|
||||
return gobj()->y;
|
||||
}
|
||||
|
||||
void Rectangle::set_y(const int& value)
|
||||
{
|
||||
gobj()->y = value;
|
||||
}
|
||||
|
||||
int Rectangle::get_width() const
|
||||
{
|
||||
return gobj()->width;
|
||||
}
|
||||
|
||||
void Rectangle::set_width(const int& value)
|
||||
{
|
||||
gobj()->width = value;
|
||||
}
|
||||
|
||||
int Rectangle::get_height() const
|
||||
{
|
||||
return gobj()->height;
|
||||
}
|
||||
|
||||
void Rectangle::set_height(const int& value)
|
||||
{
|
||||
gobj()->height = value;
|
||||
}
|
||||
|
||||
|
||||
} // namespace Gdk
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue