blob: 4d859ce322d81035e22663b24d77e6df6026e8fe [file] [log] [blame]
/*
* Copyright (c) 2002, Adam Dunkels.
* 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.
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgement:
* This product includes software developed by Adam Dunkels.
* 4. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
*
* This file is part of the Contiki desktop environment
*
* $Id: about.c,v 1.2 2003/04/08 23:27:33 adamdunkels Exp $
*
*/
#include "ctk.h"
#include "dispatcher.h"
#include "petsciiconv.h"
#include "loader.h"
static struct ctk_window aboutdialog;
static struct ctk_label aboutlabel1 =
{CTK_LABEL(5, 0, 23, 1, "The Contiki Desktop OS")};
static struct ctk_label aboutlabel2 =
{CTK_LABEL(3, 3, 28, 1, "A modern, Internet-enabled")};
static struct ctk_label aboutlabel3 =
{CTK_LABEL(2, 4, 28, 1, "operating system and desktop")};
static struct ctk_label aboutlabel4 =
{CTK_LABEL(0, 5, 32, 1, "environment for the Commodore 64")};
static struct ctk_label aboutlabel5 =
{CTK_LABEL(4, 6, 26, 1, "written by Adam Dunkels")};
static char abouturl_petscii[] = "http://dunkels.com/adam/contiki/";
static char abouturl_ascii[40];
static struct ctk_hyperlink abouturl =
{CTK_HYPERLINK(0, 8, 32, "http://dunkels.com/adam/contiki/",
abouturl_ascii)};
static struct ctk_button aboutclose =
{CTK_BUTTON(12, 10, 5, "Close")};
static void about_sighandler(ek_signal_t s, ek_data_t data);
static struct dispatcher_proc p =
{DISPATCHER_PROC("About Contiki", NULL, about_sighandler, NULL)};
static ek_id_t id;
/*-----------------------------------------------------------------------------------*/
LOADER_INIT_FUNC(about_init)
{
if(id == EK_ID_NONE) {
id = dispatcher_start(&p);
strcpy(abouturl_ascii, abouturl_petscii);
petsciiconv_toascii(abouturl_ascii, sizeof(abouturl_ascii));
ctk_dialog_new(&aboutdialog, 32, 11);
CTK_WIDGET_ADD(&aboutdialog, &aboutlabel1);
CTK_WIDGET_ADD(&aboutdialog, &aboutlabel2);
CTK_WIDGET_ADD(&aboutdialog, &aboutlabel3);
CTK_WIDGET_ADD(&aboutdialog, &aboutlabel4);
CTK_WIDGET_ADD(&aboutdialog, &aboutlabel5);
CTK_WIDGET_ADD(&aboutdialog, &abouturl);
CTK_WIDGET_ADD(&aboutdialog, &aboutclose);
CTK_WIDGET_FOCUS(&aboutdialog, &aboutclose);
dispatcher_listen(ctk_signal_button_activate);
dispatcher_listen(ctk_signal_hyperlink_activate);
}
ctk_dialog_open(&aboutdialog);
ctk_redraw();
}
/*-----------------------------------------------------------------------------------*/
static void
about_quit(void)
{
ctk_dialog_close();
dispatcher_exit(&p);
id = EK_ID_NONE;
LOADER_UNLOAD();
ctk_redraw();
}
/*-----------------------------------------------------------------------------------*/
static void
about_sighandler(ek_signal_t s, ek_data_t data)
{
if(s == ctk_signal_button_activate) {
if(data == (ek_data_t)&aboutclose) {
about_quit();
}
} else if(s == ctk_signal_hyperlink_activate) {
if((struct ctk_widget *)data == (struct ctk_widget *)&abouturl) {
about_quit();
}
}
}
/*-----------------------------------------------------------------------------------*/