From: Good Guy Date: Fri, 10 Aug 2018 17:45:16 +0000 (-0600) Subject: add olaf's neophyte theme, honor numlock and use kp numerics X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=commitdiff_plain;h=c5feedfabe3ee87dfae9a254c9b67c566ec15d2e add olaf's neophyte theme, honor numlock and use kp numerics --- diff --git a/cinelerra-5.1/guicast/bcwindowbase.C b/cinelerra-5.1/guicast/bcwindowbase.C index d7440bde..c380792e 100644 --- a/cinelerra-5.1/guicast/bcwindowbase.C +++ b/cinelerra-5.1/guicast/bcwindowbase.C @@ -1233,25 +1233,25 @@ locking_message = event->xclient.message_type; case XK_KP_Subtract: key_pressed = KPMINUS; break; case XK_KP_Multiply: key_pressed = KPSTAR; break; case XK_KP_Divide: key_pressed = KPSLASH; break; - case XK_KP_1: + case XK_KP_1: key_pressed = '1'; break; case XK_KP_End: key_pressed = KP1; break; - case XK_KP_2: + case XK_KP_2: key_pressed = '2'; break; case XK_KP_Down: key_pressed = KP2; break; - case XK_KP_3: + case XK_KP_3: key_pressed = '3'; break; case XK_KP_Page_Down: key_pressed = KP3; break; - case XK_KP_4: + case XK_KP_4: key_pressed = '4'; break; case XK_KP_Left: key_pressed = KP4; break; - case XK_KP_5: + case XK_KP_5: key_pressed = '5'; break; case XK_KP_Begin: key_pressed = KP5; break; - case XK_KP_6: + case XK_KP_6: key_pressed = '6'; break; case XK_KP_Right: key_pressed = KP6; break; - case XK_KP_7: + case XK_KP_7: key_pressed = '7'; break; case XK_KP_Home: key_pressed = KP7; break; - case XK_KP_8: + case XK_KP_8: key_pressed = '8'; break; case XK_KP_Up: key_pressed = KP8; break; - case XK_KP_9: + case XK_KP_9: key_pressed = '9'; break; case XK_KP_Page_Up: key_pressed = KP9; break; - case XK_KP_0: + case XK_KP_0: key_pressed = '0'; break; case XK_KP_Insert: key_pressed = KPINS; break; case XK_KP_Decimal: case XK_KP_Delete: key_pressed = KPDEL; break; diff --git a/cinelerra-5.1/plugin_defs b/cinelerra-5.1/plugin_defs index b5f2615d..9d94dd20 100644 --- a/cinelerra-5.1/plugin_defs +++ b/cinelerra-5.1/plugin_defs @@ -13,6 +13,7 @@ themes := \ theme_hulk \ theme_pinklady \ theme_suv \ + theme_neophyte \ theme_unflat \ plugin_dirs += video diff --git a/cinelerra-5.1/plugins/Makefile b/cinelerra-5.1/plugins/Makefile index 6ed357c7..125de335 100644 --- a/cinelerra-5.1/plugins/Makefile +++ b/cinelerra-5.1/plugins/Makefile @@ -150,6 +150,7 @@ DIRS = $(OPENCV_OBJS) \ theme_blue_dot \ theme_bright \ theme_hulk \ + theme_neophyte \ theme_pinklady \ theme_suv \ theme_unflat \ diff --git a/cinelerra-5.1/plugins/theme_neophyte/Makefile b/cinelerra-5.1/plugins/theme_neophyte/Makefile new file mode 100644 index 00000000..5b1013c9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/Makefile @@ -0,0 +1,10 @@ +include ../../plugin_defs + +PLUGIN = theme_neophyte +OBJS = $(OBJDIR)/neophyte.o +OUTPUT_THEME = $(OUTPUT) + +include ../../plugin_config + +$(OBJDIR)/neophyte.o: neophyte.C + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/0.png b/cinelerra-5.1/plugins/theme_neophyte/data/0.png new file mode 100644 index 00000000..53036645 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/0.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/1.png b/cinelerra-5.1/plugins/theme_neophyte/data/1.png new file mode 100644 index 00000000..6eac7177 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/1.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/2.png b/cinelerra-5.1/plugins/theme_neophyte/data/2.png new file mode 100644 index 00000000..915fe064 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/2.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/3.png b/cinelerra-5.1/plugins/theme_neophyte/data/3.png new file mode 100644 index 00000000..fccbfb70 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/3.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/4.png b/cinelerra-5.1/plugins/theme_neophyte/data/4.png new file mode 100644 index 00000000..74f9f117 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/4.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/5.png b/cinelerra-5.1/plugins/theme_neophyte/data/5.png new file mode 100644 index 00000000..ef37107d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/5.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/6.png b/cinelerra-5.1/plugins/theme_neophyte/data/6.png new file mode 100644 index 00000000..8e5dbed3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/6.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/7.png b/cinelerra-5.1/plugins/theme_neophyte/data/7.png new file mode 100644 index 00000000..e06668f5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/7.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/8.png b/cinelerra-5.1/plugins/theme_neophyte/data/8.png new file mode 100644 index 00000000..4c9fef86 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/8.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/9.png b/cinelerra-5.1/plugins/theme_neophyte/data/9.png new file mode 100644 index 00000000..e09afffe Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/9.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/a.png b/cinelerra-5.1/plugins/theme_neophyte/data/a.png new file mode 100644 index 00000000..12bf179e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/a.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/arrow.png b/cinelerra-5.1/plugins/theme_neophyte/data/arrow.png new file mode 100644 index 00000000..d1127849 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/arrow.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/autokeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/autokeyframe.png new file mode 100644 index 00000000..2e5483fb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/autokeyframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/b.png b/cinelerra-5.1/plugins/theme_neophyte/data/b.png new file mode 100644 index 00000000..9f94f172 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/b.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/bar.png b/cinelerra-5.1/plugins/theme_neophyte/data/bar.png new file mode 100644 index 00000000..2d7f7ffc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/bar.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/blank30x30.png b/cinelerra-5.1/plugins/theme_neophyte/data/blank30x30.png new file mode 100644 index 00000000..174d8bef Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/blank30x30.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/bottom_justify.png b/cinelerra-5.1/plugins/theme_neophyte/data/bottom_justify.png new file mode 100644 index 00000000..9604e1d8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/bottom_justify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/c.png b/cinelerra-5.1/plugins/theme_neophyte/data/c.png new file mode 100644 index 00000000..644986ad Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/c.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/camera.png b/cinelerra-5.1/plugins/theme_neophyte/data/camera.png new file mode 100644 index 00000000..bd3459e5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/camera.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png new file mode 100644 index 00000000..781bf91b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cancel.png b/cinelerra-5.1/plugins/theme_neophyte/data/cancel.png new file mode 100644 index 00000000..d7e11a7f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cancel.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_left.png b/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_left.png new file mode 100644 index 00000000..e5cc2b7d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_left.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_right.png b/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_right.png new file mode 100644 index 00000000..02602b90 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_right.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/center_justify.png b/cinelerra-5.1/plugins/theme_neophyte/data/center_justify.png new file mode 100644 index 00000000..0c5cdd56 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/center_justify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/channel.png b/cinelerra-5.1/plugins/theme_neophyte/data/channel.png new file mode 100644 index 00000000..ac9e6533 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/channel.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/channel_position.png b/cinelerra-5.1/plugins/theme_neophyte/data/channel_position.png new file mode 100644 index 00000000..3e168548 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/channel_position.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/check.png b/cinelerra-5.1/plugins/theme_neophyte/data/check.png new file mode 100644 index 00000000..64deb932 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/check.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checked.png new file mode 100644 index 00000000..160035f6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checkedhi.png new file mode 100644 index 00000000..9a7bb0b7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_dn.png new file mode 100644 index 00000000..e59a99e4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_hi.png new file mode 100644 index 00000000..500fea80 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_up.png new file mode 100644 index 00000000..9e1621eb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/clip_icon.png b/cinelerra-5.1/plugins/theme_neophyte/data/clip_icon.png new file mode 100644 index 00000000..667214af Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/clip_icon.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/closetip.png b/cinelerra-5.1/plugins/theme_neophyte/data/closetip.png new file mode 100644 index 00000000..9a6553ab Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/closetip.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cmeter_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/cmeter_bg.png new file mode 100644 index 00000000..0e8b1655 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cmeter_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/colon.png b/cinelerra-5.1/plugins/theme_neophyte/data/colon.png new file mode 100644 index 00000000..0e1c835c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/colon.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_dn.png new file mode 100644 index 00000000..fad9ed65 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_hi.png new file mode 100644 index 00000000..a9377da6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_point.png b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_point.png new file mode 100644 index 00000000..1934b8e0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_point.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_up.png new file mode 100644 index 00000000..e2fef63c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/column_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/column_dn.png new file mode 100644 index 00000000..49de40bc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/column_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/column_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/column_hi.png new file mode 100644 index 00000000..2e224514 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/column_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/column_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/column_up.png new file mode 100644 index 00000000..bf54f945 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/column_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png b/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png new file mode 100644 index 00000000..a1eae6e0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/copy.png b/cinelerra-5.1/plugins/theme_neophyte/data/copy.png new file mode 100644 index 00000000..901b6a4e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/copy.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_bg.png new file mode 100644 index 00000000..e0cf53f7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checked.png new file mode 100644 index 00000000..8895645c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checkedhi.png new file mode 100644 index 00000000..620318ce Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_dn.png new file mode 100644 index 00000000..d153a8c1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_hi.png new file mode 100644 index 00000000..3c097542 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_up.png new file mode 100644 index 00000000..761ce738 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/crop.png b/cinelerra-5.1/plugins/theme_neophyte/data/crop.png new file mode 100644 index 00000000..a43c4776 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/crop.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cut.png b/cinelerra-5.1/plugins/theme_neophyte/data/cut.png new file mode 100644 index 00000000..47c04580 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cut.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_active.png b/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_active.png new file mode 100644 index 00000000..85c35af7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_active.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_inactive.png b/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_inactive.png new file mode 100644 index 00000000..6fc85844 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_inactive.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/d.png b/cinelerra-5.1/plugins/theme_neophyte/data/d.png new file mode 100644 index 00000000..3bfdc6bd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/d.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/dash.png b/cinelerra-5.1/plugins/theme_neophyte/data/dash.png new file mode 100644 index 00000000..01321e98 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/dash.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/delete.png b/cinelerra-5.1/plugins/theme_neophyte/data/delete.png new file mode 100644 index 00000000..74d9b342 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/delete.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/downmix51_2.png b/cinelerra-5.1/plugins/theme_neophyte/data/downmix51_2.png new file mode 100644 index 00000000..3cbcaf72 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/downmix51_2.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/drawpatch.png b/cinelerra-5.1/plugins/theme_neophyte/data/drawpatch.png new file mode 100644 index 00000000..5d8943c9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/drawpatch.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/e.png b/cinelerra-5.1/plugins/theme_neophyte/data/e.png new file mode 100644 index 00000000..20892c45 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/e.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checked.png new file mode 100644 index 00000000..b064222e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checkedhi.png new file mode 100644 index 00000000..af83cf79 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_dn.png new file mode 100644 index 00000000..68726b07 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_hi.png new file mode 100644 index 00000000..24b1960e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_up.png new file mode 100644 index 00000000..20d23414 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/end.png b/cinelerra-5.1/plugins/theme_neophyte/data/end.png new file mode 100644 index 00000000..fda18376 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/end.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checked.png new file mode 100644 index 00000000..c485fe61 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checkedhi.png new file mode 100644 index 00000000..b8e2e4da Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_dn.png new file mode 100644 index 00000000..6f5d9f9f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_hi.png new file mode 100644 index 00000000..ad532d17 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_up.png new file mode 100644 index 00000000..c44745be Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/eyedrop.png b/cinelerra-5.1/plugins/theme_neophyte/data/eyedrop.png new file mode 100644 index 00000000..564b2872 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/eyedrop.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/f.png b/cinelerra-5.1/plugins/theme_neophyte/data/f.png new file mode 100644 index 00000000..0f5047bb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/f.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fastfwd.png b/cinelerra-5.1/plugins/theme_neophyte/data/fastfwd.png new file mode 100644 index 00000000..747af4c1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fastfwd.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fastrev.png b/cinelerra-5.1/plugins/theme_neophyte/data/fastrev.png new file mode 100644 index 00000000..b53bbd6b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fastrev.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ff_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/ff_checked.png new file mode 100644 index 00000000..8b2feebe Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ff_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ff_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/ff_checkedhi.png new file mode 100644 index 00000000..ad4999ee Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ff_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ff_down.png b/cinelerra-5.1/plugins/theme_neophyte/data/ff_down.png new file mode 100644 index 00000000..cc0a11df Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ff_down.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ff_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/ff_hi.png new file mode 100644 index 00000000..d50e766e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ff_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ff_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/ff_up.png new file mode 100644 index 00000000..338fb50f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ff_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_dn.png new file mode 100644 index 00000000..620175e2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_hi.png new file mode 100644 index 00000000..f92a225f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_up.png new file mode 100644 index 00000000..b4dab4b2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_dn.png new file mode 100644 index 00000000..5f132cd3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_hi.png new file mode 100644 index 00000000..ac88f47e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_up.png new file mode 100644 index 00000000..c4fdb4ea Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fit.png b/cinelerra-5.1/plugins/theme_neophyte/data/fit.png new file mode 100644 index 00000000..46a227cb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fit.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/fitautos.png b/cinelerra-5.1/plugins/theme_neophyte/data/fitautos.png new file mode 100644 index 00000000..48d7da86 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/fitautos.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/folder.png b/cinelerra-5.1/plugins/theme_neophyte/data/folder.png new file mode 100644 index 00000000..ec26a9cc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/folder.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png b/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png new file mode 100644 index 00000000..65272f61 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/framerev.png b/cinelerra-5.1/plugins/theme_neophyte/data/framerev.png new file mode 100644 index 00000000..66e68927 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/framerev.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/gangpatch.png b/cinelerra-5.1/plugins/theme_neophyte/data/gangpatch.png new file mode 100644 index 00000000..d3499a70 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/gangpatch.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/generic_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/generic_dn.png new file mode 100644 index 00000000..b17772d6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/generic_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/generic_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/generic_hi.png new file mode 100644 index 00000000..4bcd1119 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/generic_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/generic_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/generic_up.png new file mode 100644 index 00000000..b17772d6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/generic_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/goto.png b/cinelerra-5.1/plugins/theme_neophyte/data/goto.png new file mode 100644 index 00000000..8e679612 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/goto.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/heroine_icon.png b/cinelerra-5.1/plugins/theme_neophyte/data/heroine_icon.png new file mode 100644 index 00000000..dc9d2bf2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/heroine_icon.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checked.png new file mode 100644 index 00000000..8e5840a9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checkedhi.png new file mode 100644 index 00000000..1fcfff69 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_dn.png new file mode 100644 index 00000000..0fb61fb1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_hi.png new file mode 100644 index 00000000..81d78997 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_up.png new file mode 100644 index 00000000..cfd43b2f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_img.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_img.png new file mode 100644 index 00000000..0f7da6eb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_img.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_rgb.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_rgb.png new file mode 100644 index 00000000..a68050a1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_rgb.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_toggle.png b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_toggle.png new file mode 100644 index 00000000..0f7da6eb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_toggle.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_bg.png new file mode 100644 index 00000000..9b4f7f1d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_dn.png new file mode 100644 index 00000000..2746ce3d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_hi.png new file mode 100644 index 00000000..9b2127dc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_up.png new file mode 100644 index 00000000..42b827e0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_dn.png new file mode 100644 index 00000000..f66a049c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_hi.png new file mode 100644 index 00000000..9b24437d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_up.png new file mode 100644 index 00000000..a8980d76 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_dn.png new file mode 100644 index 00000000..d4fcd230 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_hi.png new file mode 100644 index 00000000..48b32229 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_up.png new file mode 100644 index 00000000..92caadcb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_dn.png new file mode 100644 index 00000000..d4f77664 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_hi.png new file mode 100644 index 00000000..d4f77664 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_up.png new file mode 100644 index 00000000..edd9d834 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_dn.png new file mode 100644 index 00000000..58f6fada Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_hi.png new file mode 100644 index 00000000..37b766c3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_up.png new file mode 100644 index 00000000..ea473caf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ibeam.png b/cinelerra-5.1/plugins/theme_neophyte/data/ibeam.png new file mode 100644 index 00000000..d600930a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ibeam.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/icons.png b/cinelerra-5.1/plugins/theme_neophyte/data/icons.png new file mode 100644 index 00000000..fa2aa99a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/icons.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/in_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/in_checked.png new file mode 100644 index 00000000..0e1b2b0d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/in_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/in_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/in_checkedhi.png new file mode 100644 index 00000000..26a5b242 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/in_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/in_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/in_dn.png new file mode 100644 index 00000000..4bc1d217 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/in_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/in_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/in_hi.png new file mode 100644 index 00000000..12f01f16 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/in_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/in_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/in_up.png new file mode 100644 index 00000000..d4bd6495 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/in_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/inpoint.png b/cinelerra-5.1/plugins/theme_neophyte/data/inpoint.png new file mode 100644 index 00000000..a26c86ba Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/inpoint.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/keyframe3.png b/cinelerra-5.1/plugins/theme_neophyte/data/keyframe3.png new file mode 100644 index 00000000..673f887c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/keyframe3.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/label.png b/cinelerra-5.1/plugins/theme_neophyte/data/label.png new file mode 100644 index 00000000..a17897e3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/label.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/label_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/label_checked.png new file mode 100644 index 00000000..c33ca103 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/label_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/label_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/label_checkedhi.png new file mode 100644 index 00000000..e912d210 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/label_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_dn.png new file mode 100644 index 00000000..774dff5b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_up.png new file mode 100644 index 00000000..2fcefea4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_uphi.png b/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_uphi.png new file mode 100644 index 00000000..4379299c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/left_justify.png b/cinelerra-5.1/plugins/theme_neophyte/data/left_justify.png new file mode 100644 index 00000000..161f17ff Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/left_justify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/listbox_button.png b/cinelerra-5.1/plugins/theme_neophyte/data/listbox_button.png new file mode 100644 index 00000000..31205726 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/listbox_button.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/listbox_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/listbox_dn.png new file mode 100644 index 00000000..bdc44e38 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/listbox_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/listbox_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/listbox_up.png new file mode 100644 index 00000000..759ebcf1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/listbox_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_cat.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_cat.png new file mode 100644 index 00000000..a103c436 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_cat.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checked.png new file mode 100644 index 00000000..b3701565 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checkedhi.png new file mode 100644 index 00000000..2a5c484e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_dn.png new file mode 100644 index 00000000..0f5ceeef Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_hi.png new file mode 100644 index 00000000..dded1505 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_nested.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_nested.png new file mode 100644 index 00000000..a1bb86b5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_nested.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_new.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_new.png new file mode 100644 index 00000000..11d5a0df Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_new.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newcat.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newcat.png new file mode 100644 index 00000000..ac851116 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newcat.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newtracks.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newtracks.png new file mode 100644 index 00000000..017ef88b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newtracks.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_none.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_none.png new file mode 100644 index 00000000..6efb68f3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_none.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_paste.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_paste.png new file mode 100644 index 00000000..f1bcef7c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_paste.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_resource.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_resource.png new file mode 100644 index 00000000..c1efcf44 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_resource.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_up.png new file mode 100644 index 00000000..1bd32e7f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_dn.png new file mode 100644 index 00000000..930479a5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_locked.png b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_locked.png new file mode 100644 index 00000000..d0d2fc81 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_locked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_lockedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_lockedhi.png new file mode 100644 index 00000000..82f73ccc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_lockedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlocked.png b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlocked.png new file mode 100644 index 00000000..edeab3a2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlocked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlockedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlockedhi.png new file mode 100644 index 00000000..ec7a5a31 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlockedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/magnify.png b/cinelerra-5.1/plugins/theme_neophyte/data/magnify.png new file mode 100644 index 00000000..af19a2c4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/magnify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mask.png b/cinelerra-5.1/plugins/theme_neophyte/data/mask.png new file mode 100644 index 00000000..b6e625e1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mask.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/maskkeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/maskkeyframe.png new file mode 100644 index 00000000..ad4b8e24 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/maskkeyframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png new file mode 100644 index 00000000..5ccacf6d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mclock_flat.png b/cinelerra-5.1/plugins/theme_neophyte/data/mclock_flat.png new file mode 100644 index 00000000..ff6393a8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mclock_flat.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menu_popup_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/menu_popup_bg.png new file mode 100644 index 00000000..806b384e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menu_popup_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png new file mode 100644 index 00000000..4b779075 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menubar_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_dn.png new file mode 100644 index 00000000..9e04d2c7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menubar_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_hi.png new file mode 100644 index 00000000..04fb4003 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menubar_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_up.png new file mode 100644 index 00000000..5e910d33 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_dn.png new file mode 100644 index 00000000..5eca7012 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_hi.png new file mode 100644 index 00000000..89997f21 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_up.png new file mode 100644 index 00000000..6fcef601 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/middle_justify.png b/cinelerra-5.1/plugins/theme_neophyte/data/middle_justify.png new file mode 100644 index 00000000..69d7aa9e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/middle_justify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_add.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_add.png new file mode 100644 index 00000000..ecad13d8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_add.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_and.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_and.png new file mode 100644 index 00000000..dbbc4e20 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_and.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_burn.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_burn.png new file mode 100644 index 00000000..f465a6ba Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_burn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_darken.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_darken.png new file mode 100644 index 00000000..2c3f6c8a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_darken.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_difference.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_difference.png new file mode 100644 index 00000000..c036b9d9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_difference.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_divide.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_divide.png new file mode 100644 index 00000000..d4cec2a3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_divide.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dn.png new file mode 100644 index 00000000..1c8a01ec Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dodge.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dodge.png new file mode 100644 index 00000000..68eed2ac Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dodge.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dst.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dst.png new file mode 100644 index 00000000..933eb89c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dst.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstatop.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstatop.png new file mode 100644 index 00000000..8ac13873 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstatop.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstin.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstin.png new file mode 100644 index 00000000..7fab8e1b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstin.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstout.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstout.png new file mode 100644 index 00000000..09cfb006 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstout.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstover.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstover.png new file mode 100644 index 00000000..d9328280 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstover.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_hardlight.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_hardlight.png new file mode 100644 index 00000000..d9b9b64a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_hardlight.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_hi.png new file mode 100644 index 00000000..040b7dad Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_lighten.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_lighten.png new file mode 100644 index 00000000..fa9a5877 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_lighten.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_max.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_max.png new file mode 100644 index 00000000..de0ffbea Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_max.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_min.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_min.png new file mode 100644 index 00000000..eff2d446 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_min.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_multiply.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_multiply.png new file mode 100644 index 00000000..61d47bdf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_multiply.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_normal.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_normal.png new file mode 100644 index 00000000..d32ce5ac Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_normal.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_or.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_or.png new file mode 100644 index 00000000..9a531226 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_or.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_overlay.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_overlay.png new file mode 100644 index 00000000..5351dae8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_overlay.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_replace.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_replace.png new file mode 100644 index 00000000..b9d8f543 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_replace.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_screen.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_screen.png new file mode 100644 index 00000000..4d34376a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_screen.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_softlight.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_softlight.png new file mode 100644 index 00000000..6a101a63 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_softlight.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_src.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_src.png new file mode 100644 index 00000000..1b0038d8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_src.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcatop.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcatop.png new file mode 100644 index 00000000..36426557 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcatop.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcin.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcin.png new file mode 100644 index 00000000..31bcc425 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcin.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcout.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcout.png new file mode 100644 index 00000000..6119c40a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcout.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcover.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcover.png new file mode 100644 index 00000000..a8ff0f26 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcover.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_subtract.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_subtract.png new file mode 100644 index 00000000..0b9b99db Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_subtract.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_up.png new file mode 100644 index 00000000..ea03d78b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mode_xor.png b/cinelerra-5.1/plugins/theme_neophyte/data/mode_xor.png new file mode 100644 index 00000000..c7f6765a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_xor.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/modekeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/modekeyframe.png new file mode 100644 index 00000000..65d168dc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/modekeyframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mscroll_filler.png b/cinelerra-5.1/plugins/theme_neophyte/data/mscroll_filler.png new file mode 100644 index 00000000..8a9c84a4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mscroll_filler.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checked.png new file mode 100644 index 00000000..2fc60bbb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checkedhi.png new file mode 100644 index 00000000..03eb9578 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_dn.png new file mode 100644 index 00000000..e1b6d26e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_hi.png new file mode 100644 index 00000000..5dbb3c80 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_up.png new file mode 100644 index 00000000..1112ef87 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png new file mode 100644 index 00000000..6dfc38a2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_dn.png new file mode 100644 index 00000000..a7a77c06 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_hi.png new file mode 100644 index 00000000..e6e2d1d7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_up.png new file mode 100644 index 00000000..040d7b5e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png b/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png new file mode 100644 index 00000000..eda6e056 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/nextlabel.png b/cinelerra-5.1/plugins/theme_neophyte/data/nextlabel.png new file mode 100644 index 00000000..c1ecaa4d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/nextlabel.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/nexttip.png b/cinelerra-5.1/plugins/theme_neophyte/data/nexttip.png new file mode 100644 index 00000000..6e06a172 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/nexttip.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ok.png b/cinelerra-5.1/plugins/theme_neophyte/data/ok.png new file mode 100644 index 00000000..fb629ecd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ok.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png b/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png new file mode 100644 index 00000000..8e79dfb5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/out_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/out_checked.png new file mode 100644 index 00000000..07b6840e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/out_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/out_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/out_checkedhi.png new file mode 100644 index 00000000..e0d0bde5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/out_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/out_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/out_dn.png new file mode 100644 index 00000000..c6a1626b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/out_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/out_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/out_hi.png new file mode 100644 index 00000000..9548b762 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/out_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/out_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/out_up.png new file mode 100644 index 00000000..38a8f7fb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/out_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/outpoint.png b/cinelerra-5.1/plugins/theme_neophyte/data/outpoint.png new file mode 100644 index 00000000..e41870fa Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/outpoint.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/over.png b/cinelerra-5.1/plugins/theme_neophyte/data/over.png new file mode 100644 index 00000000..9b2f5df7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/over.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/overwrite.png b/cinelerra-5.1/plugins/theme_neophyte/data/overwrite.png new file mode 100644 index 00000000..e6e6a1a7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/overwrite.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel.png new file mode 100644 index 00000000..8931bbf7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel_small.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel_small.png new file mode 100644 index 00000000..123f27c2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel_small.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_hi.png new file mode 100644 index 00000000..4d4be8b5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_popup.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_popup.png new file mode 100644 index 00000000..10c0fc9f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_popup.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick.png new file mode 100644 index 00000000..5108788d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick_small.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick_small.png new file mode 100644 index 00000000..734251dc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick_small.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pan_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/pan_up.png new file mode 100644 index 00000000..356809d5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pane.png b/cinelerra-5.1/plugins/theme_neophyte/data/pane.png new file mode 100644 index 00000000..8fe1aac4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pane.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pane_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/pane_dn.png new file mode 100644 index 00000000..2b07aa35 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pane_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pane_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/pane_hi.png new file mode 100644 index 00000000..3e15250e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pane_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pane_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/pane_up.png new file mode 100644 index 00000000..f50edfd1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pane_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/panel_divider.png b/cinelerra-5.1/plugins/theme_neophyte/data/panel_divider.png new file mode 100644 index 00000000..a2c48609 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/panel_divider.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pankeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/pankeyframe.png new file mode 100644 index 00000000..8c3cb79d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pankeyframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/paste.png b/cinelerra-5.1/plugins/theme_neophyte/data/paste.png new file mode 100644 index 00000000..f361ee00 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/paste.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/patch_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/patch_checked.png new file mode 100644 index 00000000..30b56303 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/patch_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/patch_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/patch_checkedhi.png new file mode 100644 index 00000000..45ea5277 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/patch_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/patch_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/patch_dn.png new file mode 100644 index 00000000..6b60893e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/patch_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/patch_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/patch_hi.png new file mode 100644 index 00000000..864968e4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/patch_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/patch_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/patch_up.png new file mode 100644 index 00000000..a004d4a2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/patch_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/patchbay_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/patchbay_bg.png new file mode 100644 index 00000000..88dbb503 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/patchbay_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/path3954-0.png b/cinelerra-5.1/plugins/theme_neophyte/data/path3954-0.png new file mode 100644 index 00000000..27104441 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/path3954-0.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/path3954-1.png b/cinelerra-5.1/plugins/theme_neophyte/data/path3954-1.png new file mode 100644 index 00000000..b48867e8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/path3954-1.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pause.png b/cinelerra-5.1/plugins/theme_neophyte/data/pause.png new file mode 100644 index 00000000..2380154d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pause.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/period.png b/cinelerra-5.1/plugins/theme_neophyte/data/period.png new file mode 100644 index 00000000..072f5e5b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/period.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/picture.png b/cinelerra-5.1/plugins/theme_neophyte/data/picture.png new file mode 100644 index 00000000..c634d408 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/picture.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/play.png b/cinelerra-5.1/plugins/theme_neophyte/data/play.png new file mode 100644 index 00000000..4384b7ae Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/play.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch.png b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch.png new file mode 100644 index 00000000..f98de59b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checked.png new file mode 100644 index 00000000..b61b5fbe Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checkedhi.png new file mode 100644 index 00000000..b4a11907 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_dn.png new file mode 100644 index 00000000..39eaef2a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_hi.png new file mode 100644 index 00000000..aa03e2f6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_up.png new file mode 100644 index 00000000..9f597e81 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_bg.png new file mode 100644 index 00000000..ec59e0de Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_on.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_on.png new file mode 100644 index 00000000..6dbed148 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_on.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_ondn.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_ondn.png new file mode 100644 index 00000000..effe3542 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_ondn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onhi.png new file mode 100644 index 00000000..e307f27c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselect.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselect.png new file mode 100644 index 00000000..0dc86bff Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselect.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselecthi.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselecthi.png new file mode 100644 index 00000000..75698193 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselecthi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_show.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_show.png new file mode 100644 index 00000000..0d2df779 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_show.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showdn.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showdn.png new file mode 100644 index 00000000..c15efdc6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showdn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showhi.png new file mode 100644 index 00000000..971ccf89 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselect.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselect.png new file mode 100644 index 00000000..5aff3321 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselect.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselecthi.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselecthi.png new file mode 100644 index 00000000..04d66119 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselecthi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pot_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/pot_dn.png new file mode 100644 index 00000000..0c0a3ee1 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pot_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pot_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/pot_hi.png new file mode 100644 index 00000000..037919a3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pot_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/pot_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/pot_up.png new file mode 100644 index 00000000..21e50bfc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/pot_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preferences_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/preferences_bg.png new file mode 100644 index 00000000..61d0bc06 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preferences_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dn.png new file mode 100644 index 00000000..4f333715 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnhi.png new file mode 100644 index 00000000..713feb55 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnlo.png b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnlo.png new file mode 100644 index 00000000..ed10363d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnlo.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_up.png new file mode 100644 index 00000000..3722d038 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_uphi.png b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_uphi.png new file mode 100644 index 00000000..634a687f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_uphi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit0.png b/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit0.png new file mode 100644 index 00000000..3e4244c6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit0.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit1.png b/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit1.png new file mode 100644 index 00000000..24ea88f9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit1.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit2.png b/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit2.png new file mode 100644 index 00000000..7f6079cf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit2.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png b/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png new file mode 100644 index 00000000..3b89d2ee Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/prevlabel.png b/cinelerra-5.1/plugins/theme_neophyte/data/prevlabel.png new file mode 100644 index 00000000..4a23b43d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/prevlabel.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/prevtip.png b/cinelerra-5.1/plugins/theme_neophyte/data/prevtip.png new file mode 100644 index 00000000..3bc6b77b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/prevtip.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/progress_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/progress_bg.png new file mode 100644 index 00000000..646ee19a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/progress_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/progress_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/progress_hi.png new file mode 100644 index 00000000..19f0c61e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/progress_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/projector.png b/cinelerra-5.1/plugins/theme_neophyte/data/projector.png new file mode 100644 index 00000000..3bda81c0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/projector.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/projectorkeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/projectorkeyframe.png new file mode 100644 index 00000000..cf6f5908 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/projectorkeyframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/protect.png b/cinelerra-5.1/plugins/theme_neophyte/data/protect.png new file mode 100644 index 00000000..d2383acc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/protect.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkd.png new file mode 100644 index 00000000..2d7ce462 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkdhi.png new file mode 100644 index 00000000..ad7f2f6c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_down.png new file mode 100644 index 00000000..b4b443d0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_hi.png new file mode 100644 index 00000000..f607902f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_up.png new file mode 100644 index 00000000..ac659593 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkd.png new file mode 100644 index 00000000..8c8b6b7a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkdhi.png new file mode 100644 index 00000000..a90fa9d0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_down.png new file mode 100644 index 00000000..7ecffa32 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_hi.png new file mode 100644 index 00000000..4663f003 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_up.png new file mode 100644 index 00000000..a8e02bfc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/radial_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/radial_checked.png new file mode 100644 index 00000000..f0c6b58f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/radial_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/radial_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/radial_checkedhi.png new file mode 100644 index 00000000..b04c3843 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/radial_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/radial_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/radial_dn.png new file mode 100644 index 00000000..5f4361b2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/radial_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/radial_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/radial_hi.png new file mode 100644 index 00000000..1ae82db3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/radial_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/radial_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/radial_up.png new file mode 100644 index 00000000..2e6f32f7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/radial_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/record.png b/cinelerra-5.1/plugins/theme_neophyte/data/record.png new file mode 100644 index 00000000..0788182d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/record.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_batch.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_batch.png new file mode 100644 index 00000000..83c61a6a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_batch.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_controls.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_controls.png new file mode 100644 index 00000000..e931528a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_controls.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_list.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_list.png new file mode 100644 index 00000000..9fb1d7eb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_list.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_meters.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_meters.png new file mode 100644 index 00000000..d0dee822 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_meters.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_panel.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_panel.png new file mode 100644 index 00000000..dd1b07b3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_panel.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch.png new file mode 100644 index 00000000..f98de59b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checked.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checked.png new file mode 100644 index 00000000..298aee09 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checked.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checkedhi.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checkedhi.png new file mode 100644 index 00000000..9301885f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checkedhi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_dn.png new file mode 100644 index 00000000..fe9ed2c0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_hi.png new file mode 100644 index 00000000..8bdd6998 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_up.png new file mode 100644 index 00000000..f98cc8a8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/rect2818-9.png b/cinelerra-5.1/plugins/theme_neophyte/data/rect2818-9.png new file mode 100644 index 00000000..68163757 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/rect2818-9.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/rect2820-9.png b/cinelerra-5.1/plugins/theme_neophyte/data/rect2820-9.png new file mode 100644 index 00000000..bee9ccba Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/rect2820-9.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/redo.png b/cinelerra-5.1/plugins/theme_neophyte/data/redo.png new file mode 100644 index 00000000..e45faae7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/redo.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/reload.png b/cinelerra-5.1/plugins/theme_neophyte/data/reload.png new file mode 100644 index 00000000..d422c14f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/reload.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/rename.png b/cinelerra-5.1/plugins/theme_neophyte/data/rename.png new file mode 100644 index 00000000..71e36db8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/rename.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource1024.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource1024.png new file mode 100644 index 00000000..4a172b3c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/resource1024.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource128.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource128.png new file mode 100644 index 00000000..fc26ee32 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/resource128.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource256.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource256.png new file mode 100644 index 00000000..9f629c83 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/resource256.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource32.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource32.png new file mode 100644 index 00000000..567a5c52 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/resource32.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource512.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource512.png new file mode 100644 index 00000000..c29273e3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/resource512.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource64.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource64.png new file mode 100644 index 00000000..ecfc51e0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/resource64.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/reverse.png b/cinelerra-5.1/plugins/theme_neophyte/data/reverse.png new file mode 100644 index 00000000..3f6557f3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/reverse.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png b/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png new file mode 100644 index 00000000..3fe73732 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/right_justify.png b/cinelerra-5.1/plugins/theme_neophyte/data/right_justify.png new file mode 100644 index 00000000..f84194a7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/right_justify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ruler.png b/cinelerra-5.1/plugins/theme_neophyte/data/ruler.png new file mode 100644 index 00000000..1e53c639 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ruler.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/scope.png b/cinelerra-5.1/plugins/theme_neophyte/data/scope.png new file mode 100644 index 00000000..bef250d8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/scope.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/setformat_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/setformat_bg.png new file mode 100644 index 00000000..83d74b4d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/setformat_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_dn.png new file mode 100644 index 00000000..5b1e133b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_hi.png new file mode 100644 index 00000000..3bba6408 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_up.png new file mode 100644 index 00000000..07731825 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/show_meters.png b/cinelerra-5.1/plugins/theme_neophyte/data/show_meters.png new file mode 100644 index 00000000..e3107821 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/show_meters.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/singleframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/singleframe.png new file mode 100644 index 00000000..cae37db4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/singleframe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/space.png b/cinelerra-5.1/plugins/theme_neophyte/data/space.png new file mode 100644 index 00000000..c8147f05 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/space.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/splice.png b/cinelerra-5.1/plugins/theme_neophyte/data/splice.png new file mode 100644 index 00000000..df11056d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/splice.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png new file mode 100644 index 00000000..c34c3cb5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_dn.png new file mode 100644 index 00000000..8f61c494 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_hi.png new file mode 100644 index 00000000..8252f0b6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_up.png new file mode 100644 index 00000000..f0996c49 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/stop.png b/cinelerra-5.1/plugins/theme_neophyte/data/stop.png new file mode 100644 index 00000000..a8dcf391 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/stop.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/swap_extents.png b/cinelerra-5.1/plugins/theme_neophyte/data/swap_extents.png new file mode 100644 index 00000000..c9f62466 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/swap_extents.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tan_linear.png b/cinelerra-5.1/plugins/theme_neophyte/data/tan_linear.png new file mode 100644 index 00000000..ad80c857 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tan_linear.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tan_smooth.png b/cinelerra-5.1/plugins/theme_neophyte/data/tan_smooth.png new file mode 100644 index 00000000..f78278c6 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tan_smooth.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/text.png b/cinelerra-5.1/plugins/theme_neophyte/data/text.png new file mode 100644 index 00000000..008d7173 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/text.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/text1473-8-6.png b/cinelerra-5.1/plugins/theme_neophyte/data/text1473-8-6.png new file mode 100644 index 00000000..580e737a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/text1473-8-6.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/text_highlight.png b/cinelerra-5.1/plugins/theme_neophyte/data/text_highlight.png new file mode 100644 index 00000000..38e7c200 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/text_highlight.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/timebar_bg_flat.png b/cinelerra-5.1/plugins/theme_neophyte/data/timebar_bg_flat.png new file mode 100644 index 00000000..700f37bf Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/timebar_bg_flat.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/timebar_brender.png b/cinelerra-5.1/plugins/theme_neophyte/data/timebar_brender.png new file mode 100644 index 00000000..1344826e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/timebar_brender.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/timebar_view.png b/cinelerra-5.1/plugins/theme_neophyte/data/timebar_view.png new file mode 100644 index 00000000..fd57f1d2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/timebar_view.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_dn.png new file mode 100644 index 00000000..98ab179b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_hi.png new file mode 100644 index 00000000..fea470ba Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_up.png new file mode 100644 index 00000000..b209a5ec Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/title_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/title_bg.png new file mode 100644 index 00000000..c4dfa519 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/title_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/titlesafe.png b/cinelerra-5.1/plugins/theme_neophyte/data/titlesafe.png new file mode 100644 index 00000000..3f58ab10 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/titlesafe.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/toclip.png b/cinelerra-5.1/plugins/theme_neophyte/data/toclip.png new file mode 100644 index 00000000..766655ae Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/toclip.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/toolwindow.png b/cinelerra-5.1/plugins/theme_neophyte/data/toolwindow.png new file mode 100644 index 00000000..1bf628a7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/toolwindow.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/top_justify.png b/cinelerra-5.1/plugins/theme_neophyte/data/top_justify.png new file mode 100644 index 00000000..2b10e3cb Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/top_justify.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png b/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png new file mode 100644 index 00000000..552f48f0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/transporthi.png b/cinelerra-5.1/plugins/theme_neophyte/data/transporthi.png new file mode 100644 index 00000000..6596811f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/transporthi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/transportup.png b/cinelerra-5.1/plugins/theme_neophyte/data/transportup.png new file mode 100644 index 00000000..20d23414 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/transportup.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tumble_bottom.png b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_bottom.png new file mode 100644 index 00000000..c14ea51f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_bottom.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tumble_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_hi.png new file mode 100644 index 00000000..98579d29 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tumble_top.png b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_top.png new file mode 100644 index 00000000..8ca5d1fa Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_top.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/tumble_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_up.png new file mode 100644 index 00000000..1a50b631 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/tumble_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/undo.png b/cinelerra-5.1/plugins/theme_neophyte/data/undo.png new file mode 100644 index 00000000..60616d2a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/undo.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/updir.png b/cinelerra-5.1/plugins/theme_neophyte/data/updir.png new file mode 100644 index 00000000..bec344ec Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/updir.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_left.png b/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_left.png new file mode 100644 index 00000000..bec37b81 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_left.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png b/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png new file mode 100644 index 00000000..90a45d59 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_bg.png new file mode 100644 index 00000000..7dabf8e3 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_dn.png new file mode 100644 index 00000000..8bc0b935 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_hi.png new file mode 100644 index 00000000..f88759cd Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_up.png new file mode 100644 index 00000000..995d5045 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_dn.png new file mode 100644 index 00000000..a5440005 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_hi.png new file mode 100644 index 00000000..7e0565e9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_up.png new file mode 100644 index 00000000..b1d538be Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_dn.png new file mode 100644 index 00000000..6310b97c Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_hi.png new file mode 100644 index 00000000..cb5cdee4 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_up.png new file mode 100644 index 00000000..7d98d344 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vwindow_timebar.png b/cinelerra-5.1/plugins/theme_neophyte/data/vwindow_timebar.png new file mode 100644 index 00000000..7e424d7b Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vwindow_timebar.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/waveform.png b/cinelerra-5.1/plugins/theme_neophyte/data/waveform.png new file mode 100644 index 00000000..fb81e31a Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/waveform.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/waveform_rgb.png b/cinelerra-5.1/plugins/theme_neophyte/data/waveform_rgb.png new file mode 100644 index 00000000..c529ce15 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/waveform_rgb.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/wrench.png b/cinelerra-5.1/plugins/theme_neophyte/data/wrench.png new file mode 100644 index 00000000..559d825e Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/wrench.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_green.png b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_green.png new file mode 100644 index 00000000..2c033bfc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_green.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_normal.png b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_normal.png new file mode 100644 index 00000000..1a39b7f7 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_normal.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_over.png b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_over.png new file mode 100644 index 00000000..7eafd9ac Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_over.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_red.png b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_red.png new file mode 100644 index 00000000..a5985879 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_red.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_white.png b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_white.png new file mode 100644 index 00000000..d697a8d5 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_white.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_yellow.png b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_yellow.png new file mode 100644 index 00000000..741c9851 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_yellow.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xpane_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/xpane_dn.png new file mode 100644 index 00000000..80a7337f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xpane_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xpane_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/xpane_hi.png new file mode 100644 index 00000000..436c0803 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xpane_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/xpane_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/xpane_up.png new file mode 100644 index 00000000..007cf7a0 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/xpane_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_green.png b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_green.png new file mode 100644 index 00000000..5f43f2bc Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_green.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_normal.png b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_normal.png new file mode 100644 index 00000000..ba602d4d Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_normal.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_over.png b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_over.png new file mode 100644 index 00000000..e2187a83 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_over.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_red.png b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_red.png new file mode 100644 index 00000000..68ce0a56 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_red.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_white.png b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_white.png new file mode 100644 index 00000000..8db53765 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_white.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_yellow.png b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_yellow.png new file mode 100644 index 00000000..e7c6e338 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_yellow.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ypane_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_dn.png new file mode 100644 index 00000000..2f7c4dee Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ypane_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_hi.png new file mode 100644 index 00000000..dff6eae9 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png new file mode 100644 index 00000000..321bf0c8 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_dn.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_dn.png new file mode 100644 index 00000000..24c84b85 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_hi.png new file mode 100644 index 00000000..b2364594 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_up.png new file mode 100644 index 00000000..4925f0d2 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_bottom.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_bottom.png new file mode 100644 index 00000000..c14ea51f Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_bottom.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_hi.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_hi.png new file mode 100644 index 00000000..1fcb2375 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_top.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_top.png new file mode 100644 index 00000000..8ca5d1fa Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_top.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_up.png b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_up.png new file mode 100644 index 00000000..1a50b631 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/neophyte.C b/cinelerra-5.1/plugins/theme_neophyte/neophyte.C new file mode 100644 index 00000000..d4083589 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/neophyte.C @@ -0,0 +1,1039 @@ +/* + * Neophyte theme (2018-08-01) + * Design: Olaf Wolff + * Based on unflat theme, based on S.U.V. theme. + * + * CINELERRA + * Copyright (C) 1997-2014 Adam Williams + * by Paolo Rampino + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#include "bcsignals.h" +#include "clip.h" +#include "cwindowgui.h" +#include "neophyte.h" +#include "edl.h" +#include "edlsession.h" +#include "mainmenu.h" +#include "mainsession.h" +#include "mbuttons.h" +#include "meterpanel.h" +#include "mwindow.h" +#include "mwindowgui.h" +#include "new.h" +#include "patchbay.h" +#include "preferencesthread.h" +#include "recordgui.h" +#include "recordmonitor.h" +#include "setformat.h" +#include "statusbar.h" +#include "timebar.h" +#include "trackcanvas.h" +#include "vframe.h" +#include "vwindowgui.h" + +#define CWHITE 0xfffdee // creamy white without black + +// so einfach ist das nicht +// #undef RED +// #define RED 0xfffdee +// #undef BLUE +// #define BLUE 0xfffdee + +PluginClient* new_plugin(PluginServer *server) +{ + return new NEOPHYTETHEMEMain(server); +} + +NEOPHYTETHEMEMain::NEOPHYTETHEMEMain(PluginServer *server) + : PluginTClient(server) +{ +} + +NEOPHYTETHEMEMain::~NEOPHYTETHEMEMain() +{ +} + +const char* NEOPHYTETHEMEMain::plugin_title() { return N_("Neophyte"); } + +Theme* NEOPHYTETHEMEMain::new_theme() +{ + theme = new NEOPHYTETHEME; + extern unsigned char _binary_theme_neophyte_data_start[]; + theme->set_data(_binary_theme_neophyte_data_start); + return theme; +} + +NEOPHYTETHEME::NEOPHYTETHEME() + : Theme() +{ +} + +NEOPHYTETHEME::~NEOPHYTETHEME() +{ + delete camerakeyframe_data; + delete channel_position_data; + delete keyframe_data; + delete maskkeyframe_data; + delete modekeyframe_data; + delete pankeyframe_data; + delete projectorkeyframe_data; +} + +void NEOPHYTETHEME::initialize() +{ + BC_Resources *resources = BC_WindowBase::get_resources(); + + resources->text_default = 0xe6e4dd; // creamy white 10% black + resources->text_background = 0x141414; // 92% black + resources->text_background_disarmed = 0x400000; // lock-ed (!) + + resources->text_border2 = 0x141414; // l,t outside - 92% black + resources->text_border1 = 0x000000; // l,t inside - 100% black + resources->text_border3 = 0x474747; // r,d inside - 72% black + resources->text_border4 = 0x141414; // r,d outside - 92% black + + resources->text_inactive_highlight = 0x162d50; // z.B. Subtitle, baby-blue -3 + + resources->bg_color = 0x262626; // 85% black + resources->border_light2 = resources->bg_color; + resources->border_shadow2 = resources->bg_color; + + resources->default_text_color = 0xffffff; //0xf2f2f2; timeline … + resources->menu_title_text = 0xffffff; // f2f2f2; + resources->popup_title_text = 0xffffff; // f2f2f2; + resources->menu_item_text = 0xffffff; // f2f2f2; + + resources->menu_highlighted_fontcolor = CWHITE; + resources->generic_button_margin = 30; // 30 + resources->pot_needle_color = 0xe6e4dd; // [resources->text_default] – marginal + resources->pot_offset = 1; // nur die Nadel. + resources->progress_text = resources->text_default; + resources->meter_font_color = resources->default_text_color; + + resources->menu_light = 0x262626; // wird von Grafik überschrieben + resources->menu_down = 0x00ffff; // + resources->menu_up = 0x00ffff; // + resources->menu_shadow = 0x00ffff; // + + resources->menu_highlighted = 0x5f8dd3; // baby-blue + resources->popupmenu_margin = 15; // Einzug, verschiebt den Knopf-Text nach rechts + resources->popupmenu_triangle_margin = 15; + + resources->listbox_title_color = CWHITE; // Spalten Überschrift + resources->listbox_title_margin = 15; // [20] Einzug + resources->listbox_title_hotspot = 15; // [20] + + resources->listbox_border2 = 0x141414; // wie text_border + resources->listbox_border1 = 0x000000; // + resources->listbox_border3 = 0x474747; // + resources->listbox_border4 = 0x141414; // + + resources->listbox_highlighted = 0x5f8dd3; // recources, loadfiles + resources->listbox_inactive = 0x141414; // Hintergrund + resources->listbox_bg = 0; // siehe ../theme_blond_cv/blondcvtheme.C:249 + resources->listbox_text = 0xe6e4dd; // +// es fehlt "markiert" in allen Themen, derzeit 0000ff. + + resources->filebox_margin = 130; + resources->file_color = 0xf2f2f2; + resources->directory_color = 0x5f8dd3; // 0xa0a0ff; + + new_toggle( + "loadmode_new.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_new"); + new_toggle( + "loadmode_none.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_none"); + new_toggle( + "loadmode_newcat.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_newcat"); + new_toggle( + "loadmode_cat.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_cat"); + new_toggle( + "loadmode_newtracks.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_newtracks"); + new_toggle( + "loadmode_paste.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_paste"); + new_toggle( + "loadmode_resource.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_resource"); + new_toggle( + "loadmode_nested.png", + "loadmode_up.png", + "loadmode_hi.png", + "loadmode_checked.png", + "loadmode_dn.png", + "loadmode_checkedhi.png", + "loadmode_nested"); + + resources->filebox_icons_images = new_button( + "icons.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_icons"); + + resources->filebox_text_images = new_button("text.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_text"); + + resources->filebox_newfolder_images = new_button("folder.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_newfolder"); + + resources->filebox_rename_images = new_button("rename.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_rename"); + + resources->filebox_updir_images = new_button("updir.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_updir"); + + resources->filebox_delete_images = new_button("delete.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_delete"); + + resources->filebox_reload_images = new_button("reload.png", + "fileboxbutton_up.png", + "fileboxbutton_hi.png", + "fileboxbutton_dn.png", + "filebox_reload"); + + resources->filebox_descend_images = new_button("openfolder.png", + "filebox_bigbutton_up.png", + "filebox_bigbutton_hi.png", + "filebox_bigbutton_dn.png", + "filebox_descend"); + + resources->usethis_button_images = + resources->ok_images = new_button("ok.png", + "filebox_bigbutton_up.png", + "filebox_bigbutton_hi.png", + "filebox_bigbutton_dn.png", + "ok_button"); + + new_button("ok.png", + "new_bigbutton_up.png", + "new_bigbutton_hi.png", + "new_bigbutton_dn.png", + "new_ok_images"); + + resources->cancel_images = new_button("cancel.png", + "filebox_bigbutton_up.png", + "filebox_bigbutton_hi.png", + "filebox_bigbutton_dn.png", + "cancel_button"); + + new_button("cancel.png", + "new_bigbutton_up.png", + "new_bigbutton_hi.png", + "new_bigbutton_dn.png", + "new_cancel_images"); + + // Uhr – wo? + resources->medium_7segment = new_image_set(TOTAL_7SEGMENT, + "0.png", + "1.png", + "2.png", + "3.png", + "4.png", + "5.png", + "6.png", + "7.png", + "8.png", + "9.png", + "colon.png", + "period.png", + "a.png", + "b.png", + "c.png", + "d.png", + "e.png", + "f.png", + "space.png", + "dash.png"); + + resources->bar_data = new_image("bar", "bar.png"); + resources->check = new_image("check", "check.png"); + + resources->min_menu_w = 96; + resources->menu_popup_bg = new_image("menu_popup_bg.png"); + resources->menu_item_bg = new_image_set(3, + "menuitem_up.png", + "menuitem_hi.png", + "menuitem_dn.png"); + resources->menu_bar_bg = new_image("menubar_bg.png"); + resources->menu_title_bg = new_image_set(3, + "menubar_up.png", + "menubar_hi.png", + "menubar_dn.png"); + + resources->popupmenu_images = 0; +// new_image_set(3, +// "menupopup_up.png", +// "menupopup_hi.png", +// "menupopup_dn.png"); + + resources->toggle_highlight_bg = new_image("toggle_highlight_bg", + "text_highlight.png"); + + resources->generic_button_images = new_image_set(3, + "generic_up.png", + "generic_hi.png", + "generic_dn.png"); + resources->horizontal_slider_data = new_image_set(6, + "hslider_fg_up.png", + "hslider_fg_hi.png", + "hslider_fg_dn.png", + "hslider_bg_up.png", + "hslider_bg_hi.png", + "hslider_bg_dn.png"); + resources->vertical_slider_data = new_image_set(6, + "hslider_fg_up.png", + "hslider_fg_hi.png", + "hslider_fg_dn.png", + "hslider_bg_up.png", + "hslider_bg_hi.png", + "hslider_bg_dn.png"); + for( int i=0; i<6; ++i ) + resources->vertical_slider_data[i]->rotate90(); + + resources->progress_images = new_image_set(2, + "progress_bg.png", + "progress_hi.png"); + resources->tumble_data = new_image_set(4, + "tumble_up.png", + "tumble_hi.png", + "tumble_bottom.png", + "tumble_top.png"); + resources->listbox_button = new_button4("listbox_button.png", + "editpanel_up.png", + "editpanel_hi.png", + "editpanel_dn.png", + "editpanel_hi.png", + "listbox_button"); + resources->listbox_column = new_image_set(3, + "column_up.png", + "column_hi.png", + "column_dn.png"); + resources->listbox_up = new_image("listbox_up.png"); + resources->listbox_dn = new_image("listbox_dn.png"); + resources->pan_data = new_image_set(7, + "pan_up.png", + "pan_hi.png", + "pan_popup.png", + "pan_channel.png", + "pan_stick.png", + "pan_channel_small.png", + "pan_stick_small.png"); + resources->pan_text_color = CWHITE; + + resources->pot_images = new_image_set(3, + "pot_up.png", + "pot_hi.png", + "pot_dn.png"); + + resources->checkbox_images = new_image_set(5, + "checkbox_up.png", + "checkbox_hi.png", + "checkbox_checked.png", + "checkbox_dn.png", + "checkbox_checkedhi.png"); + + resources->radial_images = new_image_set(5, + "radial_up.png", + "radial_hi.png", + "radial_checked.png", + "radial_dn.png", + "radial_checkedhi.png"); + + resources->xmeter_images = new_image_set(7, + "xmeter_normal.png", + "xmeter_green.png", + "xmeter_red.png", + "xmeter_yellow.png", + "xmeter_white.png", + "xmeter_over.png", + "downmix51_2.png"); + resources->ymeter_images = new_image_set(7, + "ymeter_normal.png", + "ymeter_green.png", + "ymeter_red.png", + "ymeter_yellow.png", + "ymeter_white.png", + "ymeter_over.png", + "downmix51_2.png"); + + resources->hscroll_data = new_image_set(10, + "hscroll_handle_up.png", + "hscroll_handle_hi.png", + "hscroll_handle_dn.png", + "hscroll_handle_bg.png", + "hscroll_left_up.png", + "hscroll_left_hi.png", + "hscroll_left_dn.png", + "hscroll_right_up.png", + "hscroll_right_hi.png", + "hscroll_right_dn.png"); + + resources->vscroll_data = new_image_set(10, + "vscroll_handle_up.png", + "vscroll_handle_hi.png", + "vscroll_handle_dn.png", + "vscroll_handle_bg.png", + "vscroll_left_up.png", + "vscroll_left_hi.png", + "vscroll_left_dn.png", + "vscroll_right_up.png", + "vscroll_right_hi.png", + "vscroll_right_dn.png"); + resources->scroll_minhandle = 20; + + new_button("prevtip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip"); + new_button("nexttip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "next_tip"); + new_button("closetip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "close_tip"); + new_button("swap_extents.png", + "editpanel_up.png", + "editpanel_hi.png", + "editpanel_dn.png", + "swap_extents"); + +// Record windows + preferences_category_overlap = 0; + preferencescategory_x = 0; + preferencescategory_y = 5; + preferencestitle_x = 5; + preferencestitle_y = 10; + preferencesoptions_x = 5; + preferencesoptions_y = 0; + +// MWindow + message_normal = resources->text_default; + audio_color = GREEN; + mtransport_margin = 10; + toggle_margin = 10; + + new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png", "pane"); + new_image_set("xpane", 3, "xpane_up.png", "xpane_hi.png", "xpane_dn.png"); + new_image_set("ypane", 3, "ypane_up.png", "ypane_hi.png", "ypane_dn.png"); + + new_image("mbutton_bg", "mbutton_bg.png"); + new_image("timebar_bg", "timebar_bg_flat.png"); + new_image("timebar_brender", "timebar_brender.png"); + new_image("clock_bg", "mclock_flat.png"); + new_image("patchbay_bg", "patchbay_bg.png"); + new_image("statusbar", "statusbar.png"); +// new_image("mscroll_filler", "mscroll_filler.png"); + + new_image_set("zoombar_menu", 3, "zoompopup_up.png", "zoompopup_hi.png", "zoompopup_dn.png"); + new_image_set("zoombar_tumbler", 4, "zoomtumble_up.png", "zoomtumble_hi.png", "zoomtumble_bottom.png", "zoomtumble_top.png"); + + new_image_set("mode_popup", 3, "mode_up.png", "mode_hi.png", "mode_dn.png"); + new_image("mode_add", "mode_add.png"); + new_image("mode_divide", "mode_divide.png"); + new_image("mode_multiply", "mode_multiply.png"); + new_image("mode_normal", "mode_normal.png"); + new_image("mode_replace", "mode_replace.png"); + new_image("mode_subtract", "mode_subtract.png"); + new_image("mode_max", "mode_max.png"); + + new_image_set("plugin_on", 5, "plugin_on.png", "plugin_onhi.png", "plugin_onselect.png", "plugin_ondn.png", "plugin_onselecthi.png"); + new_image_set("plugin_show", 5, "plugin_show.png", "plugin_showhi.png", "plugin_showselect.png", "plugin_showdn.png", "plugin_showselecthi.png"); + +// CWindow + new_image("cpanel_bg", "cpanel_bg.png"); + new_image("cbuttons_left", "cbuttons_left.png"); + new_image("cbuttons_right", "cbuttons_right.png"); + new_image("cmeter_bg", "cmeter_bg.png"); + +// VWindow + new_image("vbuttons_left", "vbuttons_left.png"); + new_image("vclock", "vclock.png"); + + new_image("preferences_bg", "preferences_bg.png"); + + new_image("new_bg", "new_bg.png"); + new_image("setformat_bg", "setformat_bg.png"); + + timebar_view_data = new_image("timebar_view.png"); + + setformat_w = get_image("setformat_bg")->get_w(); + setformat_h = get_image("setformat_bg")->get_h(); + setformat_x1 = 15; + setformat_x2 = 110; + + setformat_x3 = 315; + setformat_x4 = 425; + setformat_y1 = 20; + setformat_y2 = 85; + setformat_y3 = 125; + setformat_margin = 30; + setformat_channels_x = 25; + setformat_channels_y = 242; + setformat_channels_w = 250; + setformat_channels_h = 250; + + loadfile_pad = get_image_set("loadmode_new")[0]->get_h() + 10; + browse_pad = 20; + + new_toggle("playpatch.png", + "playpatch_up.png", + "playpatch_hi.png", + "playpatch_checked.png", + "playpatch_dn.png", + "playpatch_checkedhi.png", + "playpatch_data"); + + new_toggle("recordpatch.png", + "recordpatch_up.png", + "recordpatch_hi.png", + "recordpatch_checked.png", + "recordpatch_dn.png", + "recordpatch_checkedhi.png", + "recordpatch_data"); + + new_toggle("gangpatch.png", + "patch_up.png", + "patch_hi.png", + "patch_checked.png", + "patch_dn.png", + "patch_checkedhi.png", + "gangpatch_data"); + + new_toggle("drawpatch.png", + "patch_up.png", + "patch_hi.png", + "patch_checked.png", + "patch_dn.png", + "patch_checkedhi.png", + "drawpatch_data"); + + new_image_set("mutepatch_data", + 5, + "mutepatch_up.png", + "mutepatch_hi.png", + "mutepatch_checked.png", + "mutepatch_dn.png", + "mutepatch_checkedhi.png"); + + new_image_set("expandpatch_data", + 5, + "expandpatch_up.png", + "expandpatch_hi.png", + "expandpatch_checked.png", + "expandpatch_dn.png", + "expandpatch_checkedhi.png"); + + build_bg_data(); + build_overlays(); + + out_point = new_image_set(5, + "out_up.png", + "out_hi.png", + "out_checked.png", + "out_dn.png", + "out_checkedhi.png"); + in_point = new_image_set(5, + "in_up.png", + "in_hi.png", + "in_checked.png", + "in_dn.png", + "in_checkedhi.png"); + + label_toggle = new_image_set(5, + "labeltoggle_up.png", + "labeltoggle_uphi.png", + "label_checked.png", + "labeltoggle_dn.png", + "label_checkedhi.png"); + + ffmpeg_toggle = new_image_set(5, + "ff_up.png", + "ff_hi.png", + "ff_checked.png", + "ff_down.png", + "ff_checkedhi.png"); + + proxy_p_toggle = new_image_set(5, + "proxy_p_up.png", + "proxy_p_hi.png", + "proxy_p_chkd.png", + "proxy_p_down.png", + "proxy_p_chkdhi.png"); + + proxy_s_toggle = new_image_set(5, + "proxy_s_up.png", + "proxy_s_hi.png", + "proxy_s_chkd.png", + "proxy_s_down.png", + "proxy_s_chkdhi.png"); + + shbtn_data = new_image_set(3, + "shbtn_up.png", + "shbtn_hi.png", + "shbtn_dn.png"); + + new_image_set("preset_edit", + 3, + "preset_edit0.png", + "preset_edit1.png", + "preset_edit2.png"); + + new_image_set("histogram_carrot", + 5, + "histogram_carrot_up.png", + "histogram_carrot_hi.png", + "histogram_carrot_checked.png", + "histogram_carrot_dn.png", + "histogram_carrot_checkedhi.png"); + + statusbar_cancel_data = new_image_set(3, + "statusbar_cancel_up.png", + "statusbar_cancel_hi.png", + "statusbar_cancel_dn.png"); + + VFrame *editpanel_up = new_image("editpanel_up.png"); + VFrame *editpanel_hi = new_image("editpanel_hi.png"); + VFrame *editpanel_dn = new_image("editpanel_dn.png"); + VFrame *editpanel_checked = new_image("editpanel_checked.png"); + VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png"); + + new_image("panel_divider", "panel_divider.png"); + new_button("bottom_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "bottom_justify"); + new_button("center_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "center_justify"); + new_button("channel.png", editpanel_up, editpanel_hi, editpanel_dn, "channel"); + + new_toggle("histogram_toggle.png", + editpanel_up, + editpanel_hi, + editpanel_checked, + editpanel_dn, + editpanel_checkedhi, + "histogram_toggle"); + new_toggle("histogram_rgb.png", + editpanel_up, + editpanel_hi, + editpanel_checked, + editpanel_dn, + editpanel_checkedhi, + "histogram_rgb_toggle"); + new_toggle("waveform.png", + editpanel_up, + editpanel_hi, + editpanel_checked, + editpanel_dn, + editpanel_checkedhi, + "waveform_toggle"); + new_toggle("waveform_rgb.png", + editpanel_up, + editpanel_hi, + editpanel_checked, + editpanel_dn, + editpanel_checkedhi, + "waveform_rgb_toggle"); + new_toggle("scope.png", + editpanel_up, + editpanel_hi, + editpanel_checked, + editpanel_dn, + editpanel_checkedhi, + "scope_toggle"); + + new_button("picture.png", editpanel_up, editpanel_hi, editpanel_dn, "picture"); + new_button("histogram_img.png", editpanel_up, editpanel_hi, editpanel_dn, "histogram_img"); + + new_button("copy.png", editpanel_up, editpanel_hi, editpanel_dn, "copy"); + new_button("commercial.png", editpanel_up, editpanel_hi, editpanel_dn, "commercial"); + new_button("cut.png", editpanel_up, editpanel_hi, editpanel_dn, "cut"); + new_button("fit.png", editpanel_up, editpanel_hi, editpanel_dn, "fit"); + new_button("fitautos.png", editpanel_up, editpanel_hi, editpanel_dn, "fitautos"); + new_button("inpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "inbutton"); + new_button("label.png", editpanel_up, editpanel_hi, editpanel_dn, "labelbutton"); + new_button("left_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "left_justify"); + new_button("magnify.png", editpanel_up, editpanel_hi, editpanel_dn, "magnify_button"); + new_button("middle_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "middle_justify"); + new_button("nextlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "nextlabel"); + new_button("prevlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "prevlabel"); + new_button("nextedit.png", editpanel_up, editpanel_hi, editpanel_dn, "nextedit"); + new_button("prevedit.png", editpanel_up, editpanel_hi, editpanel_dn, "prevedit"); + new_button("outpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "outbutton"); + over_button = new_button("over.png", editpanel_up, editpanel_hi, editpanel_dn,"overbutton"); + overwrite_data = new_button("overwrite.png", editpanel_up, editpanel_hi, editpanel_dn,"overwritebutton"); + new_button("paste.png", editpanel_up, editpanel_hi, editpanel_dn, "paste"); + new_button("redo.png", editpanel_up, editpanel_hi, editpanel_dn, "redo"); + new_button("right_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "right_justify"); + splice_data = new_button("splice.png", editpanel_up, editpanel_hi, editpanel_dn,"splicebutton"); + new_button("toclip.png", editpanel_up, editpanel_hi, editpanel_dn, "toclip"); + new_button("goto.png", editpanel_up, editpanel_hi, editpanel_dn, "goto"); + new_button("top_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "top_justify"); + new_button("undo.png", editpanel_up, editpanel_hi, editpanel_dn, "undo"); + new_button("wrench.png", editpanel_up, editpanel_hi, editpanel_dn, "wrench"); + + VFrame *transport_up = new_image("transportup.png"); + VFrame *transport_hi = new_image("transporthi.png"); + VFrame *transport_dn = new_image("transportdn.png"); + + new_button("end.png", transport_up, transport_hi, transport_dn, "end"); + new_button("fastfwd.png", transport_up, transport_hi, transport_dn, "fastfwd"); + new_button("fastrev.png", transport_up, transport_hi, transport_dn, "fastrev"); + new_button("play.png", transport_up, transport_hi, transport_dn, "play"); + new_button("framefwd.png", transport_up, transport_hi, transport_dn, "framefwd"); + new_button("framerev.png", transport_up, transport_hi, transport_dn, "framerev"); + new_button("pause.png", transport_up, transport_hi, transport_dn, "pause"); + new_button("record.png", transport_up, transport_hi, transport_dn, "record"); + new_button("singleframe.png", transport_up, transport_hi, transport_dn, "recframe"); + new_button("reverse.png", transport_up, transport_hi, transport_dn, "reverse"); + new_button("rewind.png", transport_up, transport_hi, transport_dn, "rewind"); + new_button("stop.png", transport_up, transport_hi, transport_dn, "stop"); + new_button("stop.png", transport_up, transport_hi, transport_dn, "stoprec"); + +// CWindow icons + new_image("cwindow_inactive", "cwindow_inactive.png"); + new_image("cwindow_active", "cwindow_active.png"); + + new_image_set("category_button", + 3, + "preferencesbutton_dn.png", + "preferencesbutton_dnhi.png", + "preferencesbutton_dnlo.png"); + + new_image_set("category_button_checked", + 3, + "preferencesbutton_up.png", + "preferencesbutton_uphi.png", + "preferencesbutton_dnlo.png"); + + new_image_set("color3way_point", + 3, + "color3way_up.png", + "color3way_hi.png", + "color3way_dn.png"); + + new_toggle("arrow.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "arrow"); + new_toggle("autokeyframe.png", transport_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "autokeyframe"); + new_toggle("ibeam.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "ibeam"); + new_toggle("show_meters.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "meters"); + new_toggle("blank30x30.png", + new_image("locklabels_locked.png"), + new_image("locklabels_lockedhi.png"), + new_image("locklabels_unlocked.png"), + new_image("locklabels_dn.png"), // can't have seperate down for each!!?? + new_image("locklabels_unlockedhi.png"), + "locklabels"); + + VFrame *cpanel_up = new_image("cpanel_up.png"); + VFrame *cpanel_hi = new_image("cpanel_hi.png"); + VFrame *cpanel_dn = new_image("cpanel_dn.png"); + VFrame *cpanel_checked = new_image("cpanel_checked.png"); + VFrame *cpanel_checkedhi = new_image("cpanel_checkedhi.png"); + + + new_toggle("camera.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "camera"); + new_toggle("crop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "crop"); + new_toggle("eyedrop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "eyedrop"); + new_toggle("magnify.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "magnify"); + new_toggle("mask.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "mask"); + new_toggle("ruler.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "ruler"); + new_toggle("projector.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "projector"); + new_toggle("protect.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "protect"); + new_toggle("titlesafe.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "titlesafe"); + new_toggle("toolwindow.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "tool"); + + // toggle for tangent mode (compositor/tool window) + new_toggle("tan_smooth.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_smooth"); + new_toggle("tan_linear.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_linear"); + + + flush_images(); + + title_font = MEDIUMFONT_3D; + title_color = 0xf2f2f2; + recordgui_fixed_color = YELLOW; + recordgui_variable_color = 0xffaaff; // RED; + + channel_position_color = MEYELLOW; + resources->meter_title_w = 25; + + // (asset) edit info text color + edit_font_color = YELLOW; +} + +#define VWINDOW_METER_MARGIN 5 + +void NEOPHYTETHEME::build_bg_data() +{ +// Audio settings + channel_position_data = new VFramePng(get_image_data("channel_position.png")); + +// Track bitmaps + new_image("resource1024", "resource1024.png"); + new_image("resource512", "resource512.png"); + new_image("resource256", "resource256.png"); + new_image("resource128", "resource128.png"); + new_image("resource64", "resource64.png"); + new_image("resource32", "resource32.png"); + new_image("plugin_bg_data", "plugin_bg.png"); + new_image("title_bg_data", "title_bg.png"); + new_image("vtimebar_bg_data", "vwindow_timebar.png"); +} + +void NEOPHYTETHEME::build_overlays() +{ + keyframe_data = new VFramePng(get_image_data("keyframe3.png")); + camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png")); + maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png")); + modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png")); + pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png")); + projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png")); +} + +void NEOPHYTETHEME::draw_rwindow_bg(RecordGUI *gui) +{ +// int y; +// int margin = 50; +// int margin2 = 80; +// gui->draw_9segment(recordgui_batch_x - margin, +// 0, +// mwindow->session->rwindow_w - recordgui_status_x + margin, +// recordgui_buttons_y, +// rgui_batch); +// gui->draw_3segmenth(recordgui_options_x - margin2, +// recordgui_buttons_y - 5, +// mwindow->session->rwindow_w - recordgui_options_x + margin2, +// rgui_controls); +// y = recordgui_buttons_y - 5 + rgui_controls->get_h(); +// gui->draw_9segment(0, +// y, +// mwindow->session->rwindow_w, +// mwindow->session->rwindow_h - y, +// rgui_list); +} + +void NEOPHYTETHEME::draw_rmonitor_bg(RecordMonitorGUI *gui) +{ +// int margin = 45; +// int panel_w = 300; +// int x = rmonitor_meter_x - margin; +// int w = mwindow->session->rmonitor_w - x; +// if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w(); +// gui->clear_box(0, +// 0, +// mwindow->session->rmonitor_w, +// mwindow->session->rmonitor_h); +// gui->draw_9segment(x, +// 0, +// w, +// mwindow->session->rmonitor_h, +// rmonitor_meters); +} + +void NEOPHYTETHEME::draw_mwindow_bg(MWindowGUI *gui) +{ +// Button bar + gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1, + gui->menu_w(), get_image("mbutton_bg")); + + int pdw = get_image("panel_divider")->get_w(); + int x = mbuttons_x; + x += 9 * get_image("play")->get_w(); + x += mtransport_margin; // the control buttons + + gui->draw_vframe(get_image("panel_divider"), + x - toggle_margin / 2 - pdw / 2 + 2, + mbuttons_y - 1); + x += 2 * get_image("arrow")->get_w() + toggle_margin; // the mode buttons + + gui->draw_vframe(get_image("panel_divider"), + x - toggle_margin / 2 - pdw / 2 + 2, + mbuttons_y - 1); + + x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons + gui->draw_vframe(get_image("panel_divider"), + x - toggle_margin / 2 - pdw / 2 + 2, + mbuttons_y - 1); + +// Clock + gui->draw_3segmenth(0, + mbuttons_y - 1 + get_image("mbutton_bg")->get_h(), + get_image("patchbay_bg")->get_w(), + get_image("clock_bg")); + +// Patchbay + gui->draw_3segmentv(patchbay_x, + patchbay_y, + patchbay_h, + get_image("patchbay_bg")); + +// Track canvas + gui->set_color(BLACK); + gui->draw_box(mcanvas_x + get_image("patchbay_bg")->get_w(), + mcanvas_y + mtimebar_h, + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT), + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h); + +// Timebar + gui->draw_3segmenth(mtimebar_x, + mtimebar_y, + mtimebar_w, + get_image("timebar_bg")); + +// Zoombar + gui->set_color(0x141414); + gui->draw_box(mzoom_x, + mzoom_y, + mwindow->session->mwindow_w, + 25); + +// Scrollbar filler +// gui->draw_vframe(get_image("mscroll_filler"), +// mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT), +// mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ)); + +// Status + gui->draw_3segmenth(mzoom_x, + mzoom_y, + mzoom_w, + get_image("statusbar")); + +} + +void NEOPHYTETHEME::draw_cwindow_bg(CWindowGUI *gui) +{ + gui->draw_3segmentv(0, 0, ccomposite_h, get_image("cpanel_bg")); + + gui->draw_3segmenth(0, ccomposite_h, cstatus_x, get_image("cbuttons_left")); + + if(mwindow->edl->session->cwindow_meter) + { + gui->draw_3segmenth(cstatus_x, + ccomposite_h, + cmeter_x - widget_border - cstatus_x, + get_image("cbuttons_right")); + gui->draw_9segment(cmeter_x - widget_border, + 0, + mwindow->session->cwindow_w - cmeter_x + widget_border, + mwindow->session->cwindow_h, + get_image("cmeter_bg")); + } + else + { + gui->draw_3segmenth(cstatus_x, + ccomposite_h, + cmeter_x - widget_border - cstatus_x + 100, + get_image("cbuttons_right")); + } +} + +void NEOPHYTETHEME::draw_vwindow_bg(VWindowGUI *gui) +{ + gui->draw_3segmenth(0, + vcanvas_h, + vdivision_x, + get_image("vbuttons_left")); + if(mwindow->edl->session->vwindow_meter) + { + gui->draw_3segmenth(vdivision_x, + vcanvas_h, + vmeter_x - widget_border - vdivision_x, + get_image("cbuttons_right")); + gui->draw_9segment(vmeter_x - widget_border, + 0, + mwindow->session->vwindow_w - vmeter_x + widget_border, + mwindow->session->vwindow_h, + get_image("cmeter_bg")); + } + else + { + gui->draw_3segmenth(vdivision_x, + vcanvas_h, + vmeter_x - widget_border - vdivision_x + 100, + get_image("cbuttons_right")); + } + +// Clock border + gui->draw_3segmenth(vtime_x - 20, + vtime_y - 1, + vtime_w + 40, + get_image("vclock")); +} + + +void NEOPHYTETHEME::draw_preferences_bg(PreferencesWindow *gui) +{ + gui->draw_vframe(get_image("preferences_bg"), 0, 0); +} + +void NEOPHYTETHEME::draw_new_bg(NewWindow *gui) +{ + gui->draw_vframe(get_image("new_bg"), 0, 0); +} + +void NEOPHYTETHEME::draw_setformat_bg(SetFormatWindow *gui) +{ + gui->draw_vframe(get_image("setformat_bg"), 0, 0); +} + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/neophyte.h b/cinelerra-5.1/plugins/theme_neophyte/neophyte.h new file mode 100644 index 00000000..586c0993 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/neophyte.h @@ -0,0 +1,73 @@ +/* + * Neophyte theme (2018-08-01) + * Design: Olaf Wolff + * Based on unflat theme, based on S.U.V. theme. + * + * CINELERRA + * Copyright (C) 2008 Adam Williams + * by Paolo Rampino + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#ifndef neophyte_H +#define neophyte_H + +#include "new.inc" +#include "plugintclient.h" +#include "preferencesthread.inc" +#include "statusbar.inc" +#include "theme.h" +#include "timebar.inc" + +class NEOPHYTETHEME : public Theme +{ +public: + NEOPHYTETHEME(); + ~NEOPHYTETHEME(); + + void initialize(); + void draw_mwindow_bg(MWindowGUI *gui); + + void draw_rwindow_bg(RecordGUI *gui); + void draw_rmonitor_bg(RecordMonitorGUI *gui); + void draw_cwindow_bg(CWindowGUI *gui); + void draw_vwindow_bg(VWindowGUI *gui); + void draw_preferences_bg(PreferencesWindow *gui); + + + void draw_new_bg(NewWindow *gui); + void draw_setformat_bg(SetFormatWindow *gui); + +private: + void build_bg_data(); + void build_patches(); + void build_overlays(); +}; + +class NEOPHYTETHEMEMain : public PluginTClient +{ +public: + NEOPHYTETHEMEMain(PluginServer *server); + ~NEOPHYTETHEMEMain(); + + const char* plugin_title(); + Theme* new_theme(); + + NEOPHYTETHEME *theme; +}; + +#endif