diff --git a/project.conf b/project.conf index 3b3e9af..2b73515 100644 --- a/project.conf +++ b/project.conf @@ -2,5 +2,5 @@ package=libDesktop version=0.1.0 config=h,sh -subdirs=data,doc,include,src +subdirs=data,doc,include,src,tests dist=Makefile,COPYING,config.h,config.sh diff --git a/tests/project.conf b/tests/project.conf new file mode 100644 index 0000000..5de5664 --- /dev/null +++ b/tests/project.conf @@ -0,0 +1,12 @@ +targets=widget +cppflags_force=-I ../include +cflags_force=`pkg-config --cflags libSystem gtk+-2.0` +ldflags_force=`pkg-config --libs libSystem gtk+-2.0` +ldflags=../src/libDesktop.a + +[widget] +type=binary +sources=widget.c + +[widget.c] +depends=../src/libDesktop.a diff --git a/tests/widget.c b/tests/widget.c new file mode 100644 index 0000000..309d21d --- /dev/null +++ b/tests/widget.c @@ -0,0 +1,87 @@ +/* $Id$ */ +/* Copyright (c) 2015 Pierre Pronchery */ +/* This file is part of DeforaOS Desktop libDesktop */ +/* 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, version 3 of the License. + * + * 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 . */ + + + +#include +#include +#include "Desktop.h" + +#define PROGNAME "widget" + + +/* Widget */ +/* private */ +/* prototypes */ +static int _widget(char const * name); + +static int _error(char const * message, int ret); +static int _usage(void); + + +/* functions */ +/* widget */ +static int _widget(char const * name) +{ + int ret = 0; + DesktopWidget * widget; + GtkWidget * test; + + if((widget = desktop_widget_new(name)) == NULL) + _error(name, 1); + else + { + test = desktop_widget_get_widget(widget); + desktop_widget_delete(widget); + } + return ret; +} + + +/* error */ +static int _error(char const * message, int ret) +{ + fprintf(stderr, PROGNAME ": %s%s%s\n", (message != NULL) ? message : "", + (message != NULL) ? ": " : "", error_get()); + return ret; +} + + +/* usage */ +static int _usage(void) +{ + fputs("Usage: " PROGNAME " widget...\n", stderr); + return 1; +} + + +/* main */ +int main(int argc, char * argv[]) +{ + int ret = 0; + int o; + + while((o = getopt(argc, argv, "")) != -1) + switch(o) + { + default: + return _usage(); + } + if(optind == argc) + return _usage(); + for(o = optind; o < argc; o++) + ret |= _widget(argv[o]); + return ret; +}