#include <stdlib.h>#include <stdbool.h>#include <stdint.h>#include <stddef.h>#include "button_gen.h"Go to the source code of this file.
Typedefs | |
| typedef struct gui_factory_st_ * | gui_factory_handle |
Functions | |
| button_handle | gui_factory_create_button (gui_factory_handle gui_factory_h) |
| void | gui_factory_delete (gui_factory_handle gui_factory_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 gui_factory class.
Definition in file gui_factory_gen.h.
| typedef struct gui_factory_st_* gui_factory_handle |
Opaque pointer to reference instances of this class
Definition at line 33 of file gui_factory_gen.h.
| button_handle gui_factory_create_button | ( | gui_factory_handle | gui_factory_h | ) |
create_button from gui_factory.
| gui_factory_h | The object |
Definition at line 87 of file gui_factory_gen.c.
| void gui_factory_delete | ( | gui_factory_handle | gui_factory_h | ) |
delete from gui_factory.
| gui_factory_h | The object |
Definition at line 104 of file gui_factory_gen.c.
1.7.4