Classes | Typedefs | Functions
gen/button_gen.c File Reference
#include <assert.h>
#include "button_friend_gen.h"

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)

Detailed Description

Author:
Matt Miller <matt@matthewmiller.net>

LICENSE

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/>.

DESCRIPTION

This is the implementation of the button interface.

Definition in file button_gen.c.


Typedef Documentation

Private variables which cannot be directly accessed by any other class including children.


Function Documentation

void button_delete ( button_handle  button_h)

delete from button.

Parameters:
button_hThe object
Returns:
void

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.

Parameters:
button_hThe object. If NULL, then this function is a no-op.
See also:
button_delete()

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.

Parameters:
button_hThe object
Returns:
TRUE on success, FALSE otherwise
See also:
button_delete()
button_friend_delete()

Definition at line 200 of file button_gen.c.

void button_paint ( button_handle  button_h)

paint from button.

Parameters:
button_hThe object
Returns:
void

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.

Parameters:
button_hThe object
vtableThe virtual table specification for the implementing class. If any function pointer is NULL, an error is returned.
Returns:
TRUE on success, FALSE otherwise

Definition at line 169 of file button_gen.c.

 All Classes Files Functions Variables Typedefs