From: Good Guy Date: Mon, 29 Jul 2019 17:11:41 +0000 (-0600) Subject: add igors mask svgs, add composer clear_color pref, remove key DEL for mask gui,... X-Git-Tag: 2019-08~10 X-Git-Url: https://git.cinelerra-gg.org/?a=commitdiff_plain;h=8fd64d1d3770c95e2a7cba1049e909cadb4e1fbf;p=goodguy%2Fcinelerra.git add igors mask svgs, add composer clear_color pref, remove key DEL for mask gui, add clear_color to vframe, colorBoxBtn tweaks --- diff --git a/cinelerra-5.1/cinelerra/appearanceprefs.C b/cinelerra-5.1/cinelerra/appearanceprefs.C index 79c2c03b..4ca46b2d 100644 --- a/cinelerra-5.1/cinelerra/appearanceprefs.C +++ b/cinelerra-5.1/cinelerra/appearanceprefs.C @@ -165,6 +165,15 @@ void AppearancePrefs::create_objects() char hex_color[BCSTRLEN]; sprintf(hex_color, "%06x", preferences->highlight_inverse); add_subwindow(new HighlightInverseColor(pwindow, x, y, hex_color)); + x2 = x; x = x0; + y += 35; + add_subwindow(title = new BC_Title(x, y, _("Composer BG Color:"))); + int clr_color = pwindow->thread->edl->session->cwindow_clear_color; + int clr_alpha = pwindow->thread->edl->session->cwindow_clear_alpha; + add_subwindow(cwdw_bg_color = new Composer_BG_Color(pwindow, + x2, y, 80, 24, clr_color, clr_alpha)); + draw_3d_border(x2-2,y-2, 80+4,24+4, 1); + cwdw_bg_color->create_objects(); y += 35; x = x0; @@ -793,3 +802,31 @@ int RectifyAudioToggle::handle_event() return 1; } +Composer_BG_Color::Composer_BG_Color(PreferencesWindow *pwindow, + int x, int y, int w, int h, int color, int alpha) + : ColorBoxButton(_("Composer BG color"), x, y, w, h, color, alpha, 1) +{ + this->pwindow = pwindow; +} + +Composer_BG_Color::~Composer_BG_Color() +{ +} + +void Composer_BG_Color::handle_done_event(int result) +{ + if( result ) { + pwindow->lock_window("Composer_BG_Color::handle_done_event"); + update_gui(orig_color, orig_alpha); + pwindow->unlock_window(); + handle_new_color(orig_color, orig_alpha); + } +} + +int Composer_BG_Color::handle_new_color(int color, int alpha) +{ + pwindow->thread->edl->session->cwindow_clear_color = color; + pwindow->thread->edl->session->cwindow_clear_alpha = alpha; + return 1; +} + diff --git a/cinelerra-5.1/cinelerra/appearanceprefs.h b/cinelerra-5.1/cinelerra/appearanceprefs.h index c83a04da..4b705b2c 100644 --- a/cinelerra-5.1/cinelerra/appearanceprefs.h +++ b/cinelerra-5.1/cinelerra/appearanceprefs.h @@ -24,6 +24,7 @@ #include "appearanceprefs.inc" #include "browsebutton.h" +#include "colorpicker.h" #include "deleteallindexes.inc" #include "mwindow.inc" #include "preferencesthread.h" @@ -52,6 +53,7 @@ public: ViewViconColorMode *vicon_color_mode; YuvColorSpace *yuv_color_space; YuvColorRange *yuv_color_range; + Composer_BG_Color *cwdw_bg_color; }; @@ -374,4 +376,16 @@ public: PreferencesWindow *pwindow; }; +class Composer_BG_Color : public ColorBoxButton +{ +public: + Composer_BG_Color(PreferencesWindow *pwindow, + int x, int y, int w, int h, int color, int alpha); + ~Composer_BG_Color(); + void handle_done_event(int result); + int handle_new_color(int color, int alpha); + + PreferencesWindow *pwindow; +}; + #endif diff --git a/cinelerra-5.1/cinelerra/appearanceprefs.inc b/cinelerra-5.1/cinelerra/appearanceprefs.inc index 9201a42f..c5e7daaa 100644 --- a/cinelerra-5.1/cinelerra/appearanceprefs.inc +++ b/cinelerra-5.1/cinelerra/appearanceprefs.inc @@ -55,5 +55,6 @@ class YuvColorSpaceItem; class YuvColorRange; class YuvColorRangeItem; class PerpetualSession; +class Composer_BG_Color; #endif diff --git a/cinelerra-5.1/cinelerra/cwindowtool.C b/cinelerra-5.1/cinelerra/cwindowtool.C index fb4e895b..0b0b6069 100644 --- a/cinelerra-5.1/cinelerra/cwindowtool.C +++ b/cinelerra-5.1/cinelerra/cwindowtool.C @@ -1922,16 +1922,6 @@ int CWindowMaskDelPoint::handle_event() return 1; } -int CWindowMaskDelPoint::keypress_event() -{ - if( get_keypress() == BACKSPACE || - get_keypress() == DELETE ) - return handle_event(); - return 0; -} - - - CWindowMaskAffectedPoint::CWindowMaskAffectedPoint(MWindow *mwindow, CWindowMaskGUI *gui, int x, int y) @@ -2597,7 +2587,7 @@ void CWindowMaskGUI::create_objects() } add_subwindow(mask_unclr = new CWindowMaskUnclear(mwindow, this, clr_x, y)); y += mask_enables[0]->get_h() + 2*margin; - add_subwindow(title_bar = new BC_TitleBar(x, y, get_w()-2*x, 20, 10, _("Presets shapes"))); + add_subwindow(title_bar = new BC_TitleBar(x, y, get_w()-2*x, 20, 10, _("Preset Shapes"))); y += title_bar->get_h() + margin; add_subwindow(mask_shape_sqr = new CWindowMaskShape(mwindow, this, "mask_prst_sqr_images", MASK_SHAPE_SQUARE, t[0], y, _("Square"))); @@ -2706,7 +2696,6 @@ void CWindowMaskGUI::create_objects() "Shift+LMB: move an end point\n" "Ctrl+LMB: move a control point\n" "Alt+LMB: to drag translate the mask\n" - "Shift+Key Delete: to delete the point\n" "Shift+MMB: Set Pivot Point at pointer\n" "Wheel: rotate around Pivot Point\n" "Shift+Wheel: scale around Pivot Point\n" @@ -3330,7 +3319,7 @@ CWindowMaskDelete::CWindowMaskDelete(MWindow *mwindow, { this->mwindow = mwindow; this->gui = gui; - set_tooltip(_("delete preset")); + set_tooltip(_("Delete preset")); } int CWindowMaskDelete::handle_event() diff --git a/cinelerra-5.1/cinelerra/cwindowtool.h b/cinelerra-5.1/cinelerra/cwindowtool.h index 5e290b13..3d05d38a 100644 --- a/cinelerra-5.1/cinelerra/cwindowtool.h +++ b/cinelerra-5.1/cinelerra/cwindowtool.h @@ -431,7 +431,6 @@ public: CWindowMaskDelPoint(MWindow *mwindow, CWindowMaskGUI *gui, int x, int y); int handle_event(); - int keypress_event(); MWindow *mwindow; CWindowMaskGUI *gui; }; diff --git a/cinelerra-5.1/cinelerra/edlsession.C b/cinelerra-5.1/cinelerra/edlsession.C index 91b53d22..4c5cfdd3 100644 --- a/cinelerra-5.1/cinelerra/edlsession.C +++ b/cinelerra-5.1/cinelerra/edlsession.C @@ -73,6 +73,8 @@ EDLSession::EDLSession(EDL *edl) cwindow_xscroll = cwindow_yscroll = 0; cwindow_zoom = 1.0; cwindow_click2play = 0; + cwindow_clear_color = BLACK; + cwindow_clear_alpha = 0; strcpy(default_atransition, INIT_ATRANSITION); strcpy(default_vtransition, INIT_VTRANSITION); default_transition_length = 1.0; @@ -178,7 +180,9 @@ int EDLSession::need_rerender(EDLSession *ptr) (white_balance_raw != ptr->white_balance_raw) || (proxy_disabled_scale != ptr->proxy_disabled_scale) || (proxy_scale != ptr->proxy_scale) || - (proxy_use_scaler != ptr->proxy_use_scaler)); + (proxy_use_scaler != ptr->proxy_use_scaler) || + (cwindow_clear_color != ptr->cwindow_clear_color) || + (cwindow_clear_alpha != ptr->cwindow_clear_alpha)); } void EDLSession::equivalent_output(EDLSession *session, double *result) @@ -254,6 +258,8 @@ int EDLSession::load_defaults(BC_Hash *defaults) cwindow_yscroll = defaults->get("CWINDOW_YSCROLL", 0); cwindow_zoom = defaults->get("CWINDOW_ZOOM", (float)1); cwindow_click2play = defaults->get("CWINDOW_CLICK2PLAY", 0); + cwindow_clear_color = defaults->get("CWINDOW_CLEAR_COLOR", BLACK); + cwindow_clear_alpha = defaults->get("CWINDOW_CLEAR_ALPHA", 0); sprintf(default_atransition, INIT_ATRANSITION); defaults->get("DEFAULT_ATRANSITION", default_atransition); sprintf(default_vtransition, INIT_VTRANSITION); @@ -401,6 +407,8 @@ int EDLSession::save_defaults(BC_Hash *defaults) defaults->update("CWINDOW_YSCROLL", cwindow_yscroll); defaults->update("CWINDOW_ZOOM", cwindow_zoom); defaults->update("CWINDOW_CLICK2PLAY", cwindow_click2play); + defaults->update("CWINDOW_CLEAR_COLOR", cwindow_clear_color); + defaults->update("CWINDOW_CLEAR_ALPHA", cwindow_clear_alpha); defaults->update("DEFAULT_ATRANSITION", default_atransition); defaults->update("DEFAULT_VTRANSITION", default_vtransition); defaults->update("DEFAULT_TRANSITION_LENGTH", default_transition_length); @@ -625,6 +633,8 @@ int EDLSession::load_xml(FileXML *file, cwindow_yscroll = file->tag.get_property("CWINDOW_YSCROLL", cwindow_yscroll); cwindow_zoom = file->tag.get_property("CWINDOW_ZOOM", cwindow_zoom); cwindow_click2play = file->tag.get_property("CWINDOW_CLICK2PLAY", cwindow_click2play); + cwindow_clear_color = file->tag.get_property("CWINDOW_CLEAR_COLOR", cwindow_clear_color); + cwindow_clear_alpha = file->tag.get_property("CWINDOW_CLEAR_ALPHA", cwindow_clear_alpha); editing_mode = file->tag.get_property("EDITING_MODE", editing_mode); folderlist_format = file->tag.get_property("FOLDERLIST_FORMAT", folderlist_format); highlighted_track = file->tag.get_property("HIGHLIGHTED_TRACK", 0); @@ -692,6 +702,8 @@ int EDLSession::save_xml(FileXML *file) file->tag.set_property("CWINDOW_YSCROLL", cwindow_yscroll); file->tag.set_property("CWINDOW_ZOOM", cwindow_zoom); file->tag.set_property("CWINDOW_CLICK2PLAY", cwindow_click2play); + file->tag.set_property("CWINDOW_CLEAR_COLOR", cwindow_clear_color); + file->tag.set_property("CWINDOW_CLEAR_ALPHA", cwindow_clear_alpha); file->tag.set_property("EDITING_MODE", editing_mode); file->tag.set_property("FOLDERLIST_FORMAT", folderlist_format); file->tag.set_property("HIGHLIGHTED_TRACK", highlighted_track); @@ -827,6 +839,8 @@ int EDLSession::copy(EDLSession *session) cwindow_yscroll = session->cwindow_yscroll; cwindow_zoom = session->cwindow_zoom; cwindow_click2play = session->cwindow_click2play; + cwindow_clear_color = session->cwindow_clear_color; + cwindow_clear_alpha = session->cwindow_clear_alpha; strcpy(default_atransition, session->default_atransition); strcpy(default_vtransition, session->default_vtransition); default_transition_length = session->default_transition_length; diff --git a/cinelerra-5.1/cinelerra/edlsession.h b/cinelerra-5.1/cinelerra/edlsession.h index 343a51f3..7a383471 100644 --- a/cinelerra-5.1/cinelerra/edlsession.h +++ b/cinelerra-5.1/cinelerra/edlsession.h @@ -119,6 +119,9 @@ public: int cwindow_yscroll; float cwindow_zoom; int cwindow_click2play; +// CWindow clear color + int cwindow_clear_color; + int cwindow_clear_alpha; // Transition char default_atransition[BCTEXTLEN]; char default_vtransition[BCTEXTLEN]; diff --git a/cinelerra-5.1/cinelerra/playback3d.C b/cinelerra-5.1/cinelerra/playback3d.C index 672d7a2f..53f6c9e6 100644 --- a/cinelerra-5.1/cinelerra/playback3d.C +++ b/cinelerra-5.1/cinelerra/playback3d.C @@ -705,7 +705,7 @@ void Playback3D::draw_output(Playback3DCommand *command, int flip_y) if(!command->is_cleared) { // If we get here, the virtual console was not used. - init_frame(command, 0); + color_frame(command, 0,0,0,0); } // Texture @@ -747,11 +747,11 @@ void Playback3D::draw_output(Playback3DCommand *command, int flip_y) } -void Playback3D::init_frame(Playback3DCommand *command, int is_yuv) +void Playback3D::color_frame(Playback3DCommand *command, + float r, float g, float b, float a) { #ifdef HAVE_GL - float gbuv = is_yuv ? 0.5 : 0.0; - glClearColor(0.0, gbuv, gbuv, 0.0); + glClearColor(r, g, b, a); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); #endif } @@ -775,14 +775,21 @@ void Playback3D::clear_output_sync(Playback3DCommand *command) // If we get here, the virtual console is being used. command->canvas->get_canvas()->enable_opengl(); int is_yuv = 0; + int color = BLACK, alpha = 0; // Using pbuffer for refresh frame. if( command->frame ) { command->frame->enable_opengl(); + color = command->frame->get_clear_color(); + alpha = command->frame->get_clear_alpha(); int color_model = command->canvas->mwindow->edl->session->color_model; is_yuv = BC_CModels::is_yuv(color_model); } - - init_frame(command, is_yuv); + int a = alpha; + int r = (color>>16) & 0xff; + int g = (color>>8) & 0xff; + int b = (color>>0) & 0xff; + if( is_yuv ) YUV::yuv.rgb_to_yuv_8(r, g, b); + color_frame(command, r/255.f, g/255.f, b/255.f, a/255.f); } command->canvas->unlock_canvas(); #endif diff --git a/cinelerra-5.1/cinelerra/playback3d.h b/cinelerra-5.1/cinelerra/playback3d.h index edd7726d..cd7aab02 100644 --- a/cinelerra-5.1/cinelerra/playback3d.h +++ b/cinelerra-5.1/cinelerra/playback3d.h @@ -321,7 +321,8 @@ public: private: // Called by write_buffer and clear_frame to initialize OpenGL flags - void init_frame(Playback3DCommand *command, int is_yuv=0); + void color_frame(Playback3DCommand *command, + float r, float g, float b, float a); void write_buffer_sync(Playback3DCommand *command); void draw_output(Playback3DCommand *command, int flip_y); void clear_output_sync(Playback3DCommand *command); diff --git a/cinelerra-5.1/cinelerra/videodevice.C b/cinelerra-5.1/cinelerra/videodevice.C index 78214ada..dd0ee060 100644 --- a/cinelerra-5.1/cinelerra/videodevice.C +++ b/cinelerra-5.1/cinelerra/videodevice.C @@ -721,6 +721,9 @@ void VideoDevice::new_output_buffer(VFrame **output, int colormodel, EDL *edl) { if(!output_base) return; output_base->new_output_buffer(output, colormodel, edl); + int clr_color = edl->session->cwindow_clear_color; + int clr_alpha = edl->session->cwindow_clear_alpha; + (*output)->set_clear_color(clr_color, clr_alpha); } diff --git a/cinelerra-5.1/cinelerra/virtualvconsole.C b/cinelerra-5.1/cinelerra/virtualvconsole.C index 7a4fe8f6..193761b6 100644 --- a/cinelerra-5.1/cinelerra/virtualvconsole.C +++ b/cinelerra-5.1/cinelerra/virtualvconsole.C @@ -153,8 +153,12 @@ int VirtualVConsole::process_buffer(int64_t input_position, if(!output_temp) { // Texture is created on demand + EDL *edl = renderengine->get_edl(); output_temp = new VFrame( track->track_w, track->track_h, - renderengine->get_edl()->session->color_model); + edl->session->color_model); + int clr_color = edl->session->cwindow_clear_color; + int clr_alpha = edl->session->cwindow_clear_alpha; + output_temp->set_clear_color(clr_color, clr_alpha); } // Reset OpenGL state diff --git a/cinelerra-5.1/doc/shortcuts.html b/cinelerra-5.1/doc/shortcuts.html index 0f74a57b..ae5a8b1a 100644 --- a/cinelerra-5.1/doc/shortcuts.html +++ b/cinelerra-5.1/doc/shortcuts.html @@ -1134,6 +1134,12 @@ Ctrl-m Delete selected edits/put in buffer/insert space + +
+ Mute + Backspace + Delete selected edits/put in buffer/insert space +
Copy Pack @@ -1728,12 +1734,6 @@ Alt-drag mask Hold down Alt+left mouse to translate mask - -
- + Delete mask - Shf+delete btn - Hold down Shift + click Delete to delete point -
+ Edit point diff --git a/cinelerra-5.1/guicast/bccmdl.py b/cinelerra-5.1/guicast/bccmdl.py index 1ebb9ca0..9d848c55 100755 --- a/cinelerra-5.1/guicast/bccmdl.py +++ b/cinelerra-5.1/guicast/bccmdl.py @@ -4,6 +4,11 @@ from __future__ import print_function base = { + "clear": { + "i8": { "r": " uint32_t r = bg_r, g = bg_g, b = bg_b;", }, + "i16": { "r": " uint32_t r = bg_r, g = bg_g, b = bg_b;", }, + "fp": { "r": " float r = bg_fr, g = bg_fg, b = bg_fb;", }, + }, "rgb8": { "i8": { "r": " uint32_t in = *inp; int r = ((in>>6)&3)*0x55u, g = ((in>>3)&7)*0x24u, b = (in&7)*0x24u;", @@ -507,7 +512,7 @@ def specialize(fr_cmdl, to_cmdl, fn): global special special[(fr_cmdl, to_cmdl)] = fn -add_cmodel( 0, "bc_transparency") +add_cmodel( 0, "bc_transparency", "clr", "clear") add_cmodel( 1, "bc_compressed") add_cmodel( 2, "bc_rgb8", "i8", "rgb8") @@ -561,6 +566,7 @@ add_cmodel(43, "bc_rgbx_float", "fp", "rgbfloat", "xfp") specialize("bc_rgba8888", "bc_transparency", "XFER_rgba8888_to_transparency") ctype = { + "clr": None, "i8": "uint8_t", "i16": "uint16_t", "fp": "float", @@ -571,6 +577,11 @@ adata = { "i16": " z_int a=0xffff;", "fp": " z_float fa=1;", } +cdata = { + "i8": " z_int a = bg_a;", + "i16": " z_int a = bg_a;", + "fp": " z_float fa = bg_fa;", +} def has_alpha(nm): return nm in ["bc_rgba8888", "bc_argb8888", "bc_abgr8888", \ @@ -592,7 +603,8 @@ def is_rgb(nm): "bc_argb8888", "bc_abgr8888", "bc_rgb", "bc_rgb161616", \ "bc_rgba16161616", "bc_rgb_float", "bc_rgba_float", \ "bc_rgb_floatp", "bc_rgba_floatp", "bc_gbrp", \ - "bc_rgbx8888", "bc_rgbx16161616", "bc_rgbx_float", ] + "bc_rgbx8888", "bc_rgbx16161616", "bc_rgbx_float", \ + "bc_transparency"] def is_yuv(nm): return nm in [ "bc_yuv888", "bc_yuva8888", "bc_yuv161616", \ @@ -612,14 +624,17 @@ def is_float(nm): def gen_xfer_proto(fd, pfx, cls, fr_cmdl, to_cmdl): global dtype, ctype print("%svoid %sxfer_%s_to_%s" % (pfx, cls, fr_cmdl[3:], to_cmdl[3:]), end=' ', file=fd) - ityp = dtype[fr_cmdl]; fr_typ = ctype[ityp]; - otyp = dtype[to_cmdl]; to_typ = ctype[otyp]; + ityp = dtype[fr_cmdl]; + otyp = dtype[to_cmdl]; print("(unsigned y0, unsigned y1)", end=' ', file=fd) def gen_xfer_fn(fd, fr_cmdl, to_cmdl): - global layout, dtype, adata + global layout, dtype, adata, cdata ityp = dtype[fr_cmdl]; otyp = dtype[to_cmdl] if( ityp is None or otyp is None ): return + fr_typ = ctype[ityp]; + to_typ = ctype[otyp]; + if( to_typ is None ): return # xfr fn header gen_xfer_proto(fd, "", class_qual, fr_cmdl, to_cmdl); # xfr fn body @@ -631,8 +646,12 @@ def gen_xfer_fn(fd, fr_cmdl, to_cmdl): out_xfer = "flat" if not is_planar(to_cmdl) else \ to_cmdl[3:] if is_yuv(to_cmdl) else \ "rgbp" if not has_alpha(to_cmdl) else "rgbap" - print(" xfer_%s_row_out(%s) xfer_%s_row_in(%s)" % (out_xfer, ctype[otyp], in_xfer, ctype[ityp]), file=fd) - + print(" xfer_%s_row_out(%s)" % (out_xfer, to_typ), end=' ', file=fd) + if( fr_typ is None ): + print(" xfer_clear()", end=' ', file=fd) + else: + print(" xfer_%s_row_in(%s)" % (in_xfer, fr_typ), end=' ', file=fd) + print("", file=fd) # load inp if( is_float(to_cmdl) and is_yuv(fr_cmdl) ): for ic in layout[fr_cmdl]: print("%s" % (base[ic][ityp]['r']), end=' ', file=fd) @@ -650,11 +669,14 @@ def gen_xfer_fn(fd, fr_cmdl, to_cmdl): else: for ic in layout[fr_cmdl]: print("%s" % (base[ic][otyp]['r']), end=' ', file=fd) if( has_alpha(to_cmdl) and not has_alpha(fr_cmdl) ): - print("%s" % (adata[otyp]), end=' ', file=fd) + alfa = cdata if fr_typ is None else adata + print("%s" % (alfa[otyp]), end=' ', file=fd) print("", file=fd) # xfer if( is_rgb(fr_cmdl) and is_yuv(to_cmdl) ): - if( otyp == "i8" ): + if( ityp == "clr" ): + print(" int32_t y = r, u = g, v = b;", file=fd) + elif( otyp == "i8" ): print(" int32_t y, u, v; YUV::yuv.rgb_to_yuv_8(r, g, b, y, u, v);", file=fd) elif( otyp == "i16" ): print(" int32_t y, u, v; YUV::yuv.rgb_to_yuv_16(r, g, b, y, u, v);", file=fd) @@ -698,7 +720,7 @@ for fr_cmdl in cmodels: if( is_specialized(fr_cmdl, to_cmdl) ): print(" void %s(unsigned y0, unsigned y1);" % (special[(fr_cmdl, to_cmdl)]), file=fd) continue - if( ityp is None or otyp is None ): continue + if( ityp is None or otyp is None or ctype[otyp] is None ): continue gen_xfer_proto(fd, " ", "", fr_cmdl, to_cmdl); print(";", file=fd) # end of class definition @@ -734,7 +756,7 @@ for fr_no in range(mx_no): to_cmdl = bcmodels.get(to_no) otyp = dtype[to_cmdl] xfn = special[(fr_cmdl, to_cmdl)] if( is_specialized(fr_cmdl, to_cmdl) ) else \ - "xfer_%s_to_%s" % (fr_cmdl[3:], to_cmdl[3:]) if ( ityp and otyp ) else None + "xfer_%s_to_%s" % (fr_cmdl[3:], to_cmdl[3:]) if ( ityp and otyp and ctype[otyp] ) else None if( n > 72 ): print("", file=fd); n = 0 if( n == 0 ): print(" ", end=' ', file=fd); n += 4 fn = "&%s%s" % (class_qual, xfn) if( xfn ) else "0" diff --git a/cinelerra-5.1/guicast/bccmodels.h b/cinelerra-5.1/guicast/bccmodels.h index 57843aa9..20d2a899 100644 --- a/cinelerra-5.1/guicast/bccmodels.h +++ b/cinelerra-5.1/guicast/bccmodels.h @@ -66,7 +66,7 @@ enum BC_CModel { BC_AYUV16161616 = 35, BC_GREY8 = 36, BC_GREY16 = 37, -//only used for chroma only xfers (transfer with bg_color < 0) +//only used for chroma only xfers (transfer with bg_color = -1) BC_RGBX8888 = 39, BC_RGBX16161616 = 40, BC_YUVX8888 = 41, @@ -134,6 +134,11 @@ public: unsigned char **input_ptrs, int in_colormodel, int in_x, int in_y, int in_w, int in_h, int in_rowspan, int bg_color); +// paint buffer solid color + static void init_color(int color, int alpha, + unsigned char **output_rows, int out_colormodel, + unsigned char *out_yp, unsigned char *out_up, unsigned char *out_vp, + int out_x, int out_y, int out_w, int out_h, int out_rowspan); static int bc_to_x(int color_model); static void bcxfer_stop_slicers(); diff --git a/cinelerra-5.1/guicast/bcxfer.C b/cinelerra-5.1/guicast/bcxfer.C index d94fc389..4b98f118 100644 --- a/cinelerra-5.1/guicast/bcxfer.C +++ b/cinelerra-5.1/guicast/bcxfer.C @@ -4,10 +4,10 @@ void BC_Xfer::init( uint8_t *out_yp, uint8_t *out_up, uint8_t *out_vp, uint8_t *out_ap, int out_rowspan, uint8_t **input_rows, int in_colormodel, int in_x, int in_y, int in_w, int in_h, uint8_t *in_yp, uint8_t *in_up, uint8_t *in_vp, uint8_t *in_ap, int in_rowspan, - int bg_color) + int bg_color, int bg_alpha) { - this->bg_color = bg_color; if( bg_color >= 0 ) { + this->bg_a = bg_alpha; // only used with init_color this->bg_r = (bg_color>>16) & 0xff; this->bg_g = (bg_color>>8) & 0xff; this->bg_b = (bg_color>>0) & 0xff; @@ -20,9 +20,26 @@ void BC_Xfer::init( case BC_YUVA16161616: in_colormodel = BC_YUVX16161616; break; case BC_RGBA_FLOAT: in_colormodel = BC_RGBX_FLOAT; break; } + this->bg_r = this->bg_g = this->bg_b = this->bg_a = 0; } - // prevent bounds errors on poorly dimensioned macro pixel formats + int pmx = BC_CModels::calculate_max(out_colormodel); switch( in_colormodel ) { + case BC_TRANSPARENCY: + if( BC_CModels::is_yuv(out_colormodel) ) { + int ry = this->bg_r, gu = this->bg_g, bv = this->bg_b; + YUV::yuv.rgb_to_yuv_8(ry, gu, bv); + this->bg_r = ry, this->bg_g = gu, this->bg_b = bv; + } + if( pmx > 0xff ) { + this->bg_r <<= 8; + this->bg_g <<= 8; + this->bg_b <<= 8; + this->bg_a <<= 8; + } + else + pmx = 0xff; + break; + // prevent bounds errors on poorly dimensioned macro pixel formats case BC_UVY422: case BC_YUV422: in_w &= ~1; break; // 2x1 case BC_YUV420P: @@ -84,32 +101,43 @@ void BC_Xfer::init( this->total_out_w = out_rowspan; this->in_pixelsize = BC_CModels::calculate_pixelsize(in_colormodel); this->out_pixelsize = BC_CModels::calculate_pixelsize(out_colormodel); - this->scale = (out_w != in_w) || (in_x != 0); - + if( in_w ) { + this->scale = (out_w != in_w) || (in_x != 0); /* + 1 so we don't overflow when calculating in advance */ - column_table = new int[out_w+1]; - double hscale = (double)in_w/out_w; - for( int i=0; iscale = 0; + column_table = 0; + row_table = 0; } - double vscale = (double)in_h/out_h; - row_table = new int[out_h]; - for( int i=0; ibg_fa = (float)this->bg_a / pmx; + this->bg_fr = (float)this->bg_r / pmx; + this->bg_fg = (float)this->bg_g / pmx; + this->bg_fb = (float)this->bg_b / pmx; } BC_Xfer::BC_Xfer(uint8_t **output_rows, uint8_t **input_rows, uint8_t *out_yp, uint8_t *out_up, uint8_t *out_vp, uint8_t *in_yp, uint8_t *in_up, uint8_t *in_vp, int in_x, int in_y, int in_w, int in_h, int out_x, int out_y, int out_w, int out_h, - int in_colormodel, int out_colormodel, int bg_color, int in_rowspan, int out_rowspan) + int in_colormodel, int out_colormodel, int bg_color, int bg_alpha, + int in_rowspan, int out_rowspan) { init(output_rows, out_colormodel, out_x, out_y, out_w, out_h, out_yp, out_up, out_vp, 0, out_rowspan, input_rows, in_colormodel, in_x, in_y, in_w, in_h, - in_yp, in_up, in_vp, 0, in_rowspan, bg_color); + in_yp, in_up, in_vp, 0, in_rowspan, bg_color, bg_alpha); } BC_Xfer::BC_Xfer( @@ -117,7 +145,7 @@ BC_Xfer::BC_Xfer( int out_x, int out_y, int out_w, int out_h, int out_rowspan, uint8_t **input_ptrs, int in_colormodel, int in_x, int in_y, int in_w, int in_h, int in_rowspan, - int bg_color) + int bg_color, int bg_alpha) { uint8_t *out_yp = 0, *out_up = 0, *out_vp = 0, *out_ap = 0; uint8_t *in_yp = 0, *in_up = 0, *in_vp = 0, *in_ap = 0; @@ -132,7 +160,7 @@ BC_Xfer::BC_Xfer( init(output_ptrs, out_colormodel, out_x, out_y, out_w, out_h, out_yp, out_up, out_vp, out_ap, out_rowspan, input_ptrs, in_colormodel, in_x, in_y, in_w, in_h, - in_yp, in_up, in_vp, in_ap, in_rowspan, bg_color); + in_yp, in_up, in_vp, in_ap, in_rowspan, bg_color, bg_alpha); } BC_Xfer::~BC_Xfer() @@ -142,15 +170,16 @@ BC_Xfer::~BC_Xfer() } void BC_CModels::transfer(unsigned char **output_rows, unsigned char **input_rows, - unsigned char *out_yp, unsigned char *out_up, unsigned char *out_vp, - unsigned char *in_yp, unsigned char *in_up, unsigned char *in_vp, - int in_x, int in_y, int in_w, int in_h, int out_x, int out_y, int out_w, int out_h, - int in_colormodel, int out_colormodel, int bg_color, int in_rowspan, int out_rowspan) + unsigned char *out_yp, unsigned char *out_up, unsigned char *out_vp, + unsigned char *in_yp, unsigned char *in_up, unsigned char *in_vp, + int in_x, int in_y, int in_w, int in_h, int out_x, int out_y, int out_w, int out_h, + int in_colormodel, int out_colormodel, int bg_color, + int in_rowspan, int out_rowspan) { BC_Xfer xfer(output_rows, input_rows, out_yp, out_up, out_vp, in_yp, in_up, in_vp, in_x, in_y, in_w, in_h, out_x, out_y, out_w, out_h, - in_colormodel, out_colormodel, bg_color, in_rowspan, out_rowspan); + in_colormodel, out_colormodel, bg_color,0xff, in_rowspan, out_rowspan); xfer.xfer(); } @@ -158,11 +187,25 @@ void BC_CModels::transfer( uint8_t **output_ptrs, int out_colormodel, int out_x, int out_y, int out_w, int out_h, int out_rowspan, uint8_t **input_ptrs, int in_colormodel, - int in_x, int in_y, int in_w, int in_h, int in_rowspan, int bg_color) + int in_x, int in_y, int in_w, int in_h, int in_rowspan, + int bg_color) { BC_Xfer xfer( output_ptrs, out_colormodel, out_x, out_y, out_w, out_h, out_rowspan, - input_ptrs, in_colormodel, in_x, in_y, in_w, in_h, in_rowspan, bg_color); + input_ptrs, in_colormodel, in_x, in_y, in_w, in_h, in_rowspan, + bg_color,0xff); + xfer.xfer(); +} + +// color is rgb +void BC_CModels::init_color(int color, int alpha, + unsigned char **output_rows, int out_colormodel, + unsigned char *out_yp, unsigned char *out_up, unsigned char *out_vp, + int out_x, int out_y, int out_w, int out_h, int out_rowspan) +{ + BC_Xfer xfer(output_rows, 0, out_yp,out_up,out_vp, 0,0,0, + 0,0,0,0, out_x,out_y,out_w,out_h, BC_TRANSPARENCY, + out_colormodel, color,alpha, 0, out_rowspan); xfer.xfer(); } diff --git a/cinelerra-5.1/guicast/bcxfer.h b/cinelerra-5.1/guicast/bcxfer.h index efcbc41f..c1234604 100644 --- a/cinelerra-5.1/guicast/bcxfer.h +++ b/cinelerra-5.1/guicast/bcxfer.h @@ -32,6 +32,9 @@ ZTYP(float); for( unsigned j=0; j= 0 ) { + BC_CModels::init_color(clear_color, clear_alpha, get_rows(), get_color_model(), + get_y(), get_u(), get_v(), 0,0, get_w(),get_h(), get_bytes_per_line()); + } + else + black_frame(); } void VFrame::rotate90() diff --git a/cinelerra-5.1/guicast/vframe.h b/cinelerra-5.1/guicast/vframe.h index af8040a5..5c717200 100644 --- a/cinelerra-5.1/guicast/vframe.h +++ b/cinelerra-5.1/guicast/vframe.h @@ -29,7 +29,6 @@ #include "bctexture.inc" #include "bcwindowbase.inc" #include "bccmodels.h" -#include "bccmodels.h" #include "vframe.inc" // Maximum number of prev or next effects to be pushed onto the stacks. @@ -140,7 +139,8 @@ public: return transfer_from(frame, bg_color, 0,0, frame->get_w(),frame->get_h()); } // Required for YUV - int clear_frame(); + void black_frame(); + void clear_frame(); int allocate_compressed_data(long bytes); // Sequence number. -1 means invalid. Passing frames to the encoder is @@ -291,6 +291,11 @@ public: // Calls init_screen with the current frame's dimensions. void init_screen(); +// color used by clear_frame, default -1 (unset) which clears to BLACK + void set_clear_color(int color, int alpha); + int get_clear_color(); + int get_clear_alpha(); + // Compiles and links the shaders into a program. // Adds the program with put_shader. // Returns the program handle. @@ -432,6 +437,8 @@ private: unsigned char *a; // Dimensions of frame int w, h; +// color used by clear_frame + int clear_color, clear_alpha; // Info for reading png images const unsigned char *image; long image_offset; diff --git a/cinelerra-5.1/guicast/vframe3d.C b/cinelerra-5.1/guicast/vframe3d.C index d7d4af0a..42d91ba1 100644 --- a/cinelerra-5.1/guicast/vframe3d.C +++ b/cinelerra-5.1/guicast/vframe3d.C @@ -445,8 +445,14 @@ void VFrame::dump_shader(int shader_id) void VFrame::clear_pbuffer() { #ifdef HAVE_GL - float gbuv = BC_CModels::is_yuv(get_color_model()) ? 0.5 : 0; - glClearColor(0.0, gbuv, gbuv, 0.0); + int rgb = clear_color>=0 ? clear_color : 0; + int a = clear_color>=0 ? clear_alpha : 0; + int r = (rgb>>16) & 0xff; + int g = (rgb>> 8) & 0xff; + int b = (rgb>> 0) & 0xff; + if( BC_CModels::is_yuv(get_color_model()) ) + YUV::yuv.rgb_to_yuv_8(r, g, b); + glClearColor(r/255.f, g/255.f, b/255.f, a/255.f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); #endif } diff --git a/cinelerra-5.1/plugins/gradient/gradient.C b/cinelerra-5.1/plugins/gradient/gradient.C index 8e3ac91e..fa001041 100644 --- a/cinelerra-5.1/plugins/gradient/gradient.C +++ b/cinelerra-5.1/plugins/gradient/gradient.C @@ -386,16 +386,10 @@ GradientInColorButton::GradientInColorButton(GradientMain *plugin, GradientWindo { this->plugin = plugin; this->gui = gui; - for( int i=0; i<3; ++i ) { - vframes[i] = new VFrame(COLOR_W, COLOR_H, BC_RGB888); - vframes[i]->clear_frame(); - } } GradientInColorButton::~GradientInColorButton() { - for( int i=0; i<3; ++i ) - delete vframes[i]; } void GradientInColorButton::handle_done_event(int result) @@ -424,22 +418,16 @@ GradientOutColorButton::GradientOutColorButton(GradientMain *plugin, GradientWin { this->plugin = plugin; this->gui = gui; - for( int i=0; i<3; ++i ) { - vframes[i] = new VFrame(COLOR_W, COLOR_H, BC_RGB888); - vframes[i]->clear_frame(); - } } GradientOutColorButton::~GradientOutColorButton() { - for( int i=0; i<3; ++i ) - delete vframes[i]; } void GradientOutColorButton::handle_done_event(int result) { if( result ) { - gui->lock_window("GradientInColorButton::handle_done_event"); + gui->lock_window("GradientOutColorButton::handle_done_event"); update_gui(orig_color, orig_alpha); gui->unlock_window(); handle_new_color(orig_color, orig_alpha); diff --git a/cinelerra-5.1/plugins/sketcher/sketcherwindow.C b/cinelerra-5.1/plugins/sketcher/sketcherwindow.C index eb5a49f2..dd917e4b 100644 --- a/cinelerra-5.1/plugins/sketcher/sketcherwindow.C +++ b/cinelerra-5.1/plugins/sketcher/sketcherwindow.C @@ -102,16 +102,10 @@ SketcherCurveColor::SketcherCurveColor(SketcherWindow *gui, { this->gui = gui; this->color = CV_COLOR; - for( int i=0; i<3; ++i ) { - vframes[i] = new VFrame(w, h, BC_RGB888); - vframes[i]->clear_frame(); - } } SketcherCurveColor::~SketcherCurveColor() { - for( int i=0; i<3; ++i ) - delete vframes[i]; } void SketcherCurveColor::handle_done_event(int result) diff --git a/cinelerra-5.1/plugins/theme_blond/mask_all_linear.png b/cinelerra-5.1/plugins/theme_blond/mask_all_linear.png new file mode 100644 index 00000000..001d0e96 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_blond/mask_all_smooth.png new file mode 100644 index 00000000..49fa6d1f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_button_dn.png b/cinelerra-5.1/plugins/theme_blond/mask_button_dn.png new file mode 100644 index 00000000..9d9eefe6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_button_hi.png b/cinelerra-5.1/plugins/theme_blond/mask_button_hi.png new file mode 100644 index 00000000..d0863324 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_button_up.png b/cinelerra-5.1/plugins/theme_blond/mask_button_up.png new file mode 100644 index 00000000..bf161e8e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_blond/mask_crv_linear.png new file mode 100644 index 00000000..776f9779 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_blond/mask_crv_smooth.png new file mode 100644 index 00000000..2670fdbf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_blond/mask_pnt_linear.png new file mode 100644 index 00000000..1301f2f7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_blond/mask_pnt_smooth.png new file mode 100644 index 00000000..7a8c72ec Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_crc.png new file mode 100644 index 00000000..06097a45 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_load.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_load.png new file mode 100644 index 00000000..d02083f1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_ovl.png new file mode 100644 index 00000000..28bcce28 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_save.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_save.png new file mode 100644 index 00000000..c4cfd9a9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_sqr.png new file mode 100644 index 00000000..dd30da16 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_tri.png new file mode 100644 index 00000000..cd1090b5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_blond/mask_prst_trsh.png new file mode 100644 index 00000000..1b47ed90 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_blond/mask_pstn_cen.png new file mode 100644 index 00000000..3a387219 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_blond/mask_pstn_nrm.png new file mode 100644 index 00000000..fcae6372 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_chkd.png new file mode 100644 index 00000000..6e75ca43 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_chkdhi.png new file mode 100644 index 00000000..560dac4d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_up.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_up.png new file mode 100644 index 00000000..bf161e8e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_uphi.png new file mode 100644 index 00000000..d0863324 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_x.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_x.png new file mode 100644 index 00000000..6055af16 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_xdown.png new file mode 100644 index 00000000..812086aa Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_xy.png new file mode 100644 index 00000000..4464ab34 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_xydown.png new file mode 100644 index 00000000..5fb66c23 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_y.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_y.png new file mode 100644 index 00000000..c3879aa5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_blond/mask_scale_ydown.png new file mode 100644 index 00000000..18b39836 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..98dced6c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_all_linear.svg @@ -0,0 +1,261 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..feabbe3c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_all_smooth.svg @@ -0,0 +1,309 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..e2c1b1a4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_dn.svg @@ -0,0 +1,261 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..af51dbd8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_hi.svg @@ -0,0 +1,285 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..3860dcf0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_button_up.svg @@ -0,0 +1,208 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..35b3be14 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_crv_linear.svg @@ -0,0 +1,195 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..56074753 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,254 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..ef6637fb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,187 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..ca3316f8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,245 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..7f7b58be --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_crc.svg @@ -0,0 +1,210 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..aec46578 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_load.svg @@ -0,0 +1,246 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..e58ced6b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,208 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..489dae2a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_save.svg @@ -0,0 +1,246 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..32814a78 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,208 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..3e5309b0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_tri.svg @@ -0,0 +1,206 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..9f4a8591 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,246 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..833faed5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,228 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..046ab7d1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,265 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..b617bee2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,285 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..c4efe3f3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,297 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..1c30bf03 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_up.svg @@ -0,0 +1,219 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..92a3a367 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,296 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..7bc49348 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_x.svg @@ -0,0 +1,219 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..edc91935 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,297 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..6f027393 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xy.svg @@ -0,0 +1,239 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..cdac971e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,317 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..7385fc67 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_y.svg @@ -0,0 +1,219 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..2910438a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,297 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear.svg new file mode 100644 index 00000000..15e83923 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear.svg @@ -0,0 +1,218 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..e2c1b1a4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_dn.svg @@ -0,0 +1,261 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..af51dbd8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_hi.svg @@ -0,0 +1,285 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_up.svg new file mode 100644 index 00000000..3860dcf0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond/source_SVG/unclear_up.svg @@ -0,0 +1,208 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond/unclear.png b/cinelerra-5.1/plugins/theme_blond/unclear.png new file mode 100644 index 00000000..8e631961 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/unclear_dn.png b/cinelerra-5.1/plugins/theme_blond/unclear_dn.png new file mode 100644 index 00000000..9d9eefe6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/unclear_hi.png b/cinelerra-5.1/plugins/theme_blond/unclear_hi.png new file mode 100644 index 00000000..d0863324 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/unclear_up.png b/cinelerra-5.1/plugins/theme_blond/unclear_up.png new file mode 100644 index 00000000..bf161e8e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_all_linear.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_all_linear.png new file mode 100644 index 00000000..001d0e96 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_all_smooth.png new file mode 100644 index 00000000..49fa6d1f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_button_dn.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_button_dn.png new file mode 100644 index 00000000..d8c9dc5a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_button_hi.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_button_hi.png new file mode 100644 index 00000000..83b42a8d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_button_up.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_button_up.png new file mode 100644 index 00000000..ac9b2bc9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_crv_linear.png new file mode 100644 index 00000000..776f9779 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_crv_smooth.png new file mode 100644 index 00000000..2670fdbf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_pnt_linear.png new file mode 100644 index 00000000..1301f2f7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_pnt_smooth.png new file mode 100644 index 00000000..7a8c72ec Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_crc.png new file mode 100644 index 00000000..06097a45 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_load.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_load.png new file mode 100644 index 00000000..d02083f1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_ovl.png new file mode 100644 index 00000000..28bcce28 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_save.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_save.png new file mode 100644 index 00000000..c4cfd9a9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_sqr.png new file mode 100644 index 00000000..dd30da16 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_tri.png new file mode 100644 index 00000000..cd1090b5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_trsh.png new file mode 100644 index 00000000..1b47ed90 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_pstn_cen.png new file mode 100644 index 00000000..3a387219 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_pstn_nrm.png new file mode 100644 index 00000000..fcae6372 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_chkd.png new file mode 100644 index 00000000..1b551e56 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_chkdhi.png new file mode 100644 index 00000000..f6bca3e4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_up.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_up.png new file mode 100644 index 00000000..ac9b2bc9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_uphi.png new file mode 100644 index 00000000..a3d9e1d7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_x.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_x.png new file mode 100644 index 00000000..6055af16 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xdown.png new file mode 100644 index 00000000..7c729e69 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xy.png new file mode 100644 index 00000000..4464ab34 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xydown.png new file mode 100644 index 00000000..1de22661 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_y.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_y.png new file mode 100644 index 00000000..c3879aa5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_ydown.png new file mode 100644 index 00000000..0192df0c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..595d9e84 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_all_linear.svg @@ -0,0 +1,376 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..4bb797de --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_all_smooth.svg @@ -0,0 +1,424 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..2248448b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_dn.svg @@ -0,0 +1,344 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..4560b160 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_hi.svg @@ -0,0 +1,344 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..a420a319 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_button_up.svg @@ -0,0 +1,323 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..d31d2363 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_crv_linear.svg @@ -0,0 +1,310 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..40e90ec6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,369 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..ef5542e4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,302 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..6aa110ae --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,360 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..329f954a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_crc.svg @@ -0,0 +1,325 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..2ac2fbd8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_load.svg @@ -0,0 +1,361 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..e43d556b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,323 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..c2be015d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_save.svg @@ -0,0 +1,361 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..0d85e0ab --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,323 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..4960e7f6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_tri.svg @@ -0,0 +1,321 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..af22699d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,361 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..b12bbc6c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,343 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..ad37af24 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,380 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..587c5305 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,336 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..9196916a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,336 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..b2deddcf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_up.svg @@ -0,0 +1,323 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..eea66894 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,344 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..7d572d51 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_x.svg @@ -0,0 +1,334 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..fb0f378b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,366 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..e349cff1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xy.svg @@ -0,0 +1,354 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..230901c1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,386 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..9b2a1158 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_y.svg @@ -0,0 +1,334 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..16b17f1e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,366 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear.svg new file mode 100644 index 00000000..9852e0f7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear.svg @@ -0,0 +1,333 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..2248448b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_dn.svg @@ -0,0 +1,344 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..4560b160 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_hi.svg @@ -0,0 +1,344 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_up.svg new file mode 100644 index 00000000..a420a319 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blond_cv/source_SVG/unclear_up.svg @@ -0,0 +1,323 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blond_cv/unclear.png b/cinelerra-5.1/plugins/theme_blond_cv/unclear.png new file mode 100644 index 00000000..8e631961 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/unclear_dn.png b/cinelerra-5.1/plugins/theme_blond_cv/unclear_dn.png new file mode 100644 index 00000000..d8c9dc5a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/unclear_hi.png b/cinelerra-5.1/plugins/theme_blond_cv/unclear_hi.png new file mode 100644 index 00000000..83b42a8d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/unclear_up.png b/cinelerra-5.1/plugins/theme_blond_cv/unclear_up.png new file mode 100644 index 00000000..ac9b2bc9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blond_cv/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_all_linear.png b/cinelerra-5.1/plugins/theme_blue/mask_all_linear.png new file mode 100644 index 00000000..ec43b0b9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_blue/mask_all_smooth.png new file mode 100644 index 00000000..4cab563c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_button_dn.png b/cinelerra-5.1/plugins/theme_blue/mask_button_dn.png new file mode 100644 index 00000000..35a37147 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_button_hi.png b/cinelerra-5.1/plugins/theme_blue/mask_button_hi.png new file mode 100644 index 00000000..9fb80b7b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_button_up.png b/cinelerra-5.1/plugins/theme_blue/mask_button_up.png new file mode 100644 index 00000000..fc52498d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_blue/mask_crv_linear.png new file mode 100644 index 00000000..e2093bf6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_blue/mask_crv_smooth.png new file mode 100644 index 00000000..32fe205a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_blue/mask_pnt_linear.png new file mode 100644 index 00000000..79835735 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_blue/mask_pnt_smooth.png new file mode 100644 index 00000000..92173d38 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_crc.png new file mode 100644 index 00000000..01a540b8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_load.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_load.png new file mode 100644 index 00000000..7e35011b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_ovl.png new file mode 100644 index 00000000..8760bf29 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_save.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_save.png new file mode 100644 index 00000000..726a085d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_sqr.png new file mode 100644 index 00000000..ff3dc1b1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_tri.png new file mode 100644 index 00000000..5118e349 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_blue/mask_prst_trsh.png new file mode 100644 index 00000000..d1f8f908 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_blue/mask_pstn_cen.png new file mode 100644 index 00000000..1477c60b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_blue/mask_pstn_nrm.png new file mode 100644 index 00000000..c19e8ce7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_chkd.png new file mode 100644 index 00000000..db23a74c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_chkdhi.png new file mode 100644 index 00000000..b0601293 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_up.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_up.png new file mode 100644 index 00000000..fc52498d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_uphi.png new file mode 100644 index 00000000..9fb80b7b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_x.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_x.png new file mode 100644 index 00000000..e4d0c527 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_xdown.png new file mode 100644 index 00000000..4e0292e0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_xy.png new file mode 100644 index 00000000..d81f83e6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_xydown.png new file mode 100644 index 00000000..acef7141 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_y.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_y.png new file mode 100644 index 00000000..1ae351b7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_blue/mask_scale_ydown.png new file mode 100644 index 00000000..9a457e61 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..14815322 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_all_linear.svg @@ -0,0 +1,200 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..2c701fb8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_all_smooth.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..7177fec5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_dn.svg @@ -0,0 +1,196 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..7afe317e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_hi.svg @@ -0,0 +1,224 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..b7a0a689 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_button_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..78d0b06c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_crv_linear.svg @@ -0,0 +1,133 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..63a67d04 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,193 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..9d8a2cc8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,125 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..c4716e1b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,184 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..7db332d1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_crc.svg @@ -0,0 +1,149 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..5eb5e531 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_load.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..ef9202a3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..1d1031f6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_save.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..9662dbe7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..374d7071 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_tri.svg @@ -0,0 +1,145 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..eb2058e2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..926a5bb1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..925f36c1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,204 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..92027159 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,224 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..a7da09d3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,236 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..fc5b19e4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_up.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..f289fb71 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,235 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..8191dd65 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_x.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..399bad90 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,229 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..ccd16378 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xy.svg @@ -0,0 +1,178 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..1cea3061 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,249 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..50411eae --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_y.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..6d4b0ba8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,229 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear.svg new file mode 100644 index 00000000..4215890e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear.svg @@ -0,0 +1,157 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..7177fec5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_dn.svg @@ -0,0 +1,196 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..7afe317e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_hi.svg @@ -0,0 +1,224 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_up.svg new file mode 100644 index 00000000..b7a0a689 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue/source_SVG/unclear_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue/unclear.png b/cinelerra-5.1/plugins/theme_blue/unclear.png new file mode 100644 index 00000000..21316f04 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/unclear_dn.png b/cinelerra-5.1/plugins/theme_blue/unclear_dn.png new file mode 100644 index 00000000..35a37147 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/unclear_hi.png b/cinelerra-5.1/plugins/theme_blue/unclear_hi.png new file mode 100644 index 00000000..9fb80b7b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/unclear_up.png b/cinelerra-5.1/plugins/theme_blue/unclear_up.png new file mode 100644 index 00000000..fc52498d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_all_linear.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_all_linear.png new file mode 100644 index 00000000..79ecf247 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_all_smooth.png new file mode 100644 index 00000000..98d511ea Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_button_dn.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_button_dn.png new file mode 100644 index 00000000..80cb7a62 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_button_hi.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_button_hi.png new file mode 100644 index 00000000..88ca0fff Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_button_up.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_button_up.png new file mode 100644 index 00000000..996aa58c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_crv_linear.png new file mode 100644 index 00000000..b82dd90e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_crv_smooth.png new file mode 100644 index 00000000..dc5e344a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_pnt_linear.png new file mode 100644 index 00000000..1e77fd3d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_pnt_smooth.png new file mode 100644 index 00000000..ed476ee2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_crc.png new file mode 100644 index 00000000..1818cd09 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_load.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_load.png new file mode 100644 index 00000000..649cda04 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_ovl.png new file mode 100644 index 00000000..f41e3b5c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_save.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_save.png new file mode 100644 index 00000000..251406bb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_sqr.png new file mode 100644 index 00000000..9ac6cbd3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_tri.png new file mode 100644 index 00000000..2cea21da Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_trsh.png new file mode 100644 index 00000000..38d4a369 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_pstn_cen.png new file mode 100644 index 00000000..3a06986f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_pstn_nrm.png new file mode 100644 index 00000000..5f341f43 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_chkd.png new file mode 100644 index 00000000..e5dfca82 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_chkdhi.png new file mode 100644 index 00000000..67770ea6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_up.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_up.png new file mode 100644 index 00000000..996aa58c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_uphi.png new file mode 100644 index 00000000..fd91ee9b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_x.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_x.png new file mode 100644 index 00000000..c2e28ee6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xdown.png new file mode 100644 index 00000000..8c72b90b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xy.png new file mode 100644 index 00000000..96febe1d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xydown.png new file mode 100644 index 00000000..0dd09d79 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_y.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_y.png new file mode 100644 index 00000000..1c086caf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_ydown.png new file mode 100644 index 00000000..e01f4eab Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..6973de62 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_all_linear.svg @@ -0,0 +1,322 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..e5fcd385 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_all_smooth.svg @@ -0,0 +1,374 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..8b9df49b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_dn.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..aa321fcf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_hi.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..d47b7146 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_button_up.svg @@ -0,0 +1,273 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..6c1e4fcc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_crv_linear.svg @@ -0,0 +1,256 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..8fef36d8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,319 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..5bb86465 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..7ab793a6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,306 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..eb35b443 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_crc.svg @@ -0,0 +1,275 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..40c74ff2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_load.svg @@ -0,0 +1,311 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..a2f8656f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,273 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..eb02f843 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_save.svg @@ -0,0 +1,311 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..1788e4fa --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,273 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..4a205def --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_tri.svg @@ -0,0 +1,271 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..1a46f36f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,311 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..914b60b9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,293 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..d4cb6bee --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,330 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..cd978a37 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,291 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..451466d3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,291 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..39772436 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_up.svg @@ -0,0 +1,273 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..35b14cf7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..4952354c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_x.svg @@ -0,0 +1,284 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..4658454a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,313 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..b7c01a22 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xy.svg @@ -0,0 +1,304 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..66914c76 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,333 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..64d0650d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_y.svg @@ -0,0 +1,284 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..8e8bf559 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,313 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear.svg new file mode 100644 index 00000000..985c33f3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear.svg @@ -0,0 +1,283 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..8b9df49b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_dn.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..aa321fcf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_hi.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_up.svg new file mode 100644 index 00000000..d47b7146 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_blue_dot/source_SVG/unclear_up.svg @@ -0,0 +1,273 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_blue_dot/unclear.png b/cinelerra-5.1/plugins/theme_blue_dot/unclear.png new file mode 100644 index 00000000..c3915883 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/unclear_dn.png b/cinelerra-5.1/plugins/theme_blue_dot/unclear_dn.png new file mode 100644 index 00000000..80cb7a62 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/unclear_hi.png b/cinelerra-5.1/plugins/theme_blue_dot/unclear_hi.png new file mode 100644 index 00000000..88ca0fff Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/unclear_up.png b/cinelerra-5.1/plugins/theme_blue_dot/unclear_up.png new file mode 100644 index 00000000..996aa58c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_blue_dot/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_all_linear.png b/cinelerra-5.1/plugins/theme_bright/mask_all_linear.png new file mode 100644 index 00000000..2986a690 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_bright/mask_all_smooth.png new file mode 100644 index 00000000..088fb31b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_button_dn.png b/cinelerra-5.1/plugins/theme_bright/mask_button_dn.png new file mode 100644 index 00000000..8f117f2a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_button_hi.png b/cinelerra-5.1/plugins/theme_bright/mask_button_hi.png new file mode 100644 index 00000000..c9005881 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_button_up.png b/cinelerra-5.1/plugins/theme_bright/mask_button_up.png new file mode 100644 index 00000000..830d9b3c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_bright/mask_crv_linear.png new file mode 100644 index 00000000..e9dffdcf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_bright/mask_crv_smooth.png new file mode 100644 index 00000000..92943913 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_bright/mask_pnt_linear.png new file mode 100644 index 00000000..ac17b251 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_bright/mask_pnt_smooth.png new file mode 100644 index 00000000..6564e98e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_crc.png new file mode 100644 index 00000000..42bd1e43 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_load.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_load.png new file mode 100644 index 00000000..f4416298 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_ovl.png new file mode 100644 index 00000000..40e3e961 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_save.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_save.png new file mode 100644 index 00000000..39c4679e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_sqr.png new file mode 100644 index 00000000..c8241418 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_tri.png new file mode 100644 index 00000000..d69ac443 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_bright/mask_prst_trsh.png new file mode 100644 index 00000000..9bc40e38 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_bright/mask_pstn_cen.png new file mode 100644 index 00000000..515133f6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_bright/mask_pstn_nrm.png new file mode 100644 index 00000000..40e987a8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_chkd.png new file mode 100644 index 00000000..8f117f2a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_chkdhi.png new file mode 100644 index 00000000..c9005881 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_up.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_up.png new file mode 100644 index 00000000..830d9b3c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_uphi.png new file mode 100644 index 00000000..c9005881 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_x.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_x.png new file mode 100644 index 00000000..1f6e7e07 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_xdown.png new file mode 100644 index 00000000..0e638420 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_xy.png new file mode 100644 index 00000000..c5e0b7cd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_xydown.png new file mode 100644 index 00000000..a8c982fd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_y.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_y.png new file mode 100644 index 00000000..6cc4f886 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_bright/mask_scale_ydown.png new file mode 100644 index 00000000..46156302 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..bf677110 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_all_linear.svg @@ -0,0 +1,200 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..e7e1133c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_all_smooth.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..43855da3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_dn.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..e96f347a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_hi.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..bccd0112 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_button_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..8ec52300 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_crv_linear.svg @@ -0,0 +1,133 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..1eb9d727 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,193 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..7832cab3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,125 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..5c88871c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,184 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..8ade31e3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_crc.svg @@ -0,0 +1,149 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..ba3445c2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_load.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..e5b9a27f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..8dbd8786 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_save.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..12b896fb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..4473ddba --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_tri.svg @@ -0,0 +1,145 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..3a05721f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..2543ea27 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..49a661e6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,204 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..6cb09cd9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..c6de7fdf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..b06447bc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..c3c4fb7b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..4ca16067 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_x.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..19f7c12c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,169 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..ce049bdb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xy.svg @@ -0,0 +1,178 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..f046bab5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,189 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..125775fd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_y.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..40cc4dce --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,169 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear.svg new file mode 100644 index 00000000..c8728f92 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear.svg @@ -0,0 +1,157 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..43855da3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_dn.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..e96f347a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_hi.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_up.svg new file mode 100644 index 00000000..bccd0112 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_bright/source_SVG/unclear_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_bright/unclear.png b/cinelerra-5.1/plugins/theme_bright/unclear.png new file mode 100644 index 00000000..15299274 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/unclear_dn.png b/cinelerra-5.1/plugins/theme_bright/unclear_dn.png new file mode 100644 index 00000000..8f117f2a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/unclear_hi.png b/cinelerra-5.1/plugins/theme_bright/unclear_hi.png new file mode 100644 index 00000000..c9005881 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/unclear_up.png b/cinelerra-5.1/plugins/theme_bright/unclear_up.png new file mode 100644 index 00000000..830d9b3c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_bright/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_all_linear.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_all_linear.png new file mode 100644 index 00000000..f560cd2a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_all_smooth.png new file mode 100644 index 00000000..71ad4cda Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_button_dn.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_button_dn.png new file mode 100644 index 00000000..260d66a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_button_hi.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_button_hi.png new file mode 100644 index 00000000..d7a212f2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_button_up.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_button_up.png new file mode 100644 index 00000000..260d66a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_crv_linear.png new file mode 100644 index 00000000..83361d35 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_crv_smooth.png new file mode 100644 index 00000000..07807051 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_pnt_linear.png new file mode 100644 index 00000000..38e03e4c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_pnt_smooth.png new file mode 100644 index 00000000..be94f5dd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_crc.png new file mode 100644 index 00000000..7adb5caf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_load.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_load.png new file mode 100644 index 00000000..69874df4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_ovl.png new file mode 100644 index 00000000..1ecc4df6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_save.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_save.png new file mode 100644 index 00000000..ba96a790 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_sqr.png new file mode 100644 index 00000000..f9294d17 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_tri.png new file mode 100644 index 00000000..609c8f4d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_trsh.png new file mode 100644 index 00000000..a89ec98e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_pstn_cen.png new file mode 100644 index 00000000..82146787 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_pstn_nrm.png new file mode 100644 index 00000000..4309d4e9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_chkd.png new file mode 100644 index 00000000..ccd5c55f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_chkdhi.png new file mode 100644 index 00000000..20d961a9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_up.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_up.png new file mode 100644 index 00000000..260d66a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_uphi.png new file mode 100644 index 00000000..d7a212f2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_x.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_x.png new file mode 100644 index 00000000..04ab49e1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xdown.png new file mode 100644 index 00000000..bf89bffb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xy.png new file mode 100644 index 00000000..57f4405a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xydown.png new file mode 100644 index 00000000..eaa1cfe8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_y.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_y.png new file mode 100644 index 00000000..85f14909 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_ydown.png new file mode 100644 index 00000000..7755be41 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..1419d13b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_all_linear.svg @@ -0,0 +1,409 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..19acd170 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_all_smooth.svg @@ -0,0 +1,457 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..ca200ff2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_dn.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..7ead9619 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_hi.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..7d2d83ef --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_button_up.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..02faedfc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_crv_linear.svg @@ -0,0 +1,343 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..f58449d7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,402 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..1f742087 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,335 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..2d7e2eed --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,393 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..772e9501 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_crc.svg @@ -0,0 +1,358 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..7e6608b9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_load.svg @@ -0,0 +1,394 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..d269c0ba --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..41cc7866 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_save.svg @@ -0,0 +1,394 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..e25db347 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_trash.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_trash.svg new file mode 100644 index 00000000..8083a0f9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_trash.svg @@ -0,0 +1,394 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..6032fcf9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_prst_tri.svg @@ -0,0 +1,354 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..428239ef --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,376 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..2934b2c5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,413 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..4f9922ba --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,374 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..eaae9a30 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..4f47b1b4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_up.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..3419ba3b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..d44cec8d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_x.svg @@ -0,0 +1,367 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..aeff2edc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,378 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..b935c539 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xy.svg @@ -0,0 +1,387 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..d853d5c7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,398 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..54ba78e8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_y.svg @@ -0,0 +1,367 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..e565c58b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,378 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear.svg new file mode 100644 index 00000000..3806fd48 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear.svg @@ -0,0 +1,366 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..ca200ff2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_dn.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..7ead9619 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_hi.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_up.svg new file mode 100644 index 00000000..7d2d83ef --- /dev/null +++ b/cinelerra-5.1/plugins/theme_cakewalk/source_SVG/unclear_up.svg @@ -0,0 +1,356 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_cakewalk/unclear.png b/cinelerra-5.1/plugins/theme_cakewalk/unclear.png new file mode 100644 index 00000000..e24890da Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/unclear_dn.png b/cinelerra-5.1/plugins/theme_cakewalk/unclear_dn.png new file mode 100644 index 00000000..260d66a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/unclear_hi.png b/cinelerra-5.1/plugins/theme_cakewalk/unclear_hi.png new file mode 100644 index 00000000..d7a212f2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_cakewalk/unclear_up.png b/cinelerra-5.1/plugins/theme_cakewalk/unclear_up.png new file mode 100644 index 00000000..260d66a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_cakewalk/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_all_linear.png b/cinelerra-5.1/plugins/theme_hulk/mask_all_linear.png new file mode 100644 index 00000000..1f18bc8b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_hulk/mask_all_smooth.png new file mode 100644 index 00000000..8eeff647 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_button_dn.png b/cinelerra-5.1/plugins/theme_hulk/mask_button_dn.png new file mode 100644 index 00000000..6290fe52 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_button_hi.png b/cinelerra-5.1/plugins/theme_hulk/mask_button_hi.png new file mode 100644 index 00000000..51f166c7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_button_up.png b/cinelerra-5.1/plugins/theme_hulk/mask_button_up.png new file mode 100644 index 00000000..bcbdc94d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_hulk/mask_crv_linear.png new file mode 100644 index 00000000..b595aba6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_hulk/mask_crv_smooth.png new file mode 100644 index 00000000..8e002eaf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_hulk/mask_pnt_linear.png new file mode 100644 index 00000000..8106a3ce Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_hulk/mask_pnt_smooth.png new file mode 100644 index 00000000..748b9748 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_crc.png new file mode 100644 index 00000000..43dd204a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_load.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_load.png new file mode 100644 index 00000000..7f90e2ca Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_ovl.png new file mode 100644 index 00000000..b786d001 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_save.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_save.png new file mode 100644 index 00000000..4233ce69 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_sqr.png new file mode 100644 index 00000000..2d23514d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_tri.png new file mode 100644 index 00000000..600d13ac Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_hulk/mask_prst_trsh.png new file mode 100644 index 00000000..abccd6e1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_hulk/mask_pstn_cen.png new file mode 100644 index 00000000..ec4fc4f4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_hulk/mask_pstn_nrm.png new file mode 100644 index 00000000..4395c72a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_chkd.png new file mode 100644 index 00000000..5b3a5d35 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_chkdhi.png new file mode 100644 index 00000000..7988e0b3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_up.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_up.png new file mode 100644 index 00000000..bcbdc94d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_uphi.png new file mode 100644 index 00000000..51f166c7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_x.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_x.png new file mode 100644 index 00000000..35741632 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_xdown.png new file mode 100644 index 00000000..f1875ee3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_xy.png new file mode 100644 index 00000000..468815e2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_xydown.png new file mode 100644 index 00000000..b5cdf91d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_y.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_y.png new file mode 100644 index 00000000..6323ac59 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_hulk/mask_scale_ydown.png new file mode 100644 index 00000000..921bcb02 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..cf745d3b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_all_linear.svg @@ -0,0 +1,265 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..13779ed5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_all_smooth.svg @@ -0,0 +1,313 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..71b0cb87 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_dn.svg @@ -0,0 +1,239 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..56834e3a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_hi.svg @@ -0,0 +1,269 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..527d8e77 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_button_up.svg @@ -0,0 +1,192 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..4971014b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_crv_linear.svg @@ -0,0 +1,199 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..9e98c27e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,258 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..1222c4fd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,187 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..55dd8b15 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,249 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..829f0056 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_crc.svg @@ -0,0 +1,214 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..c6d3d322 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_load.svg @@ -0,0 +1,250 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..97682ae2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,212 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..e50f27cc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_save.svg @@ -0,0 +1,250 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..55e4874b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,212 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..95aed2c6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_tri.svg @@ -0,0 +1,210 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..3b4f153a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,250 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..1b4c1b38 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,232 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..530fcbd4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,269 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..1b13f03b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,289 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..3a070b37 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,301 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..f18c8493 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_up.svg @@ -0,0 +1,223 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..6918dc55 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,303 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..36f7660e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_x.svg @@ -0,0 +1,223 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..caa2f8e7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..9ce129cd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xy.svg @@ -0,0 +1,243 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..8252813d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,315 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..fd9ace1f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_y.svg @@ -0,0 +1,223 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..ec265c8e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,295 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear.svg new file mode 100644 index 00000000..4840ab2f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear.svg @@ -0,0 +1,222 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..71b0cb87 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_dn.svg @@ -0,0 +1,239 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..56834e3a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_hi.svg @@ -0,0 +1,269 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_up.svg new file mode 100644 index 00000000..527d8e77 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_hulk/source_SVG/unclear_up.svg @@ -0,0 +1,192 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_hulk/unclear.png b/cinelerra-5.1/plugins/theme_hulk/unclear.png new file mode 100644 index 00000000..52309832 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/unclear_dn.png b/cinelerra-5.1/plugins/theme_hulk/unclear_dn.png new file mode 100644 index 00000000..6290fe52 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/unclear_hi.png b/cinelerra-5.1/plugins/theme_hulk/unclear_hi.png new file mode 100644 index 00000000..51f166c7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/unclear_up.png b/cinelerra-5.1/plugins/theme_hulk/unclear_up.png new file mode 100644 index 00000000..bcbdc94d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_hulk/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_all_linear.png b/cinelerra-5.1/plugins/theme_neophyte/mask_all_linear.png new file mode 100644 index 00000000..f6481eba Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_neophyte/mask_all_smooth.png new file mode 100644 index 00000000..369ddaaf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_button_dn.png b/cinelerra-5.1/plugins/theme_neophyte/mask_button_dn.png new file mode 100644 index 00000000..482709c0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_button_hi.png b/cinelerra-5.1/plugins/theme_neophyte/mask_button_hi.png new file mode 100644 index 00000000..54eec7a2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_button_up.png b/cinelerra-5.1/plugins/theme_neophyte/mask_button_up.png new file mode 100644 index 00000000..312a2b26 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_neophyte/mask_crv_linear.png new file mode 100644 index 00000000..98f9a833 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_neophyte/mask_crv_smooth.png new file mode 100644 index 00000000..1feb15c9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_neophyte/mask_pnt_linear.png new file mode 100644 index 00000000..8dd77d34 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_neophyte/mask_pnt_smooth.png new file mode 100644 index 00000000..fee20de6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_crc.png new file mode 100644 index 00000000..93f70938 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_load.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_load.png new file mode 100644 index 00000000..61b83323 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_ovl.png new file mode 100644 index 00000000..04c715bb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_save.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_save.png new file mode 100644 index 00000000..af16bf08 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_sqr.png new file mode 100644 index 00000000..122d95f2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_tri.png new file mode 100644 index 00000000..7308b9d5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_trsh.png new file mode 100644 index 00000000..8737a2da Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_neophyte/mask_pstn_cen.png new file mode 100644 index 00000000..f85de232 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_neophyte/mask_pstn_nrm.png new file mode 100644 index 00000000..7429a5e1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_chkd.png new file mode 100644 index 00000000..848b1dde Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_chkdhi.png new file mode 100644 index 00000000..074285ef Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_up.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_up.png new file mode 100644 index 00000000..312a2b26 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_uphi.png new file mode 100644 index 00000000..e3a504b4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_x.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_x.png new file mode 100644 index 00000000..0bf4bee8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xdown.png new file mode 100644 index 00000000..f4e85917 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xy.png new file mode 100644 index 00000000..0064fbfd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xydown.png new file mode 100644 index 00000000..d3f7ac42 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_y.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_y.png new file mode 100644 index 00000000..fc9e2216 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_ydown.png new file mode 100644 index 00000000..7b916a86 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..7e6ffc35 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_all_linear.svg @@ -0,0 +1,326 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..ca9bd633 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_all_smooth.svg @@ -0,0 +1,374 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..ff402137 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_dn.svg @@ -0,0 +1,309 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..3e1e3710 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_hi.svg @@ -0,0 +1,307 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..cc10eb61 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_button_up.svg @@ -0,0 +1,284 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..51f55dbe --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_crv_linear.svg @@ -0,0 +1,260 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..f0d52728 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,319 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..35671ec2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,252 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..45b97182 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,310 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..db135f56 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_crc.svg @@ -0,0 +1,286 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..ca115989 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_load.svg @@ -0,0 +1,322 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..3bd83be1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,284 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..b9270ffd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_save.svg @@ -0,0 +1,322 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..69589feb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,284 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..c268408b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_tri.svg @@ -0,0 +1,282 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..8f9cdd98 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,322 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..8b344d06 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,304 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..c1410143 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,341 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..82795449 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,319 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..9c9e3167 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,319 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..6c6e1c55 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_up.svg @@ -0,0 +1,295 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..035306f7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,330 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..e3e92fea --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_x.svg @@ -0,0 +1,295 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..d4838565 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,353 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..5e8809b5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xy.svg @@ -0,0 +1,315 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..a471e701 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,373 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..53984688 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_y.svg @@ -0,0 +1,295 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..3d000135 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,353 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear.svg new file mode 100644 index 00000000..b0b6fdf8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear.svg @@ -0,0 +1,294 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..ff402137 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_dn.svg @@ -0,0 +1,309 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..3e1e3710 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_hi.svg @@ -0,0 +1,307 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_up.svg new file mode 100644 index 00000000..cc10eb61 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/source_SVG/unclear_up.svg @@ -0,0 +1,284 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/unclear.png b/cinelerra-5.1/plugins/theme_neophyte/unclear.png new file mode 100644 index 00000000..c785fd8b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/unclear_dn.png b/cinelerra-5.1/plugins/theme_neophyte/unclear_dn.png new file mode 100644 index 00000000..482709c0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/unclear_hi.png b/cinelerra-5.1/plugins/theme_neophyte/unclear_hi.png new file mode 100644 index 00000000..54eec7a2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/unclear_up.png b/cinelerra-5.1/plugins/theme_neophyte/unclear_up.png new file mode 100644 index 00000000..312a2b26 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_all_linear.png b/cinelerra-5.1/plugins/theme_pinklady/mask_all_linear.png new file mode 100644 index 00000000..0f47ec5c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_pinklady/mask_all_smooth.png new file mode 100644 index 00000000..83b80fc0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_button_dn.png b/cinelerra-5.1/plugins/theme_pinklady/mask_button_dn.png new file mode 100644 index 00000000..d9eef067 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_button_hi.png b/cinelerra-5.1/plugins/theme_pinklady/mask_button_hi.png new file mode 100644 index 00000000..0ff5bf47 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_button_up.png b/cinelerra-5.1/plugins/theme_pinklady/mask_button_up.png new file mode 100644 index 00000000..a89301fb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_pinklady/mask_crv_linear.png new file mode 100644 index 00000000..c3ea87d8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_pinklady/mask_crv_smooth.png new file mode 100644 index 00000000..5938a8c8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_pinklady/mask_pnt_linear.png new file mode 100644 index 00000000..e207cab9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_pinklady/mask_pnt_smooth.png new file mode 100644 index 00000000..7e765435 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_crc.png new file mode 100644 index 00000000..bde6e111 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_load.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_load.png new file mode 100644 index 00000000..d2d2a738 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_ovl.png new file mode 100644 index 00000000..0918e416 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_save.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_save.png new file mode 100644 index 00000000..cff9a58e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_sqr.png new file mode 100644 index 00000000..bc81ab57 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_tri.png new file mode 100644 index 00000000..357a03d1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_trsh.png new file mode 100644 index 00000000..114f529c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_pinklady/mask_pstn_cen.png new file mode 100644 index 00000000..da961aa8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_pinklady/mask_pstn_nrm.png new file mode 100644 index 00000000..0795095e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_chkd.png new file mode 100644 index 00000000..f9fee16c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_chkdhi.png new file mode 100644 index 00000000..dbda9c5a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_up.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_up.png new file mode 100644 index 00000000..a89301fb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_uphi.png new file mode 100644 index 00000000..0ff5bf47 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_x.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_x.png new file mode 100644 index 00000000..e9c908a7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xdown.png new file mode 100644 index 00000000..9a5a6b06 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xy.png new file mode 100644 index 00000000..b9d72885 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xydown.png new file mode 100644 index 00000000..c7912c63 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_y.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_y.png new file mode 100644 index 00000000..51fa90dd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_ydown.png new file mode 100644 index 00000000..2f7467dd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..b12ed109 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_all_linear.svg @@ -0,0 +1,200 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..6ed3df5c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_all_smooth.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..97745bf2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_dn.svg @@ -0,0 +1,197 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..661d6404 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_hi.svg @@ -0,0 +1,227 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..c0282ce9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_button_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..4a18eafc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_crv_linear.svg @@ -0,0 +1,133 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..8bafa03a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,162 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..716d835f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,125 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..26b975fe --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,153 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..927232c2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_crc.svg @@ -0,0 +1,149 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..f8f6c4bb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_load.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..2989cf41 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..3fdf4b56 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_save.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..cce714c9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..e47ed9f0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_tri.svg @@ -0,0 +1,145 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..bcd8ad6f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,185 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..2a728dac --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..ccbe9ac1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,204 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..bd28315a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,224 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..7aa4eb54 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,236 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..e1d071a8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_up.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..76c176d0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,238 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..6c5969a1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_x.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..36a22e20 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,230 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..26fb0a66 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xy.svg @@ -0,0 +1,178 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..36b07c28 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,250 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..4e087d05 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_y.svg @@ -0,0 +1,158 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..e2e84a21 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,230 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear.svg new file mode 100644 index 00000000..3635d9bf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear.svg @@ -0,0 +1,157 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..97745bf2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_dn.svg @@ -0,0 +1,197 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..661d6404 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_hi.svg @@ -0,0 +1,227 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_up.svg new file mode 100644 index 00000000..c0282ce9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_pinklady/source_SVG/unclear_up.svg @@ -0,0 +1,147 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_pinklady/unclear.png b/cinelerra-5.1/plugins/theme_pinklady/unclear.png new file mode 100644 index 00000000..1c21d1c7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/unclear_dn.png b/cinelerra-5.1/plugins/theme_pinklady/unclear_dn.png new file mode 100644 index 00000000..d9eef067 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/unclear_hi.png b/cinelerra-5.1/plugins/theme_pinklady/unclear_hi.png new file mode 100644 index 00000000..0ff5bf47 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/unclear_up.png b/cinelerra-5.1/plugins/theme_pinklady/unclear_up.png new file mode 100644 index 00000000..a89301fb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_pinklady/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_all_linear.png b/cinelerra-5.1/plugins/theme_suv/mask_all_linear.png new file mode 100644 index 00000000..f6481eba Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_suv/mask_all_smooth.png new file mode 100644 index 00000000..369ddaaf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_button_dn.png b/cinelerra-5.1/plugins/theme_suv/mask_button_dn.png new file mode 100644 index 00000000..3ce3ed80 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_button_hi.png b/cinelerra-5.1/plugins/theme_suv/mask_button_hi.png new file mode 100644 index 00000000..1ad1a999 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_button_up.png b/cinelerra-5.1/plugins/theme_suv/mask_button_up.png new file mode 100644 index 00000000..d633ed4e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_suv/mask_crv_linear.png new file mode 100644 index 00000000..98f9a833 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_suv/mask_crv_smooth.png new file mode 100644 index 00000000..1feb15c9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_suv/mask_pnt_linear.png new file mode 100644 index 00000000..8dd77d34 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_suv/mask_pnt_smooth.png new file mode 100644 index 00000000..fee20de6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_crc.png new file mode 100644 index 00000000..93f70938 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_load.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_load.png new file mode 100644 index 00000000..61b83323 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_ovl.png new file mode 100644 index 00000000..04c715bb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_save.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_save.png new file mode 100644 index 00000000..af16bf08 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_sqr.png new file mode 100644 index 00000000..122d95f2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_tri.png new file mode 100644 index 00000000..7308b9d5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_suv/mask_prst_trsh.png new file mode 100644 index 00000000..8737a2da Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_suv/mask_pstn_cen.png new file mode 100644 index 00000000..f85de232 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_suv/mask_pstn_nrm.png new file mode 100644 index 00000000..7429a5e1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_chkd.png new file mode 100644 index 00000000..3ce3ed80 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_chkdhi.png new file mode 100644 index 00000000..eb64a6c3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_up.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_up.png new file mode 100644 index 00000000..d633ed4e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_uphi.png new file mode 100644 index 00000000..1ad1a999 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_x.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_x.png new file mode 100644 index 00000000..0bf4bee8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_xdown.png new file mode 100644 index 00000000..44dd6302 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_xy.png new file mode 100644 index 00000000..0064fbfd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_xydown.png new file mode 100644 index 00000000..b9d1f281 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_y.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_y.png new file mode 100644 index 00000000..fc9e2216 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_suv/mask_scale_ydown.png new file mode 100644 index 00000000..c4f0e538 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..bd1c9d95 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_all_linear.svg @@ -0,0 +1,200 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..af215697 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_all_smooth.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..8f428b1c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_dn.svg @@ -0,0 +1,116 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..8277ba4b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_hi.svg @@ -0,0 +1,116 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..2c7fd756 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_button_up.svg @@ -0,0 +1,96 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..19613231 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_crv_linear.svg @@ -0,0 +1,133 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..21b8a779 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,192 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..cf0333d7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,125 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..55679770 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,184 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..7e4d3772 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_crc.svg @@ -0,0 +1,98 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..b4955d25 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_load.svg @@ -0,0 +1,131 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..2104b529 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,96 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..a990f29e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_save.svg @@ -0,0 +1,131 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..750922f9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,96 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..356146a5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_tri.svg @@ -0,0 +1,94 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..269c7da1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,131 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..1399c2c9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,171 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..297eba6e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,208 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..480b65cc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,171 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..a01a7db7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,171 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..cfeb4bb8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_up.svg @@ -0,0 +1,151 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..f509899c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,171 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..10bb02b3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_x.svg @@ -0,0 +1,162 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..1850ea44 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,189 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..28acbe65 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xy.svg @@ -0,0 +1,182 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..0e5f06dd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,209 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..d6204d5f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_y.svg @@ -0,0 +1,162 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..63f8ab27 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,189 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear.svg new file mode 100644 index 00000000..cc78a50d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear.svg @@ -0,0 +1,161 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..8f428b1c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_dn.svg @@ -0,0 +1,116 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..8277ba4b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_hi.svg @@ -0,0 +1,116 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_up.svg new file mode 100644 index 00000000..2c7fd756 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_suv/source_SVG/unclear_up.svg @@ -0,0 +1,96 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_suv/unclear.png b/cinelerra-5.1/plugins/theme_suv/unclear.png new file mode 100644 index 00000000..c785fd8b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/unclear_dn.png b/cinelerra-5.1/plugins/theme_suv/unclear_dn.png new file mode 100644 index 00000000..3ce3ed80 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/unclear_hi.png b/cinelerra-5.1/plugins/theme_suv/unclear_hi.png new file mode 100644 index 00000000..1ad1a999 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/unclear_up.png b/cinelerra-5.1/plugins/theme_suv/unclear_up.png new file mode 100644 index 00000000..d633ed4e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_suv/unclear_up.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_all_linear.png b/cinelerra-5.1/plugins/theme_unflat/mask_all_linear.png new file mode 100644 index 00000000..fc26659d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_all_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_all_smooth.png b/cinelerra-5.1/plugins/theme_unflat/mask_all_smooth.png new file mode 100644 index 00000000..045643c5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_all_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_button_dn.png b/cinelerra-5.1/plugins/theme_unflat/mask_button_dn.png new file mode 100644 index 00000000..8bb6c13b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_button_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_button_hi.png b/cinelerra-5.1/plugins/theme_unflat/mask_button_hi.png new file mode 100644 index 00000000..5f2cfe9c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_button_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_button_up.png b/cinelerra-5.1/plugins/theme_unflat/mask_button_up.png new file mode 100644 index 00000000..d64532fc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_button_up.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_crv_linear.png b/cinelerra-5.1/plugins/theme_unflat/mask_crv_linear.png new file mode 100644 index 00000000..b49d03a2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_crv_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_crv_smooth.png b/cinelerra-5.1/plugins/theme_unflat/mask_crv_smooth.png new file mode 100644 index 00000000..7e1f41fd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_crv_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_pnt_linear.png b/cinelerra-5.1/plugins/theme_unflat/mask_pnt_linear.png new file mode 100644 index 00000000..97d7c1f6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_pnt_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_pnt_smooth.png b/cinelerra-5.1/plugins/theme_unflat/mask_pnt_smooth.png new file mode 100644 index 00000000..8e2e8c31 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_pnt_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_crc.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_crc.png new file mode 100644 index 00000000..5b697f20 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_crc.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_load.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_load.png new file mode 100644 index 00000000..89c6fb5a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_load.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_ovl.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_ovl.png new file mode 100644 index 00000000..73027f40 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_ovl.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_save.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_save.png new file mode 100644 index 00000000..77c1e803 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_save.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_sqr.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_sqr.png new file mode 100644 index 00000000..508a1e68 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_sqr.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_tri.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_tri.png new file mode 100644 index 00000000..17cc41a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_tri.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_prst_trsh.png b/cinelerra-5.1/plugins/theme_unflat/mask_prst_trsh.png new file mode 100644 index 00000000..4ded9fec Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_prst_trsh.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_pstn_cen.png b/cinelerra-5.1/plugins/theme_unflat/mask_pstn_cen.png new file mode 100644 index 00000000..90a67db1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_pstn_cen.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_pstn_nrm.png b/cinelerra-5.1/plugins/theme_unflat/mask_pstn_nrm.png new file mode 100644 index 00000000..9b4a3f67 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_pstn_nrm.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_chkd.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_chkd.png new file mode 100644 index 00000000..924703e7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_chkdhi.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_chkdhi.png new file mode 100644 index 00000000..d3ff4341 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_up.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_up.png new file mode 100644 index 00000000..d64532fc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_up.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_uphi.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_uphi.png new file mode 100644 index 00000000..5f2cfe9c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_x.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_x.png new file mode 100644 index 00000000..a382b740 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_x.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_xdown.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_xdown.png new file mode 100644 index 00000000..2e78990c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_xdown.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_xy.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_xy.png new file mode 100644 index 00000000..3eb5b522 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_xy.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_xydown.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_xydown.png new file mode 100644 index 00000000..4d5fe054 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_xydown.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_y.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_y.png new file mode 100644 index 00000000..cf4055de Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_y.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/mask_scale_ydown.png b/cinelerra-5.1/plugins/theme_unflat/mask_scale_ydown.png new file mode 100644 index 00000000..58124295 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/mask_scale_ydown.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_all_linear.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_all_linear.svg new file mode 100644 index 00000000..1409a656 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_all_linear.svg @@ -0,0 +1,200 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_all_smooth.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_all_smooth.svg new file mode 100644 index 00000000..f3f1697f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_all_smooth.svg @@ -0,0 +1,268 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_dn.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_dn.svg new file mode 100644 index 00000000..3051b949 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_dn.svg @@ -0,0 +1,217 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_hi.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_hi.svg new file mode 100644 index 00000000..164a1306 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_hi.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_up.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_up.svg new file mode 100644 index 00000000..db8d9560 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_button_up.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_crv_linear.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_crv_linear.svg new file mode 100644 index 00000000..05d9e5f1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_crv_linear.svg @@ -0,0 +1,133 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_crv_smooth.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_crv_smooth.svg new file mode 100644 index 00000000..0e5ef602 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_crv_smooth.svg @@ -0,0 +1,204 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pnt_linear.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pnt_linear.svg new file mode 100644 index 00000000..413b09f0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pnt_linear.svg @@ -0,0 +1,125 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pnt_smooth.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pnt_smooth.svg new file mode 100644 index 00000000..20af4523 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pnt_smooth.svg @@ -0,0 +1,204 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_crc.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_crc.svg new file mode 100644 index 00000000..c8bdd7e4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_crc.svg @@ -0,0 +1,169 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_load.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_load.svg new file mode 100644 index 00000000..d21ec083 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_load.svg @@ -0,0 +1,205 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_ovl.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_ovl.svg new file mode 100644 index 00000000..8bd6032f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_ovl.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_save.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_save.svg new file mode 100644 index 00000000..89034d33 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_save.svg @@ -0,0 +1,205 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_sqr.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_sqr.svg new file mode 100644 index 00000000..b28690cd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_sqr.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_tri.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_tri.svg new file mode 100644 index 00000000..ce22293d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_tri.svg @@ -0,0 +1,165 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_trsh.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_trsh.svg new file mode 100644 index 00000000..aa1abdb5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_prst_trsh.svg @@ -0,0 +1,205 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pstn_cen.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pstn_cen.svg new file mode 100644 index 00000000..9103f954 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pstn_cen.svg @@ -0,0 +1,187 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pstn_nrm.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pstn_nrm.svg new file mode 100644 index 00000000..159820f7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_pstn_nrm.svg @@ -0,0 +1,224 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_chkd.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_chkd.svg new file mode 100644 index 00000000..7ba60b82 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_chkd.svg @@ -0,0 +1,244 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_chkdhi.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_chkdhi.svg new file mode 100644 index 00000000..b9bb9309 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_chkdhi.svg @@ -0,0 +1,256 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_up.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_up.svg new file mode 100644 index 00000000..ddf006bb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_up.svg @@ -0,0 +1,178 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_uphi.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_uphi.svg new file mode 100644 index 00000000..5a5c7c87 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_uphi.svg @@ -0,0 +1,255 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_x.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_x.svg new file mode 100644 index 00000000..773d2da6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_x.svg @@ -0,0 +1,178 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xdown.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xdown.svg new file mode 100644 index 00000000..833ff8e4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xdown.svg @@ -0,0 +1,246 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xy.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xy.svg new file mode 100644 index 00000000..dc00d8b4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xy.svg @@ -0,0 +1,198 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xydown.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xydown.svg new file mode 100644 index 00000000..81fa938a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_xydown.svg @@ -0,0 +1,266 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_y.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_y.svg new file mode 100644 index 00000000..dc10fde3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_y.svg @@ -0,0 +1,178 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_ydown.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_ydown.svg new file mode 100644 index 00000000..94603bdd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/mask_scale_ydown.svg @@ -0,0 +1,246 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear.svg new file mode 100644 index 00000000..4dd8e4da --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear.svg @@ -0,0 +1,177 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_dn.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_dn.svg new file mode 100644 index 00000000..3051b949 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_dn.svg @@ -0,0 +1,217 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_hi.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_hi.svg new file mode 100644 index 00000000..164a1306 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_hi.svg @@ -0,0 +1,248 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_up.svg b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_up.svg new file mode 100644 index 00000000..db8d9560 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_unflat/source_SVG/unclear_up.svg @@ -0,0 +1,167 @@ + + + + + Buttons for Cinelerra Mask Tool + + + + + + + + + + + + + + image/svg+xml + + Buttons for Cinelerra Mask Tool + + 2019-07-xx + + + Copyleft + + + + + IgorBeg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_unflat/unclear.png b/cinelerra-5.1/plugins/theme_unflat/unclear.png new file mode 100644 index 00000000..aa7c7567 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/unclear.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/unclear_dn.png b/cinelerra-5.1/plugins/theme_unflat/unclear_dn.png new file mode 100644 index 00000000..8bb6c13b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/unclear_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/unclear_hi.png b/cinelerra-5.1/plugins/theme_unflat/unclear_hi.png new file mode 100644 index 00000000..5f2cfe9c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/unclear_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/unclear_up.png b/cinelerra-5.1/plugins/theme_unflat/unclear_up.png new file mode 100644 index 00000000..d64532fc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_unflat/unclear_up.png differ