mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Read version from config.h
Updated link for bug tracker
This commit is contained in:
parent
17774d2eef
commit
7a513a5a4c
@ -10,6 +10,12 @@
|
|||||||
* See COPYING for details.
|
* See COPYING for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <string.h> // memset
|
||||||
|
|
||||||
#include <FL/Fl.H>
|
#include <FL/Fl.H>
|
||||||
#include <FL/Fl_Window.H>
|
#include <FL/Fl_Window.H>
|
||||||
#include <FL/Fl_Group.H>
|
#include <FL/Fl_Group.H>
|
||||||
@ -22,8 +28,6 @@
|
|||||||
#include <edelib/Nls.h>
|
#include <edelib/Nls.h>
|
||||||
#include "icons/ede.xpm"
|
#include "icons/ede.xpm"
|
||||||
|
|
||||||
#include <string.h> // memset
|
|
||||||
|
|
||||||
static Fl_Pixmap image_ede(ede_xpm);
|
static Fl_Pixmap image_ede(ede_xpm);
|
||||||
|
|
||||||
Fl_Window* win;
|
Fl_Window* win;
|
||||||
@ -61,7 +65,7 @@ const char* content = "\n\
|
|||||||
Hosting provided by Sohlius,Inc. (thanks!)\n\
|
Hosting provided by Sohlius,Inc. (thanks!)\n\
|
||||||
\n\
|
\n\
|
||||||
Bug reports:\n\n\
|
Bug reports:\n\n\
|
||||||
http://trac.equinox-project.org/report/1\n\
|
http://equinox-project.org/cgi-bin/trac.cgi\n\
|
||||||
\n\
|
\n\
|
||||||
License: \n\n\
|
License: \n\n\
|
||||||
This program is based in part on the work of\n\
|
This program is based in part on the work of\n\
|
||||||
@ -129,11 +133,11 @@ int main(int argc, char **argv) {
|
|||||||
Fl_Box* image_box = new Fl_Box(5, 5, 60, 55);
|
Fl_Box* image_box = new Fl_Box(5, 5, 60, 55);
|
||||||
image_box->image(image_ede);
|
image_box->image(image_ede);
|
||||||
|
|
||||||
Fl_Box* ede_label_box = new Fl_Box(70, 10, 365, 25, "Equinox Deskop Environment 2.0");
|
Fl_Box* ede_label_box = new Fl_Box(70, 10, 365, 25, "Equinox Deskop Environment " PACKAGE_VERSION);
|
||||||
ede_label_box->labelfont(1);
|
ede_label_box->labelfont(1);
|
||||||
ede_label_box->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
|
ede_label_box->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
|
||||||
|
|
||||||
Fl_Box* ede_copy_box = new Fl_Box(70, 35, 365, 25, "Copyright (c) by EDE Authors 2000-2008");
|
Fl_Box* ede_copy_box = new Fl_Box(70, 35, 365, 25, "Copyright (c) by EDE Authors 2000-2009");
|
||||||
ede_copy_box->labelsize(11);
|
ede_copy_box->labelsize(11);
|
||||||
ede_copy_box->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE|FL_ALIGN_TOP);
|
ede_copy_box->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE|FL_ALIGN_TOP);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user