Sat, 10 Oct 2015 15:29:31 +0200
added checkbox and labels with alignment (GTK)
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2012 Olaf Wintermann. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <stdio.h> #include <stdlib.h> #include <ui/ui.h> #include <ucx/buffer.h> #include <ucx/utils.h> void action_menu(UiEvent *event, void *data) { printf("action_menu test: {%s}\n", data); printf("text: {%s}\n", ui_gettext(event->obj, "text")); fflush(stdout); } void action_button(UiEvent *event, void *data) { printf("button clicked\n"); fflush(stdout); } int main(int argc, char** argv) { ui_init("app1", argc, argv); ui_menu("File"); ui_menuitem("Hello", action_menu, "hello"); ui_submenu("Submenu1"); ui_submenu("Submenu2"); ui_menuitem("item2", NULL, NULL); ui_submenu_end(); ui_menuitem("item3", NULL, NULL); ui_submenu_end(); ui_menuitem("item4", NULL, NULL); ui_toolitem("button1", "Test", action_button, NULL); ui_toolitem("button2", "OK", action_button, NULL); ui_toolbar_add_default("button1"); ui_toolbar_add_default("button2"); UiObject *obj = ui_window("Test", NULL); ui_layout_fill(obj, FALSE); ui_grid_sp(obj, 10, 2); ui_rlabel(obj, "Name"); ui_textfield(obj, NULL); ui_newline(obj); ui_rlabel(obj, "Email"); ui_textfield(obj, NULL); ui_button(obj, "OK", NULL, NULL); ui_newline(obj); ui_checkbox(obj, "fuck", NULL); ui_rlabel(obj, "FUCK"); ui_newline(obj); ui_checkbox(obj, "this", NULL); ui_newline(obj); ui_checkbox(obj, "shit", NULL); ui_newline(obj); ui_label(obj, "Awesome Button"); UIWIDGET button = ui_button(obj, "...", NULL, NULL); ui_end(obj); ui_checkbox(obj, "A", NULL); ui_checkbox(obj, "B", NULL); ui_checkbox(obj, "C", NULL); ui_checkbox(obj, "D", NULL); ui_checkbox(obj, "E", NULL); ui_checkbox(obj, "F", NULL); ui_space(obj); ui_separator(obj); ui_layout_fill(obj, FALSE); ui_hbox(obj); ui_button(obj, "Submit", NULL, NULL); //ui_space(obj); ui_button(obj, "Cancel", NULL, NULL); ui_end(obj); ui_show(obj); ui_main(); return (EXIT_SUCCESS); }