X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Faboutprefs.C;fp=cinelerra-5.1%2Fcinelerra%2Faboutprefs.C;h=3f3a0abe7f53289674b654e9c32f3247ae32999e;hb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;hp=0000000000000000000000000000000000000000;hpb=52fcc46226f9df46f9ce9d0566dc568455a7db0b;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/aboutprefs.C b/cinelerra-5.1/cinelerra/aboutprefs.C new file mode 100644 index 00000000..3f3a0abe --- /dev/null +++ b/cinelerra-5.1/cinelerra/aboutprefs.C @@ -0,0 +1,150 @@ + +/* + * CINELERRA + * Copyright (C) 2008 Adam Williams + * + * 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 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#include "aboutprefs.h" +#include "bcsignals.h" +#include "file.inc" +#include "language.h" +#include "libzmpeg3.h" +#include "mwindow.h" +#include "theme.h" +#include "vframe.h" +#include "versioninfo.h" + + + +AboutPrefs::AboutPrefs(MWindow *mwindow, PreferencesWindow *pwindow) + : PreferencesDialog(mwindow, pwindow) +{ +} + +AboutPrefs::~AboutPrefs() +{ + about.remove_all_objects(); +} + +void AboutPrefs::create_objects() +{ + int x, y; + + + BC_Resources *resources = BC_WindowBase::get_resources(); + +// add_subwindow(new BC_Title(mwindow->theme->preferencestitle_x, +// mwindow->theme->preferencestitle_y, +// _("About"), +// LARGEFONT, +// resources->text_default)); + + x = mwindow->theme->preferencesoptions_x; + y = mwindow->theme->preferencesoptions_y + + get_text_height(LARGEFONT); + + set_font(LARGEFONT); + set_color(resources->text_default); + draw_text(x, y, PROGRAM_NAME " " CINELERRA_VERSION); + y += 2*get_text_height(MEDIUMFONT); + + set_font(MEDIUMFONT); + draw_text(x, y, COPYRIGHTTEXT1 +#if defined(COPYRIGHTTEXT2) + COPYRIGHTTEXT2 +#endif + ); + y += get_text_height(MEDIUMFONT) * 3; + +// char versions[BCTEXTLEN]; +// sprintf(versions, +// _("Libmpeg3 version %d.%d.%d\n"), +// mpeg3_major(), +// mpeg3_minor(), +// mpeg3_release()); +// draw_text(x, y, versions); + + + char exe_path[BCTEXTLEN], msg_path[BCTEXTLEN]; + get_exe_path(exe_path); + snprintf(msg_path, sizeof(msg_path), "%s/msg.txt", exe_path); + FILE *fp = fopen(msg_path, "r"); + if( fp ) { + set_font(LARGEFONT); + draw_text(x, y, _("About:")); + y += get_text_height(LARGEFONT); + char msg[BCTEXTLEN]; + while( fgets(msg, sizeof(msg), fp) ) + about.append(new BC_ListBoxItem(msg)); + + BC_ListBox *listbox; + add_subwindow(listbox = new BC_ListBox(x, y, 300, 280, + LISTBOX_TEXT, &about, 0, 0, 1)); + y += listbox->get_h() + get_text_height(LARGEFONT) + 10; + } + else + y += 300 + get_text_height(LARGEFONT) + 10; + + set_font(LARGEFONT); + set_color(resources->text_default); + draw_text(x, y, _("License:")); + y += get_text_height(LARGEFONT); + set_font(MEDIUMFONT); + + char license3[BCTEXTLEN]; + sprintf(license3, _( +"This program is free software; you can redistribute it and/or modify it under the terms\n" +"of the GNU General Public License as published by the Free Software Foundation; either version\n" +"2 of the License, or (at your option) any later version.\n" +"\n" +"This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;\n" +"without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n" +"PURPOSE. See the GNU General Public License for more details.\n")); + draw_text(x, y, license3); + y += get_text_height(MEDIUMFONT, license3); + +#ifndef COMPILEDATE +#define COMPILEDATE "built: " __DATE__ " " __TIME__ +#endif + draw_text(x, y, COMPILEDATE); +#if defined(REPOMAINTXT) + y += get_text_height(MEDIUMFONT, COMPILEDATE); + draw_text(x, y, REPOMAINTXT); +#endif + + x = get_w() - mwindow->theme->about_bg->get_w() - 10; + y = mwindow->theme->preferencesoptions_y; + BC_Pixmap *temp_pixmap = new BC_Pixmap(this, + mwindow->theme->about_bg, + PIXMAP_ALPHA); + draw_pixmap(temp_pixmap, + x, + y); + + delete temp_pixmap; + + + x += mwindow->theme->about_bg->get_w() + 10; + y += get_text_height(LARGEFONT) * 2; + + + flash(); + flush(); +} + +