Home
last modified time | relevance | path

Searched refs:Drawable (Results 1 – 25 of 3528) sorted by relevance

12345678910>>...142

/dports/math/openturns/openturns-1.18/python/src/
H A DDrawable_doc.i.in3 %feature("docstring") OT::Drawable
5 %feature("docstring") OT::Drawable::getLegend
7 %feature("docstring") OT::Drawable::setLegend
9 %feature("docstring") OT::Drawable::getPalette
11 %feature("docstring") OT::Drawable::setPalette
21 %feature("docstring") OT::Drawable::getColor
63 %feature("docstring") OT::Drawable::getX
65 %feature("docstring") OT::Drawable::setX
67 %feature("docstring") OT::Drawable::getY
69 %feature("docstring") OT::Drawable::setY
[all …]
H A DDrawable.i9 OTDefaultCollectionConvertFunctions(Drawable)
11 OTTypedInterfaceObjectHelper(Drawable)
12 OTTypedCollectionInterfaceObjectHelper(Drawable)
14 %include openturns/Drawable.hxx
23 Drawable._repr_png_ = Drawable__repr_png_
31 Drawable._repr_svg_ = Drawable__repr_svg_
36 Drawable._repr_html_ = Drawable__repr_html_
41 %extend Drawable {
43 Drawable(const Drawable & other) { return new OT::Drawable(other); }
45 Drawable(PyObject * pyObj)
[all …]
/dports/math/openturns/openturns-1.18/lib/src/Base/Graph/
H A DDrawable.cxx26 CLASSNAMEINIT(Drawable) in CLASSNAMEINIT() argument
29 Drawable::Drawable(): in CLASSNAMEINIT()
36 Drawable::Drawable(const DrawableImplementation & implementation): in Drawable() function in Drawable
43 String Drawable::__repr__() const in __repr__()
61 String Drawable::getLegend() const in getLegend()
113 String Drawable::getColor() const in getColor()
161 Point Drawable::getCenter() const in getCenter()
226 Sample Drawable::getX() const in getX()
238 Sample Drawable::getY() const in getY()
316 String Drawable::draw() const in draw()
[all …]
/dports/x11-toolkits/gtkglextmm/gtkglextmm-1.2.0/gdkglext/gdkmm/gl/
H A Ddrawable.cc97 Drawable::Drawable() in Drawable() function in Gdk::GL::Drawable
102 Drawable::Drawable(GdkGLDrawable* castitem) in Drawable() function in Gdk::GL::Drawable
107 Drawable::~Drawable() in ~Drawable()
116 Drawable::CppClassType Drawable::drawable_class_; // initialize static member
118 GType Drawable::get_type() in get_type()
123 GType Drawable::get_base_type() in get_base_type()
139 void Drawable::swap_buffers() in swap_buffers()
144 void Drawable::wait_gl() in wait_gl()
149 void Drawable::wait_gdk() in wait_gdk()
159 void Drawable::gl_end() in gl_end()
[all …]
/dports/games/easyrpg-player/Player-0.7.0/src/
H A Ddrawable.h25 class Drawable; variable
55 class Drawable {
73 Drawable(const Drawable&) = delete;
74 Drawable& operator=(const Drawable&) = delete;
76 virtual ~Drawable();
118 inline Drawable::Flags operator|(Drawable::Flags l, Drawable::Flags r) {
122 inline Drawable::Flags operator&(Drawable::Flags l, Drawable::Flags r) {
126 inline Drawable::Flags operator^(Drawable::Flags l, Drawable::Flags r) {
130 inline Drawable::Flags operator~(Drawable::Flags f) {
134 inline Drawable::Drawable(int z, Flags flags) in Drawable() function
[all …]
/dports/lang/polyml/polyml-5.8.2/mlsource/extra/XWindows/
H A DXEVENT_SIG.ML54 window: Drawable,
55 root: Drawable,
56 subwindow: Drawable,
64 window: Drawable,
65 root: Drawable,
86 event: Drawable,
87 window: Drawable,
91 parent: Drawable,
92 window: Drawable,
96 window: Drawable,
[all …]
H A DXWINDOWS_SIG.ML448 val XQueryPointer: Drawable -> (bool * Drawable * Drawable * XPoint * XPoint * Modifier list) ;
466 val XTranslateCoordinates: Drawable -> Drawable -> XPoint -> XPoint * Drawable ;
553 val XSetWindowBackgroundPixmap: Drawable -> Drawable -> unit ;
555 val XSetWindowBorderPixmap: Drawable -> Drawable -> unit ;
578 val XQueryTree: Drawable -> (Drawable * Drawable * Drawable list) ;
580 val XReparentWindow: Drawable -> Drawable -> XPoint -> unit ;
691 val XSetTransientForHint: Drawable -> Drawable -> unit ;
692 val XGetTransientForHint: Drawable -> Drawable ;
694 val XSetWMColormapWindows: Drawable -> Drawable list -> unit ;
695 val XGetWMColormapWindows: Drawable -> Drawable list ;
[all …]
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/src/graphics/
H A DDrawable.cpp32 Drawable::Drawable(): in Drawable() function in Solarus::Drawable
47 Drawable::~Drawable() { in ~Drawable()
57 Point Drawable::get_origin() const { in get_origin()
82 void Drawable::stop_movement() { in stop_movement()
100 const Point& Drawable::get_xy() const { in get_xy()
108 void Drawable::set_xy(const Point& xy) { in set_xy()
121 void Drawable::start_transition( in start_transition()
138 void Drawable::stop_transition() { in stop_transition()
158 void Drawable::update() { in update()
185 bool Drawable::is_suspended() const { in is_suspended()
[all …]
/dports/math/openturns/openturns-1.18/python/test/
H A Dt_Drawable_std.py11 hexa = ot.Drawable.ConvertFromRGB(31, 63, 127)
14 hexa = ot.Drawable.ConvertFromRGB(0.1, 0.2, 0.3)
32 hsv = ot.Drawable.ConvertFromRGBIntoHSV(
36 hsv = ot.Drawable.ConvertFromRGBIntoHSV(
40 hsv = ot.Drawable.ConvertFromRGBIntoHSV(
45 ot.Drawable.BuildDefaultPalette(10))
47 ot.Drawable.BuildRainbowPalette(10))
49 ot.Drawable.BuildTableauPalette(10))
51 ot.Drawable.BuildDefaultPalette(20))
53 ot.Drawable.BuildTableauPalette(20))
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/libgui/src/graphics/
H A Ddrawable.cpp25 DENG2_PIMPL(Drawable) in DENG2_PIMPL() argument
138 Drawable::Drawable() : d(new Impl(this)) in Drawable() function in de::Drawable
141 void Drawable::clear() in clear()
146 Drawable::Ids Drawable::allBuffers() const in allBuffers()
151 Drawable::Ids Drawable::allPrograms() const in allPrograms()
159 Drawable::Ids Drawable::allStates() const in allStates()
180 Drawable::Id Drawable::bufferId(Name const &bufferName) const in bufferId()
198 Drawable::Id Drawable::programId(Name const &programName) const in programId()
238 Drawable::Id Drawable::stateId(Name const &stateName) const in stateId()
261 Drawable::Id Drawable::addBuffer(GLBuffer *buffer) in addBuffer()
[all …]
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/drawables/
H A Djuce_Drawable.cpp29 Drawable::Drawable() in Drawable() function in juce::Drawable
35 Drawable::Drawable (const Drawable& other) in Drawable() function in juce::Drawable
48 Drawable::~Drawable() in ~Drawable()
52 void Drawable::applyDrawableClipPath (Graphics& g) in applyDrawableClipPath()
107 DrawableComposite* Drawable::getParent() const in getParent()
112 void Drawable::setClipPath (std::unique_ptr<Drawable> clipPath) in setClipPath()
126 void Drawable::parentHierarchyChanged() in parentHierarchyChanged()
168 std::unique_ptr<Drawable> Drawable::createFromImageData (const void* data, const size_t numBytes) in createFromImageData()
170 std::unique_ptr<Drawable> result; in createFromImageData()
189 std::unique_ptr<Drawable> Drawable::createFromImageDataStream (InputStream& dataSource) in createFromImageDataStream()
[all …]
H A Djuce_Drawable.h37 class JUCE_API Drawable : public Component
45 Drawable();
49 ~Drawable() override;
56 virtual std::unique_ptr<Drawable> createCopy() const = 0;
127 void setClipPath (std::unique_ptr<Drawable> drawableClipPath);
149 static std::unique_ptr<Drawable> createFromImageFile (const File& file);
172 static std::unique_ptr<Drawable> createFromSVGFile (const File& svgFile);
204 std::unique_ptr<Drawable> drawableClipPath;
208 Drawable (const Drawable&);
209 Drawable& operator= (const Drawable&);
[all …]
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/drawables/
H A Djuce_Drawable.cpp29 Drawable::Drawable() in Drawable() function in juce::Drawable
35 Drawable::Drawable (const Drawable& other) in Drawable() function in juce::Drawable
48 Drawable::~Drawable() in ~Drawable()
52 void Drawable::applyDrawableClipPath (Graphics& g) in applyDrawableClipPath()
107 DrawableComposite* Drawable::getParent() const in getParent()
112 void Drawable::setClipPath (std::unique_ptr<Drawable> clipPath) in setClipPath()
126 void Drawable::parentHierarchyChanged() in parentHierarchyChanged()
168 std::unique_ptr<Drawable> Drawable::createFromImageData (const void* data, const size_t numBytes) in createFromImageData()
170 std::unique_ptr<Drawable> result; in createFromImageData()
189 std::unique_ptr<Drawable> Drawable::createFromImageDataStream (InputStream& dataSource) in createFromImageDataStream()
[all …]
H A Djuce_Drawable.h37 class JUCE_API Drawable : public Component
45 Drawable();
49 ~Drawable() override;
56 virtual std::unique_ptr<Drawable> createCopy() const = 0;
127 void setClipPath (std::unique_ptr<Drawable> drawableClipPath);
149 static std::unique_ptr<Drawable> createFromImageFile (const File& file);
172 static std::unique_ptr<Drawable> createFromSVGFile (const File& svgFile);
204 std::unique_ptr<Drawable> drawableClipPath;
208 Drawable (const Drawable&);
209 Drawable& operator= (const Drawable&);
[all …]
/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_Drawable_std.cxx35 fullprint << "Named colors=" << Drawable::GetValidColors() << std::endl; in main()
36 …fullprint << "RGB colors (31, 63, 127)=" << Drawable::ConvertFromRGB(31UL, 63UL, 127UL) << std::en… in main()
37 …fullprint << "RGB colors (0.1, 0.2, 0.3)=" << Drawable::ConvertFromRGB(0.1, 0.2, 0.3) << std::endl; in main()
49 fullprint << "Line styles=" << Drawable::GetValidLineStyles() << std::endl; in main()
50 fullprint << "Point styles=" << Drawable::GetValidPointStyles() << std::endl; in main()
51 fullprint << "Fill styles=" << Drawable::GetValidFillStyles() << std::endl; in main()
52 fullprint << "BuildDefaultPalette=" << Drawable::BuildDefaultPalette(10) << std::endl; in main()
53 fullprint << "BuildRainbowPalette=" << Drawable::BuildRainbowPalette(10) << std::endl; in main()
54 fullprint << "BuildTableauPalette=" << Drawable::BuildTableauPalette(10) << std::endl; in main()
55 fullprint << "BuildDefaultPalette=" << Drawable::BuildDefaultPalette(20) << std::endl; in main()
[all …]
/dports/x11-toolkits/gtkada/gtkada-2.24.4.0/src/
H A Dgdk-rgb.adb52 (Drawable : Gdk.Drawable.Gdk_Drawable;
61 (Drawable : Gdk.Drawable.Gdk_Drawable;
76 (Drawable : Gdk.Drawable.Gdk_Drawable;
85 (Drawable : Gdk.Drawable.Gdk_Drawable;
104 (Drawable : Gdk.Drawable.Gdk_Drawable;
131 (Drawable : Gdk.Drawable.Gdk_Drawable;
162 (Drawable : Gdk.Drawable.Gdk_Drawable;
186 (Drawable : Gdk.Drawable.Gdk_Drawable;
214 (Drawable : Gdk.Drawable.Gdk_Drawable;
241 (Drawable : Gdk.Drawable.Gdk_Drawable;
[all …]
H A Dgdk-drawable.adb34 package body Gdk.Drawable is
43 (Drawable : Gdk_Drawable;
74 (Drawable : Gdk_Drawable;
94 (Drawable : Gdk_Drawable;
114 (Drawable : Gdk_Drawable;
136 (Drawable : Gdk_Drawable;
161 (Drawable : Gdk.Drawable.Gdk_Drawable;
166 (Drawable : Gdk.Drawable.Gdk_Drawable;
181 (Drawable : Gdk_Drawable;
232 (Drawable : Gdk_Drawable;
[all …]
H A Dgdk-drawable.ads50 package Gdk.Drawable is
61 (Drawable : Gdk_Drawable;
81 (Drawable : Gdk_Drawable;
88 (Drawable : Gdk_Drawable;
99 (Drawable : Gdk_Drawable;
118 (Drawable : Gdk_Drawable;
139 (Drawable : Gdk_Drawable;
176 (Drawable : Gdk_Drawable;
197 (Drawable : Gdk_Drawable;
206 (Drawable : Gdk_Drawable;
[all …]
/dports/x11-toolkits/gtkmm24/gtkmm-2.24.5/gdk/gdkmm/
H A Ddrawable.cc152 GdkDrawable* Drawable::gobj_copy() in gobj_copy()
158 Drawable::Drawable(const Glib::ConstructParams& construct_params) in Drawable() function in Gdk::Drawable
165 Drawable::Drawable(GdkDrawable* castitem) in Drawable() function in Gdk::Drawable
171 Drawable::~Drawable() in ~Drawable()
175 Drawable::CppClassType Drawable::drawable_class_; // initialize static member
177 GType Drawable::get_type() in get_type()
183 GType Drawable::get_base_type() in get_base_type()
189 Drawable::Drawable() in Drawable() function in Gdk::Drawable
199 Glib::RefPtr<Drawable> Drawable::create() in create()
201 return Glib::RefPtr<Drawable>( new Drawable() ); in create()
[all …]
/dports/science/xdrawchem/xdrawchem-a3f74c34eb09fa72ee16848ec6901049ca5309d5/xdrawchem/
H A Ddrawable.cpp24 Drawable::Drawable(QObject *parent) : QObject(parent) { in TEST()
30 Drawable *Drawable::CloneTo(Drawable *target) const {
62 int Drawable::Members() { return 1; }
64 QList<DPoint *> Drawable::AllPoints() {
69 QList<Drawable *> Drawable::AllObjects() { return QList<Drawable *>{this}; }
85 void Drawable::FromXML(QString) { return; }
169 void Drawable::Highlight() {
173 void Drawable::Highlight(bool hl) {
303 Drawable *Drawable::FindNearestObject(DPoint *, double &d) {
312 void Drawable::addMolecule(Drawable *) { return; }
[all …]
H A Dchemdata.cpp45 for (Drawable *curr_draw : drawlist) { in drawAll()
52 for (Drawable *curr_draw : drawlist) { in FinishMove()
62 for (Drawable *curr_draw : drawlist) { in firstMolecule()
139 Drawable *m1 = 0, *m2 = 0; in addBond()
229 Drawable *nearest = 0, *d1; in FindNearestObject()
242 void ChemData::Erase(Drawable *d) { in Erase()
243 QList<Drawable *> removelist; in Erase()
269 QList<Drawable *> removelist; in EraseSelected()
305 QList<Drawable *> removelist; in DetectSplit()
352 for (Drawable *curr_draw : drawlist) in SetColorIfHighlighted()
[all …]
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/rendering/
H A Ddrawable.cpp26 Drawable::Drawable() in Drawable() function in Avogadro::Rendering::Drawable
31 Drawable::Drawable(const Drawable& other) in Drawable() function in Avogadro::Rendering::Drawable
37 Drawable::~Drawable() in ~Drawable()
41 void Drawable::accept(Visitor& visitor) in accept()
46 void Drawable::render(const Camera&) in render()
50 std::multimap<float, Identifier> Drawable::hits(const Vector3f&, in hits()
57 Array<Identifier> Drawable::areaHits(const Frustrum&) const in areaHits()
62 void Drawable::clear() in clear()
66 void Drawable::setParent(GeometryNode* parent_) in setParent()
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/rendering/
H A Ddrawable.cpp26 Drawable::Drawable() in Drawable() function in Avogadro::Rendering::Drawable
31 Drawable::Drawable(const Drawable& other) in Drawable() function in Avogadro::Rendering::Drawable
37 Drawable::~Drawable() in ~Drawable()
41 void Drawable::accept(Visitor& visitor) in accept()
46 void Drawable::render(const Camera&) in render()
50 std::multimap<float, Identifier> Drawable::hits(const Vector3f&, in hits()
57 Array<Identifier> Drawable::areaHits(const Frustrum&) const in areaHits()
62 void Drawable::clear() in clear()
66 void Drawable::setParent(GeometryNode* parent_) in setParent()
/dports/games/uqm/uqm-0.8.0/src/libs/graphics/
H A Ddrawable.c66 DRAWABLE Drawable; in request_drawable() local
70 if (!Drawable) in request_drawable()
91 return Drawable; in request_drawable()
97 DRAWABLE Drawable; in CreateDisplay() local
104 if (Drawable) in CreateDisplay()
130 if (Drawable) in AllocDrawable()
155 return Drawable; in AllocDrawable()
168 if (Drawable) in CreateDrawable()
190 if (Drawable) in DestroyDrawable()
257 if (!Drawable) in RotateFrame()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Graphics/
H A DOctreeQuery.h34 class Drawable; variable
42 OctreeQuery(PODVector<Drawable*>& result, unsigned char drawableFlags, unsigned viewMask) : in OctreeQuery()
57 virtual void TestDrawables(Drawable** start, Drawable** end, bool inside) = 0;
60 PODVector<Drawable*>& result_;
88 virtual void TestDrawables(Drawable** start, Drawable** end, bool inside);
109 virtual void TestDrawables(Drawable** start, Drawable** end, bool inside);
130 virtual void TestDrawables(Drawable** start, Drawable** end, bool inside);
151 virtual void TestDrawables(Drawable** start, Drawable** end, bool inside);
171 Drawable* drawable_;
216 Drawable* drawable_;
[all …]

12345678910>>...142