#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
Go to the source code of this file.
Typedefs | |
typedef struct button_st_ * | button_handle |
Functions | |
void | button_paint (button_handle button_h) |
void | button_delete (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 public interface for the button class.
Definition in file button_gen.h.
typedef struct button_st_* button_handle |
Opaque pointer to reference instances of this class
Definition at line 32 of file button_gen.h.
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_paint | ( | button_handle | button_h | ) |
paint from button.
button_h | The object |
Definition at line 87 of file button_gen.c.