From 9bc91995f647eccec8e6758723e1f700877fc3f7 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 03 Nov 2017 12:38:09 -0400 Subject: src/utils/profile-icon.[ch]: New files --- (limited to 'src') diff --git a/src/utils/local.mk b/src/utils/local.mk index 02c0970..5b7028e 100644 --- a/src/utils/local.mk +++ b/src/utils/local.mk @@ -1,5 +1,6 @@ marquee_SOURCES += \ %reldir%/html.c \ + %reldir%/profile-icon.c \ %reldir%/resources.c \ %reldir%/string.c \ %reldir%/svg.c diff --git a/src/utils/profile-icon.c b/src/utils/profile-icon.c new file mode 100644 index 0000000..20451fa --- /dev/null +++ b/src/utils/profile-icon.c @@ -0,0 +1,46 @@ +/* + * Profile icon + * + * Copyright (C) 2017 Patrick McDermott + * + * This file is part of Marquee. + * + * Marquee 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 3 of the License, or + * (at your option) any later version. + * + * Marquee 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 Marquee. If not, see . + */ + +#include "profile-icon.h" + +#include + +#include "svg.h" + +static const gchar *profile_svg = + "\n" + "\n" + "\n" + "\n" + "\n"; + +gchar * +mq_profile_icon_new(const gchar *color) +{ + if (!mq_svg_is_color_valid(color)) { + color = "#ff0000"; + } + + return mq_svg_set_color(profile_svg, color); +} diff --git a/src/utils/profile-icon.h b/src/utils/profile-icon.h new file mode 100644 index 0000000..806a0b9 --- /dev/null +++ b/src/utils/profile-icon.h @@ -0,0 +1,25 @@ +/* + * Profile icon + * + * Copyright (C) 2017 Patrick McDermott + * + * This file is part of Marquee. + * + * Marquee 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 3 of the License, or + * (at your option) any later version. + * + * Marquee 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 Marquee. If not, see . + */ + +#include + +gchar * +mq_profile_icon_new(const gchar *color); -- cgit v0.9.1