From: Good Guy Date: Sat, 30 Jan 2021 20:09:49 +0000 (-0700) Subject: RafaMar + programmer friend Help button in Batch Render addition X-Git-Tag: 2021-03~12 X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=commitdiff_plain;h=ddfda6a8cc59bda4dc734973c1c5fecaa31ea487;hp=a6b1f3c0c5c17c3a26758abc46bcb46100308c66 RafaMar + programmer friend Help button in Batch Render addition --- diff --git a/cinelerra-5.1/cinelerra/batchrender.C b/cinelerra-5.1/cinelerra/batchrender.C index b83f2d63..6238d6d6 100644 --- a/cinelerra-5.1/cinelerra/batchrender.C +++ b/cinelerra-5.1/cinelerra/batchrender.C @@ -60,6 +60,8 @@ #include "dvdcreate.h" #include "bdcreate.h" +#include + int BatchRenderThread::column_widths[] = { 42, 42, 42, 222, 222, 150 }; const char *BatchRenderThread::column_titles[] = { N_("Enabled"), N_("Labeled"), N_("Farmed"), N_("Output"), N_("EDL"), N_("Elapsed") @@ -833,8 +835,10 @@ void BatchRenderGUI::create_objects() y += batch_list->get_h() + mwindow->theme->widget_border; add_subwindow(start_button = new BatchRenderStart(thread, x, y)); - x = get_w() / 2 - BC_GenericButton::calculate_w(this, _("Stop")) / 2; + x = get_w() / 3 - BC_GenericButton::calculate_w(this, _("Stop")) / 3; add_subwindow(stop_button = new BatchRenderStop(thread, x, y)); + x = get_w() / 1.5 - BC_GenericButton::calculate_w(this, _("?")) / 1.5; + add_subwindow(help_button = new BatchRenderHelp(thread, x, y)); x = get_w() - BC_GenericButton::calculate_w(this, _("Close")) - xs10; add_subwindow(cancel_button = new BatchRenderCancel(thread, x, y)); @@ -919,10 +923,12 @@ int BatchRenderGUI::resize_event(int w, int h) y += batch_list->get_h() + mwindow->theme->widget_border; start_button->reposition_window(x, y); - x = w / 2 - stop_button->get_w() / 2; + x = w / 3 - stop_button->get_w() / 3; stop_button->reposition_window(x, y); x = w - cancel_button->get_w() - xs10; cancel_button->reposition_window(x, y); + x = w / 1.5 - help_button->get_w() / 1.5; + help_button->reposition_window(x, y); return 1; } @@ -1430,6 +1436,20 @@ int BatchRenderCancel::keypress_event() return 0; } +//new help button +BatchRenderHelp::BatchRenderHelp(BatchRenderThread *thread, int x, int y) + : BC_GenericButton(x, y, _("?")) +{ + this->thread = thread; + set_tooltip(_("Open quick start guide")); +} + +int BatchRenderHelp::handle_event() +{ + system("$CIN_BROWSER file://$CIN_DAT/doc/help_br_index.html"); + return 0; +} + BatchRenderUseFarm::BatchRenderUseFarm(BatchRenderThread *thread, int x, int y, int *output) : BC_CheckBox(x, y, *output, _("Use render farm")) { diff --git a/cinelerra-5.1/cinelerra/batchrender.h b/cinelerra-5.1/cinelerra/batchrender.h index 57309895..2646b577 100644 --- a/cinelerra-5.1/cinelerra/batchrender.h +++ b/cinelerra-5.1/cinelerra/batchrender.h @@ -314,6 +314,14 @@ public: int *output; }; +//new help button +class BatchRenderHelp : public BC_GenericButton +{ +public: + BatchRenderHelp(BatchRenderThread *thread, int x, int y); + int handle_event(); + BatchRenderThread *thread; +}; class BatchRenderGUI : public BC_Window { @@ -363,6 +371,7 @@ public: BatchRenderCurrentEDL *use_current_edl; BatchRenderUpdateEDL *update_selected_edl; BatchRenderUseFarm *use_renderfarm; + BatchRenderHelp *help_button; }; diff --git a/cinelerra-5.1/doc/Makefile b/cinelerra-5.1/doc/Makefile index 882cb8dd..3b5d7350 100644 --- a/cinelerra-5.1/doc/Makefile +++ b/cinelerra-5.1/doc/Makefile @@ -54,6 +54,7 @@ install: all mkdir -p $(TARGET_DIR) cp -a *.png $(TARGET_DIR)/. cp -a ShellCmds*.* $(TARGET_DIR)/. + cp -a help_br_*.* $(TARGET_DIR)/. cp -a cinelerra.html $(TARGET_DIR)/. cp -a shortcuts.html $(TARGET_DIR)/. cp -a RenderMux.sh $(TARGET_DIR)/.