e16/src/about.c

77 lines
2.6 KiB
C

/*
* Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
* Copyright (C) 2004-2014 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of the Software, its documentation and marketing & publicity
* materials, and acknowledgment shall be given in the documentation, materials
* and software packages that this Software was used.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "E.h"
#include "dialog.h"
#if ENABLE_DIALOGS
static void
_DlgFillAbout(Dialog * d, DItem * table, void *data __UNUSED__)
{
DItem *di;
char buf[1024];
Esnprintf(buf, sizeof(buf), _("About Enlightenment e16 version %s"),
e_wm_version);
DialogSetTitle(d, buf);
DialogItemTableSetOptions(table, 2, 0, 0, 0);
di = DialogAddItem(table, DITEM_IMAGE);
DialogItemImageSetFile(di, "pix/about.png");
di = DialogAddItem(table, DITEM_TEXT);
Esnprintf(buf, sizeof(buf),
_("Welcome to Enlightenment e16\n" "version %s.\n"
"If you find a bug, please do not\n"
"hesitate to send in a bug report.\n"
"We hope you enjoy the software.\n" "\n"
"The Rasterman - raster@rasterman.com\n"
"Mandrake - mandrake@mandrake.net\n"
"Kim Woelders - kim@woelders.dk\n"), e_wm_version);
DialogItemSetText(di, buf);
DialogBindKey(d, "Return", DialogCallbackClose, 0, NULL);
DialogBindKey(d, "Escape", DialogCallbackClose, 0, NULL);
}
static const DialogDef DlgAbout = {
"ABOUT_ENLIGHTENMENT",
NULL, NULL,
0,
SOUND_NONE,
NULL,
NULL,
_DlgFillAbout,
DLG_OK | DLG_NO_SEPARATOR, DialogCallbackClose, NULL
};
void
About(void)
{
DialogShowSimple(&DlgAbout, NULL);
}
#endif /* ENABLE_DIALOGS */