/usr/include/ganv-1/ganv/Circle.hpp is in libganv-dev 1.4.2~dfsg0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* This file is part of Ganv.
* Copyright 2007-2012 David Robillard <http://drobilla.net>
*
* Ganv 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, either version 3 of the License, or any later version.
*
* Ganv 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 details.
*
* You should have received a copy of the GNU General Public License along
* with Ganv. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GANV_CIRCLE_HPP
#define GANV_CIRCLE_HPP
#include <algorithm>
#include <map>
#include <string>
#include <stdint.h>
#include <gdkmm/types.h>
#include "ganv/types.hpp"
#include "ganv/Node.hpp"
#include "ganv/circle.h"
GANV_GLIB_WRAP(Circle)
namespace Ganv {
class Canvas;
/** An elliptical Item which is Node.
*
* Unlike a Module, this doesn't contain ports, but is directly joinable itself
* (think your classic circles 'n' lines diagram, ala FSM).
*
* @ingroup Ganv
*/
class Circle : public Node
{
public:
static const uint32_t FILL_COLOUR = 0x1E2224FF;
static const uint32_t BORDER_COLOUR = 0xD3D7CFFF;
Circle(Canvas& canvas,
const std::string& name,
double x,
double y)
: Node(&canvas,
GANV_NODE(
ganv_item_new(
GANV_ITEM(canvas.root()),
ganv_circle_get_type(),
"x", x,
"y", y,
"can-tail", TRUE,
"can-head", TRUE,
"fill-color", FILL_COLOUR,
"border-color", BORDER_COLOUR,
"label", name.c_str(),
"draggable", TRUE,
NULL)))
{}
RW_PROPERTY(double, radius);
RW_PROPERTY(double, radius_ems);
RW_PROPERTY(gboolean, fit_label);
GanvCircle* gobj() { return GANV_CIRCLE(_gobj); }
const GanvCircle* gobj() const { return GANV_CIRCLE(_gobj); }
};
} // namespace Ganv
#endif // GANV_CIRCLE_HPP
|