X-Git-Url: http://pileus.org/git/?p=aweather;a=blobdiff_plain;f=src%2Fplugins%2Falert-info.h;fp=src%2Fplugins%2Falert-info.h;h=fcdd12dc013852106e86fc1d794ccb15c8ca60d8;hp=0000000000000000000000000000000000000000;hb=2abc460f4ff4848f908e022103ec7f71aaa2ecba;hpb=7d1ba2779e584e8e323400afcb17aa95cbf94e27 diff --git a/src/plugins/alert-info.h b/src/plugins/alert-info.h new file mode 100644 index 0000000..fcdd12d --- /dev/null +++ b/src/plugins/alert-info.h @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2010 Andy Spencer + * + * 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 3 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 . + */ + +#ifndef __ALERT_INFO_H__ +#define __ALERT_INFO_H__ + +#include +#include + +typedef struct { + char *title; // Title, "Tornado Warning" + char *category; // Category, warning/watch/etc + char *abbr; // Abbreviation, for button label + int prior; // Priority, for county color picking + gboolean enabled; // Show this alert type? + gboolean current; // Are the currently alerts for this type? + guint8 color[3]; // Color to use for drawing alert +} AlertInfo; + +extern AlertInfo alert_info[]; + +AlertInfo *alert_info_find(gchar *title); + +#endif