PGFrameStyle
-
class PGFrameStyle
Inheritance diagram
-
enum Type
-
enumerator T_none = 0
-
enumerator T_flat = 1
-
enumerator T_bevel_out = 2
-
enumerator T_bevel_in = 3
-
enumerator T_groove = 4
-
enumerator T_ridge = 5
-
enumerator T_texture_border = 6
-
enumerator T_none = 0
-
PGFrameStyle(void)
-
PGFrameStyle(PGFrameStyle const ©)
-
void clear_texture(void)
Removes the texture from the frame.
-
LVecBase4 get_internal_frame(LVecBase4 const &frame) const
Computes the size of the internal frame, given the indicated external frame, appropriate for this kind of frame style. This simply subtracts the border width for those frame styles that include a border.
-
Texture *get_texture(void) const
Returns the texture that has been applied to the frame, or NULL if no texture has been applied.
-
LVecBase2 const &get_uv_width(void) const
See
set_uv_width()
.
-
LVecBase2 const &get_visible_scale(void) const
Returns the scale factor on the visible representation of the frame, in the X and Y directions. If this scale factor is other than 1, it will affect the size of the visible frame representation within the actual frame border.
-
LVecBase2 const &get_width(void) const
Returns the width parameter, which has meaning only for certain frame types. For instance, this is the width of the bevel for T_bevel_in or T_bevel_out. The units are in screen units.
-
bool has_texture(void) const
Returns true if a texture has been applied to the frame.
-
void output(std::ostream &out) const
-
void set_color(PN_stdfloat r, PN_stdfloat g, PN_stdfloat b, PN_stdfloat a)
-
void set_type(PGFrameStyle::Type type)
Sets the basic type of frame.
-
void set_uv_width(PN_stdfloat u, PN_stdfloat v)
-
void set_uv_width(LVecBase2 const &uv_width)
Sets the uv_width parameter, which indicates the amount of the texture that is consumed by the inner bevel–the width in texture space of the amount indicated by
set_width
.
-
void set_visible_scale(PN_stdfloat x, PN_stdfloat y)
-
void set_visible_scale(LVecBase2 const &visible_scale)
Sets a scale factor on the visible representation of the frame, in the X and Y directions. If this scale factor is other than 1, it will affect the size of the visible frame representation within the actual frame border.
-
void set_width(PN_stdfloat x, PN_stdfloat y)
-
enum Type