Go to the source code of this file.
Classes | |
struct | button_private_st_ |
Typedefs | |
typedef struct button_private_st_ | button_private_st |
Functions | |
void | button_friend_delete (button_handle button_h) |
void | button_paint (button_handle button_h) |
void | button_delete (button_handle button_h) |
bool | button_set_vtable (button_handle button_h, button_vtable_st *vtable) |
bool | button_init (button_handle button_h) |
This program 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 2 of the License, or (at your option) any later version. This program 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 more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
This is the implementation of the button interface.
Definition in file button_gen.c.
typedef struct button_private_st_ button_private_st |
Private variables which cannot be directly accessed by any other class including children.
void button_delete | ( | button_handle | button_h | ) |
delete from button.
button_h | The object |
Definition at line 104 of file button_gen.c.
void button_friend_delete | ( | button_handle | button_h | ) |
Allow a friend class to delete the button object. It is assumed that the friend class is managing the memory for the button object and, thus, the object will not be freed. However, members within the button object may be freed. This does not call the virtual function table version of delete, but rather the delete specifically for type button.
button_h | The object. If NULL, then this function is a no-op. |
Definition at line 75 of file button_gen.c.
bool button_init | ( | button_handle | button_h | ) |
Allows a friend class to initialize their inner button object. Must be called before the button object is used. If an error is returned, any clean-up was handled internally and there is no need to call a delete function.
button_h | The object |
Definition at line 200 of file button_gen.c.
void button_paint | ( | button_handle | button_h | ) |
paint from button.
button_h | The object |
Definition at line 87 of file button_gen.c.
bool button_set_vtable | ( | button_handle | button_h, |
button_vtable_st * | vtable | ||
) |
This is a function used by implementing classes to set the virtual table according with their methods.
button_h | The object |
vtable | The virtual table specification for the implementing class. If any function pointer is NULL, an error is returned. |
Definition at line 169 of file button_gen.c.