Nana C++ Library  

An open-source C++ framework project
The Programmer's Guide 
nana::gui::frameset

Description

The class frameset holds the frames and frame builders. This class is reference semantics for efficiency.

Model of

None

Public base classes

None

Typedefs

framebuilder A function type for a function which builds frames.

Members

frameset() The default construction.
void push_back(const nana::paint::image&) Inserts a picture for the frame.
void push_back(framebuilder& fb, std::size_t length) Insters a framebuilder for the frame, and the length of frames that it generates.

C++11 Members


void push_back(nana::paint::image&&) Inserts a picture for the frame.
void push_back(framebulider&& fb, std::size_t length) Inserts a framebuilder for the frame, and the length of frames that it generates.

File

nana/gui/animation.hpp

Notes

None.

See also

animation.


Move to The Nana Programmer's Guide Main Page