From: Good Guy Date: Tue, 21 Aug 2018 21:45:47 +0000 (-0600) Subject: add clip folders, icon margins, fix safe regions, update neophyte, fix folder edl... X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=commitdiff_plain;h=a95193c3fd88733d184f2d460eca1fe6ddf8af28 add clip folders, icon margins, fix safe regions, update neophyte, fix folder edl bugs, old edl nl in string bug --- diff --git a/cinelerra-5.1/bld.sh b/cinelerra-5.1/bld.sh index b8a80d6b..7c8837bf 100755 --- a/cinelerra-5.1/bld.sh +++ b/cinelerra-5.1/bld.sh @@ -1,6 +1,6 @@ #!/bin/bash ( ./autogen.sh - ./configure --with-single-user + ./configure --with-single-user --with-booby make && make install ) 2>&1 | tee log mv Makefile Makefile.cfg cp Makefile.devel Makefile diff --git a/cinelerra-5.1/cinelerra/assetpopup.C b/cinelerra-5.1/cinelerra/assetpopup.C index 953a794b..59e13131 100644 --- a/cinelerra-5.1/cinelerra/assetpopup.C +++ b/cinelerra-5.1/cinelerra/assetpopup.C @@ -100,11 +100,9 @@ void AssetPopup::paste_assets() mwindow->gui->lock_window("AssetPopup::paste_assets"); mwindow->cwindow->gui->lock_window("AssetPopup::paste_assets"); - int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0; - gui->collect_assets(proxy); + gui->collect_assets(); mwindow->paste_assets(mwindow->edl->local_session->get_selectionstart(1), mwindow->edl->tracks->first, 0); // do not overwrite - mwindow->session->clear_drag_proxy(); gui->unlock_window(); mwindow->gui->unlock_window(); @@ -141,8 +139,7 @@ void AssetPopup::match_all() int AssetPopup::update() { format->update(); - int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0; - gui->collect_assets(proxy); + gui->collect_assets(); return 0; } diff --git a/cinelerra-5.1/cinelerra/awindowgui.C b/cinelerra-5.1/cinelerra/awindowgui.C index 9be5b66b..409ba26f 100644 --- a/cinelerra-5.1/cinelerra/awindowgui.C +++ b/cinelerra-5.1/cinelerra/awindowgui.C @@ -1676,8 +1676,8 @@ EDL *AWindowGUI::collect_proxy(Indexable *indexable) // make a clip from proxy video tracks and unproxy audio tracks EDL *proxy_edl = new EDL(mwindow->edl); proxy_edl->create_objects(); + proxy_edl->set_path(proxy_asset->path); FileSystem fs; fs.extract_name(path, proxy_asset->path); - proxy_edl->set_path(path); strcpy(proxy_edl->local_session->clip_title, path); strcpy(proxy_edl->local_session->clip_notes, _("Proxy clip")); proxy_edl->session->video_tracks = proxy_asset->layers; @@ -1702,18 +1702,17 @@ EDL *AWindowGUI::collect_proxy(Indexable *indexable) } -void AWindowGUI::collect_assets(int proxy) +void AWindowGUI::collect_assets() { mwindow->session->drag_assets->remove_all(); mwindow->session->drag_clips->remove_all(); - mwindow->session->clear_drag_proxy(); int i = 0; AssetPicon *result; while( (result = (AssetPicon*)asset_list->get_selection(0, i++)) != 0 ) { - Indexable *indexable = result->indexable; EDL *drag_edl; - if( proxy && (drag_edl=collect_proxy(indexable)) ) { - mwindow->session->drag_clips->append(drag_edl); - mwindow->session->drag_proxy->append(drag_edl); - continue; + Indexable *indexable = result->indexable; + if( indexable && indexable->is_asset && + indexable->awindow_folder == AW_PROXY_FOLDER ) { + EDL *drag_edl = collect_proxy(indexable); + if( drag_edl ) mwindow->session->drag_clips->append(drag_edl); } if( indexable ) { mwindow->session->drag_assets->append(indexable); @@ -1732,19 +1731,24 @@ void AWindowGUI::copy_picons(ArrayList *dst, // Remove current pointers dst[0].remove_all(); dst[1].remove_all_objects(); + BinFolder *bin_folder = folder < AWINDOW_USER_FOLDERS ? 0 : + mwindow->edl->get_folder(folder); // Create new pointers for( int i = 0; i < src->total; i++ ) { int visible = folder < 0 ? 1 : 0; AssetPicon *picon = (AssetPicon*)src->values[i]; picon->sort_key = -1; - if( !visible && folder >= AWINDOW_USER_FOLDERS && picon->indexable ) { - picon->sort_key = mwindow->edl->folders.matches_indexable(folder, picon->indexable); - if( picon->sort_key >= 0 ) visible = 1; + if( !visible && bin_folder ) { + Indexable *idxbl = bin_folder->is_clips ? picon->edl : picon->indexable; + if( idxbl ) { + picon->sort_key = mwindow->edl->folders.matches_indexable(folder, idxbl); + if( picon->sort_key >= 0 ) visible = 1; + } } if( !visible && picon->indexable && picon->indexable->awindow_folder == folder ) visible = 1; - if( !visible && picon->edl && picon->edl->awindow_folder == folder ) + if( !visible && picon->edl && picon->edl->local_session->folder == folder ) visible = 1; if( visible ) { const char *text = search_text->get_text(); @@ -2067,10 +2071,12 @@ int AWindowFolders::drag_stop() AssetPicon *picon = (AssetPicon *)(item_no < 0 ? 0 : gui->folders[item_no]); if( picon && picon->foldernum >= AWINDOW_USER_FOLDERS ) { BinFolder *folder = mwindow->edl->get_folder(picon->foldernum); - ArrayList *drags = mwindow->session->drag_assets; - if( folder && drags ) folder->add_patterns(drags); + ArrayList *drags = folder->is_clips ? + ((ArrayList *)mwindow->session->drag_clips) : + ((ArrayList *)mwindow->session->drag_assets); + if( folder && drags && !folder->add_patterns(drags) ) + flicker(1,30); mwindow->session->current_operation = ::NO_OPERATION; - flicker(1,30); result = 1; } } @@ -2244,7 +2250,7 @@ void AWindowAssets::draw_background() int AWindowAssets::drag_start_event() { int collect_pluginservers = 0; - int collect_assets = 0, proxy = 0; + int collect_assets = 0; if( BC_ListBox::drag_start_event() ) { switch( mwindow->edl->session->awindow_folder ) { @@ -2267,9 +2273,6 @@ int AWindowAssets::drag_start_event() case AW_LABEL_FOLDER: // do nothing! break; - case AW_PROXY_FOLDER: - proxy = 1; - // fall thru case AW_MEDIA_FOLDER: default: mwindow->session->current_operation = DRAG_ASSET; @@ -2290,7 +2293,7 @@ int AWindowAssets::drag_start_event() } if( collect_assets ) { - gui->collect_assets(proxy); + gui->collect_assets(); } return 1; @@ -2382,7 +2385,6 @@ int AWindowAssets::drag_stop_event() BC_ListBox::drag_stop_event(); // since NO_OPERATION is also defined in listbox, we have to reach for global scope... mwindow->session->current_operation = ::NO_OPERATION; - mwindow->session->clear_drag_proxy(); return 1; } diff --git a/cinelerra-5.1/cinelerra/awindowgui.h b/cinelerra-5.1/cinelerra/awindowgui.h index f768b586..b96a5602 100644 --- a/cinelerra-5.1/cinelerra/awindowgui.h +++ b/cinelerra-5.1/cinelerra/awindowgui.h @@ -181,7 +181,7 @@ public: int drag_motion(); int drag_stop(); // Collect items into the drag vectors of MainSession - void collect_assets(int proxy=0); + void collect_assets(); EDL *collect_proxy(Indexable *indexable); void create_persistent_folder(ArrayList *output, int do_audio, diff --git a/cinelerra-5.1/cinelerra/binfolder.C b/cinelerra-5.1/cinelerra/binfolder.C index 68f8cb0b..32fd02aa 100644 --- a/cinelerra-5.1/cinelerra/binfolder.C +++ b/cinelerra-5.1/cinelerra/binfolder.C @@ -27,6 +27,7 @@ #include "guicast.h" #include "indexable.h" #include "language.h" +#include "localsession.h" #include "mainerror.h" #include "mainsession.h" #include "mutex.h" @@ -276,9 +277,10 @@ double BinFolder::matches_indexable(Indexable *idxbl) } -BinFolder::BinFolder(int awindow_folder, const char *title) +BinFolder::BinFolder(int awindow_folder, int is_clips, const char *title) { this->awindow_folder = awindow_folder; + this->is_clips = is_clips; char *bp = this->title; int len = sizeof(this->title); while( --len>0 && *title ) *bp++ = *title++; @@ -294,6 +296,7 @@ void BinFolder::copy_from(BinFolder *that) { strcpy(title, that->title); awindow_folder = that->awindow_folder; + is_clips = that->is_clips; filters.copy_from(&that->filters); } @@ -306,6 +309,7 @@ void BinFolder::save_xml(FileXML *file) file->tag.set_title("FOLDER"); file->tag.set_property("TITLE", title); file->tag.set_property("AWINDOW_FOLDER", awindow_folder); + file->tag.set_property("IS_CLIPS", is_clips); file->append_tag(); file->append_newline(); for( int i=0; itag.get_property("TITLE", title); awindow_folder = file->tag.get_property("AWINDOW_FOLDER", -1); + is_clips = file->tag.get_property("IS_CLIPS", 0); filters.remove_all_objects(); int ret = 0; @@ -334,39 +339,52 @@ int BinFolder::load_xml(FileXML *file) return ret; } -void BinFolder::add_patterns(ArrayList *drag_assets) +int BinFolder::add_patterns(ArrayList *drag_idxbls) { - int n = drag_assets->size(); - if( n > 0 ) { - int len = 1; - for( int i=0; iget(i)->path) + 1; - char *pats = new char[len], *bp = pats; - const char *cp = drag_assets->get(0)->path; + int n = drag_idxbls->size(); + if( !n ) return 1; + Indexable *idxbl; + int len = 0; + for( int i=0; iget(i); + if( !idxbl->is_asset && + idxbl->awindow_folder == AW_PROXY_FOLDER ) + continue; + len += strlen(idxbl->get_title()) + 1; + } + if( !len ) return 1; + char *pats = new char[len+1], *bp = pats; + for( int i=0; iget(i); + if( !idxbl->is_asset && + idxbl->awindow_folder == AW_PROXY_FOLDER ) + continue; + if( i > 0 ) *bp++ = '\n'; + const char *cp = idxbl->get_title(); while( *cp ) *bp++ = *cp++; - for( int i=1; iget(i)->path; - while( *cp ) *bp++ = *cp++; - } - *bp = 0; -// new pattern filter - BinFolderFilter *filter = new BinFolderFilter(); - filter->update_enabled(FOLDER_ENABLED_OR); - filter->update_target(FOLDER_TARGET_PATTERNS); - filter->update_op(FOLDER_OP_MATCHES); - BinFolderTargetPatterns *patterns = (BinFolderTargetPatterns *)(filter->target); - patterns->update(pats); - filters.append(filter); } + *bp = 0; +// new pattern filter + BinFolderFilter *filter = new BinFolderFilter(); + filter->update_enabled(FOLDER_ENABLED_OR); + filter->update_target(FOLDER_TARGET_PATTERNS); + filter->update_op(FOLDER_OP_MATCHES); + BinFolderTargetPatterns *patterns = (BinFolderTargetPatterns *)(filter->target); + patterns->update(pats); + filters.append(filter); + return 0; } double BinFolders::matches_indexable(int folder, Indexable *idxbl) { int k = size(); - while( --k>=0 && get(k)->awindow_folder!=folder ); - return k < 0 ? 0 : get(k)->matches_indexable(idxbl); + BinFolder *bin_folder = 0; + while( --k>=0 && (bin_folder=get(k)) && bin_folder->awindow_folder!=folder ); + if( k < 0 ) return -1; + if( bin_folder->is_clips && idxbl->is_asset ) return -1; + if( !bin_folder->is_clips && !idxbl->is_asset ) return -1; + return bin_folder->matches_indexable(idxbl); } void BinFolders::save_xml(FileXML *file) @@ -388,7 +406,7 @@ int BinFolders::load_xml(FileXML *file) while( !(ret=file->read_tag()) ) { if( file->tag.title_is("/FOLDERS") ) break; if( file->tag.title_is("FOLDER") ) { - BinFolder *folder = new BinFolder(-1, "folder"); + BinFolder *folder = new BinFolder(-1, -1, "folder"); folder->load_xml(file); append(folder); } @@ -580,8 +598,9 @@ double BinFolderOp::compare(BinFolderTarget *target, Indexable *idxbl) char pattern[BCTEXTLEN], *bp = pattern, ch; while( *cp && (ch=*cp++)!='\n' ) *bp++ = ch; *bp = 0; - if( bp > pattern && - !FileSystem::test_filter(idxbl->path, pattern) ) + if( !pattern[0] ) continue; + const char *title = idxbl->get_title(); + if( !FileSystem::test_filter(title, pattern) ) v = 1; } break; } @@ -1655,9 +1674,10 @@ void NewFolderGUI::create_objects() lock_window("NewFolderGUI::create_objects"); int x = 10, y = 10; BC_Title *title; - add_subwindow(title = new BC_Title(x, y, _("Enter the name of the folder:"))); + add_subwindow(title = new BC_Title(x, y, _("Folder name:"))); y += title->get_h() + 5; - add_subwindow(text_box = new BC_TextBox(x, y, 300, 1, _("Untitled"))); + const char *text = !thread->is_clips ? _("media bin") : _("clip bin"); + add_subwindow(text_box = new BC_TextBox(x, y, 300, 1, text)); add_subwindow(new BC_OKButton(this)); add_subwindow(new BC_CancelButton(this)); show_window(); @@ -1674,6 +1694,7 @@ NewFolderThread::NewFolderThread(AWindowGUI *agui) : BC_DialogThread() { this->agui = agui; + is_clips = -1; } NewFolderThread::~NewFolderThread() @@ -1681,11 +1702,12 @@ NewFolderThread::~NewFolderThread() close_window(); } -void NewFolderThread::start(int x, int y, int w, int h) +void NewFolderThread::start(int x, int y, int w, int h, int is_clips) { close_window(); - wx = x; wy = y; - ww = w; wh = h; + this->is_clips = is_clips; + this->wx = x; this->wy = y; + this->ww = w; this->wh = h; Thread::start(); } @@ -1700,12 +1722,13 @@ void NewFolderThread::handle_done_event(int result) { if( !result ) { const char *text = window->get_text(); - agui->mwindow->new_folder(text); + agui->mwindow->new_folder(text, is_clips); } } void NewFolderThread::handle_close_event(int result) { + is_clips = -1; } ModifyFolderGUI::ModifyFolderGUI(ModifyFolderThread *thread, int x, int y, int w, int h) @@ -1740,10 +1763,15 @@ void ModifyFolderGUI::create_objects() lock_window("ModifyFolderGUI::create_objects"); modify_folder_xatom = create_xatom("CWINDOWGUI_UPDATE_FILTERS"); int x = 10, y = 10; - add_tool(new BC_Title(x, y, _("Enter the name of the folder:"))); - y += 20; + BC_Title *title; + add_subwindow(title = new BC_Title(x, y, _("Enter the name of the folder:"))); + const char *text = !thread->folder->is_clips ? _("Media") : _("Clips"); + int tw = BC_Title::calculate_w(this, text, LARGEFONT); + int x0 = get_w() - 50 - tw; + add_subwindow(text_title = new BC_Title(x0, y, text, LARGEFONT, YELLOW)); + y += title->get_h() + 10; add_subwindow(text_box = new BC_TextBox(x, y, 300, 1, thread->folder->title)); - y += 30; + y += text_box->get_h() + 10; int lh = get_h() - y - BC_OKButton::calculate_h() - 30; int lw = get_w() - x - 120; add_subwindow(folder_list = @@ -1766,6 +1794,9 @@ int ModifyFolderGUI::resize_event(int w, int h) MWindow *mwindow = thread->agui->mwindow; mwindow->session->bwindow_w = w; mwindow->session->bwindow_h = h; + int tx = text_title->get_x() + w - get_w(); + int ty = text_title->get_y(); + text_title->reposition_window(tx, ty); int lx = folder_list->get_x(); int ly = folder_list->get_y(); int lh = h - ly - BC_OKButton::calculate_h() - 30; @@ -1811,8 +1842,8 @@ void ModifyFolderThread::start(BinFolder *folder, int x, int y, int w, int h) this->original = folder; agui->mwindow->edl->add_user(); this->folder = new BinFolder(*folder); - wx = x; wy = y; - ww = w; wh = h; + this->wx = x; this->wy = y; + this->ww = w; this->wh = h; Thread::start(); } diff --git a/cinelerra-5.1/cinelerra/binfolder.h b/cinelerra-5.1/cinelerra/binfolder.h index 38b014d4..5bf0a55f 100644 --- a/cinelerra-5.1/cinelerra/binfolder.h +++ b/cinelerra-5.1/cinelerra/binfolder.h @@ -78,7 +78,7 @@ public: class BinFolder { public: - BinFolder(int awindow_folder, const char *title); + BinFolder(int awindow_folder, int is_clips, const char *title); BinFolder(BinFolder &that); ~BinFolder(); @@ -87,10 +87,12 @@ public: int load_xml(FileXML *file); double matches_indexable(Indexable *idxbl); void copy_from(BinFolder *that); - void add_patterns(ArrayList *drag_assets); + const char *get_idxbl_title(Indexable *idxbl); + int add_patterns(ArrayList *drag_assets); char title[BCSTRLEN]; int awindow_folder; + int is_clips; }; class BinFolders : public ArrayList @@ -550,9 +552,10 @@ public: BC_Window *new_gui(); void handle_done_event(int result); void handle_close_event(int result); - void start(int x, int y, int w, int h); + void start(int x, int y, int w, int h, int is_clips); int wx, wy, ww, wh; + int is_clips; AWindowGUI *agui; NewFolderGUI *window; }; @@ -575,6 +578,7 @@ public: BinFolderAddFilter *add_filter; BinFolderDelFilter *del_filter; BinFolderApplyFilter *apply_filter; + BC_Title *text_title; BC_TextBox *text_box; Atom modify_folder_xatom; BC_OKButton *ok_button; diff --git a/cinelerra-5.1/cinelerra/cwindowgui.C b/cinelerra-5.1/cinelerra/cwindowgui.C index ecb58bee..2b11f38b 100644 --- a/cinelerra-5.1/cinelerra/cwindowgui.C +++ b/cinelerra-5.1/cinelerra/cwindowgui.C @@ -1108,6 +1108,9 @@ void CWindowCanvas::draw_refresh(int flush) } draw_overlays(); +// allow last opengl write to complete before redraw +// tried sync_display, glFlush, glxMake*Current(0..) +usleep(20000); get_canvas()->flash(flush); } //printf("CWindowCanvas::draw_refresh 10\n"); diff --git a/cinelerra-5.1/cinelerra/edl.C b/cinelerra-5.1/cinelerra/edl.C index 4411bf4b..ebab4cd7 100644 --- a/cinelerra-5.1/cinelerra/edl.C +++ b/cinelerra-5.1/cinelerra/edl.C @@ -1226,7 +1226,7 @@ const char *EDL::get_folder_name(int no) return !fp ? "" : fp->title; } -int EDL::new_folder(const char *title) +int EDL::new_folder(const char *title, int is_clips) { if( !title[0] ) return 1; int ret = get_folder_number(title); @@ -1237,7 +1237,7 @@ int EDL::new_folder(const char *title) int no = fp->awindow_folder; if( no >= idx ) idx = no+1; } - folders.append(new BinFolder(idx, title)); + folders.append(new BinFolder(idx, is_clips, title)); return 0; } @@ -1402,7 +1402,6 @@ int64_t EDL::get_video_frames() session->frame_rate); } - void EDL::remove_vwindow_edls() { for( int i=0; iitell()-1; - while( ch >= 0 && (ch!=term && ch!=right_delm && ch!='\n') ) + while( ch >= 0 ) { +// old edl bug work-around, allow nl in quoted string + if( ch==term || ch==right_delm ) break; + if( ch=='\n' && term!='\"' ) break; ch = buf->next(); + } if( ch < 0 ) EOB_RETURN(); value_end = buf->itell()-1; // add property diff --git a/cinelerra-5.1/cinelerra/folderlistmenu.C b/cinelerra-5.1/cinelerra/folderlistmenu.C index 8f788272..51150a71 100644 --- a/cinelerra-5.1/cinelerra/folderlistmenu.C +++ b/cinelerra-5.1/cinelerra/folderlistmenu.C @@ -48,7 +48,8 @@ void FolderListMenu::create_objects() add_item(new FolderListSort(mwindow, this)); add_item(menu_item = new BC_MenuItem(_("Folder..."))); menu_item->add_submenu(submenu = new BC_SubMenu()); - submenu->add_submenuitem(new FolderListNew(mwindow, this)); + submenu->add_submenuitem(new FolderListNew(mwindow, this, _("New Media"), 0)); + submenu->add_submenuitem(new FolderListNew(mwindow, this, _("New Clips"), 1)); submenu->add_submenuitem(new FolderListModify(mwindow, this)); submenu->add_submenuitem(new FolderListDelete(mwindow, this)); update_titles(); @@ -100,11 +101,13 @@ int FolderListSort::handle_event() return 1; } -FolderListNew::FolderListNew(MWindow *mwindow, FolderListMenu *menu) - : BC_MenuItem(_("New folder")) +FolderListNew::FolderListNew(MWindow *mwindow, FolderListMenu *menu, + const char *text, int is_clips) + : BC_MenuItem(text) { this->mwindow = mwindow; this->menu = menu; + this->is_clips = is_clips; } int FolderListNew::handle_event() @@ -113,7 +116,7 @@ int FolderListNew::handle_event() menu->gui->get_abs_cursor(cx, cy); if( (cx-=cw/2) < 50 ) cx = 50; if( (cy-=ch/2) < 50 ) cy = 50; - menu->gui->new_folder_thread->start(cx, cy, cw, ch); + menu->gui->new_folder_thread->start(cx, cy, cw, ch, is_clips); return 1; } diff --git a/cinelerra-5.1/cinelerra/folderlistmenu.h b/cinelerra-5.1/cinelerra/folderlistmenu.h index 753f86cd..3ffc576f 100644 --- a/cinelerra-5.1/cinelerra/folderlistmenu.h +++ b/cinelerra-5.1/cinelerra/folderlistmenu.h @@ -50,11 +50,13 @@ public: class FolderListNew : public BC_MenuItem { public: - FolderListNew(MWindow *mwindow, FolderListMenu *menu); + FolderListNew(MWindow *mwindow, FolderListMenu *menu, + const char *text, int is_clips); int handle_event(); MWindow *mwindow; FolderListMenu *menu; + int is_clips; }; class FolderListModify : public BC_MenuItem diff --git a/cinelerra-5.1/cinelerra/indexable.C b/cinelerra-5.1/cinelerra/indexable.C index 293d321e..2d32e194 100644 --- a/cinelerra-5.1/cinelerra/indexable.C +++ b/cinelerra-5.1/cinelerra/indexable.C @@ -23,6 +23,7 @@ #include "edl.h" #include "indexable.h" #include "language.h" +#include "localsession.h" #include @@ -113,8 +114,11 @@ int64_t Indexable::get_video_frames() return 0; } - - - - +const char *Indexable::get_title() +{ + if( is_asset ) return path; + EDL *edl = (EDL*)this; + if( !edl->parent_edl || awindow_folder == AW_PROXY_FOLDER ) return path; + return edl->local_session->clip_title; +} diff --git a/cinelerra-5.1/cinelerra/indexable.h b/cinelerra-5.1/cinelerra/indexable.h index fa9db6ae..ab07731c 100644 --- a/cinelerra-5.1/cinelerra/indexable.h +++ b/cinelerra-5.1/cinelerra/indexable.h @@ -51,6 +51,7 @@ public: void copy_indexable(Indexable *src); void update_path(const char *new_path); void update_index(Indexable *src); + const char *get_title(); IndexState *index_state; diff --git a/cinelerra-5.1/cinelerra/localsession.C b/cinelerra-5.1/cinelerra/localsession.C index 0c7e1d71..bb95fafa 100644 --- a/cinelerra-5.1/cinelerra/localsession.C +++ b/cinelerra-5.1/cinelerra/localsession.C @@ -60,6 +60,7 @@ LocalSession::LocalSession(EDL *edl) selectionstart = selectionend = 0; in_point = out_point = -1; + folder = AW_CLIP_FOLDER; sprintf(clip_title, _("Program")); strcpy(clip_notes, _("Hello world")); strcpy(clip_icon, ""); @@ -118,6 +119,7 @@ void LocalSession::copy_from(LocalSession *that) strcpy(clip_title, that->clip_title); strcpy(clip_notes, that->clip_notes); strcpy(clip_icon, that->clip_icon); + folder = that->folder; in_point = that->in_point; loop_playback = that->loop_playback; loop_start = that->loop_start; @@ -167,6 +169,7 @@ void LocalSession::save_xml(FileXML *file, double start) file->tag.set_property("SELECTION_END", selectionend - start); file->tag.set_property("CLIP_TITLE", clip_title); file->tag.set_property("CLIP_ICON", clip_icon); + file->tag.set_property("FOLDER", folder); file->tag.set_property("X_PANE", x_pane); file->tag.set_property("Y_PANE", y_pane); @@ -262,6 +265,10 @@ void LocalSession::load_xml(FileXML *file, unsigned long load_flags) year, mon, mday, hour, min, sec); } } + int awindow_folder = file->tag.get_property("AWINDOW_FOLDER", -1); + folder = awindow_folder >= 0 ? awindow_folder : + file->tag.get_property("FOLDER", + edl->parent_edl ? AW_CLIP_FOLDER : AW_MEDIA_FOLDER); loop_playback = file->tag.get_property("LOOP_PLAYBACK", 0); loop_start = file->tag.get_property("LOOP_START", (double)0); loop_end = file->tag.get_property("LOOP_END", (double)0); diff --git a/cinelerra-5.1/cinelerra/localsession.h b/cinelerra-5.1/cinelerra/localsession.h index ecf48b62..5261be1f 100644 --- a/cinelerra-5.1/cinelerra/localsession.h +++ b/cinelerra-5.1/cinelerra/localsession.h @@ -78,6 +78,8 @@ public: char clip_title[BCTEXTLEN]; char clip_notes[BCTEXTLEN]; char clip_icon[BCSTRLEN]; +// awindow folder id + int folder; int loop_playback; double loop_start, loop_end; diff --git a/cinelerra-5.1/cinelerra/mainsession.C b/cinelerra-5.1/cinelerra/mainsession.C index 251d82b7..280867e7 100644 --- a/cinelerra-5.1/cinelerra/mainsession.C +++ b/cinelerra-5.1/cinelerra/mainsession.C @@ -49,7 +49,6 @@ MainSession::MainSession(MWindow *mwindow) drag_assets = new ArrayList; drag_auto_gang = new ArrayList; drag_clips = new ArrayList; - drag_proxy = new ArrayList; drag_edits = new ArrayList; drag_edit = 0; clip_number = 1; @@ -115,12 +114,10 @@ MainSession::MainSession(MWindow *mwindow) MainSession::~MainSession() { - clear_drag_proxy(); delete drag_pluginservers; delete drag_assets; delete drag_auto_gang; delete drag_clips; - delete drag_proxy; delete drag_edits; } @@ -145,13 +142,6 @@ void MainSession::boundaries() CLAMP(cwindow_controls, 0, 1); } -void MainSession::clear_drag_proxy() -{ - for( int i=drag_proxy->size(); --i>=0; ) - drag_proxy->get(i)->remove_user(); - drag_proxy->remove_all(); -} - void MainSession::save_x11_host(int play_config, const char *x11_host) { strcpy(!play_config ? a_x11_host : b_x11_host, x11_host); diff --git a/cinelerra-5.1/cinelerra/mainsession.h b/cinelerra-5.1/cinelerra/mainsession.h index fd58d210..4df4c25b 100644 --- a/cinelerra-5.1/cinelerra/mainsession.h +++ b/cinelerra-5.1/cinelerra/mainsession.h @@ -49,7 +49,6 @@ public: int load_defaults(BC_Hash *defaults); int save_defaults(BC_Hash *defaults); - void clear_drag_proxy(); void save_x11_host(int play_config, const char *x11_host); int set_default_x11_host(int win_config=-1); void default_window_positions(int window_config=0); @@ -74,7 +73,6 @@ public: Edits *trim_edits; ArrayList *drag_assets; ArrayList *drag_clips; - ArrayList *drag_proxy; Auto *drag_auto; ArrayList *drag_auto_gang; diff --git a/cinelerra-5.1/cinelerra/mwindow.h b/cinelerra-5.1/cinelerra/mwindow.h index bbf89b97..9845ea6b 100644 --- a/cinelerra-5.1/cinelerra/mwindow.h +++ b/cinelerra-5.1/cinelerra/mwindow.h @@ -413,7 +413,7 @@ public: void move_track_up(Track *track); void move_tracks_up(); void mute_selection(); - void new_folder(const char *new_folder); + void new_folder(const char *new_folder, int is_clips); void delete_folder(char *folder); // For clipboard commands void paste(); diff --git a/cinelerra-5.1/cinelerra/mwindowedit.C b/cinelerra-5.1/cinelerra/mwindowedit.C index 65a2d916..24763f75 100644 --- a/cinelerra-5.1/cinelerra/mwindowedit.C +++ b/cinelerra-5.1/cinelerra/mwindowedit.C @@ -2228,10 +2228,10 @@ void MWindow::undo_entry(BC_WindowBase *calling_window_gui) } -void MWindow::new_folder(const char *new_folder) +void MWindow::new_folder(const char *new_folder, int is_clips) { undo->update_undo_before(); - if( edl->new_folder(new_folder) ) { + if( edl->new_folder(new_folder, is_clips) ) { MainError::show_error(_("create new folder failed")); } undo->update_undo_after(_("new folder"), LOAD_ALL); diff --git a/cinelerra-5.1/cinelerra/proxypopup.C b/cinelerra-5.1/cinelerra/proxypopup.C index 04a1bdae..40a29ded 100644 --- a/cinelerra-5.1/cinelerra/proxypopup.C +++ b/cinelerra-5.1/cinelerra/proxypopup.C @@ -80,7 +80,7 @@ void ProxyPopup::paste_assets() mwindow->gui->lock_window("ProxyPopup::paste_assets"); mwindow->cwindow->gui->lock_window("ProxyPopup::paste_assets"); - gui->collect_assets(1); + gui->collect_assets(); mwindow->paste_assets(mwindow->edl->local_session->get_selectionstart(1), mwindow->edl->tracks->first, 0); // do not overwrite @@ -92,7 +92,7 @@ void ProxyPopup::paste_assets() int ProxyPopup::update() { format->update(); - gui->collect_assets(1); + gui->collect_assets(); return 0; } diff --git a/cinelerra-5.1/cinelerra/vdevicex11.C b/cinelerra-5.1/cinelerra/vdevicex11.C index a92986c1..1407d2e9 100644 --- a/cinelerra-5.1/cinelerra/vdevicex11.C +++ b/cinelerra-5.1/cinelerra/vdevicex11.C @@ -161,12 +161,18 @@ int VDeviceX11::close_all() if( output ) { output->lock_canvas("VDeviceX11::close_all 1"); output->get_canvas()->lock_window("VDeviceX11::close_all 1"); +// Update the status bug + if( !device->single_frame ) { + output->stop_video(); + } + else { + output->stop_single(); + } } if( output && output_frame ) { output->update_refresh(device, output_frame); - if( device->single_frame ) - output->draw_refresh(); + output->draw_refresh(1); } delete bitmap; bitmap = 0; @@ -174,14 +180,6 @@ int VDeviceX11::close_all() delete capture_bitmap; capture_bitmap = 0; if( output ) { -// Update the status bug - if( !device->single_frame ) { - output->stop_video(); - } - else { - output->stop_single(); - } - output->get_canvas()->unlock_window(); output->unlock_canvas(); } diff --git a/cinelerra-5.1/cinelerra/vwindowgui.C b/cinelerra-5.1/cinelerra/vwindowgui.C index e3f323c5..92505781 100644 --- a/cinelerra-5.1/cinelerra/vwindowgui.C +++ b/cinelerra-5.1/cinelerra/vwindowgui.C @@ -462,26 +462,22 @@ void VWindowGUI::drag_motion() int VWindowGUI::drag_stop() { - if(get_hidden()) return 0; + if( get_hidden() ) return 0; - if(highlighted && - mwindow->session->current_operation == DRAG_ASSET) - { + if( highlighted && + mwindow->session->current_operation == DRAG_ASSET ) { highlighted = 0; canvas->draw_refresh(); unlock_window(); - Indexable *indexable = mwindow->session->drag_assets->size() ? - mwindow->session->drag_assets->get(0) : - 0; - EDL *edl = mwindow->session->drag_clips->size() ? - mwindow->session->drag_clips->get(0) : - 0; - if(indexable) + Indexable *indexable = + mwindow->session->drag_clips->size() > 0 ? + (Indexable *)mwindow->session->drag_clips->get(0) : + mwindow->session->drag_assets->size() > 0 ? + (Indexable *)mwindow->session->drag_assets->get(0) : 0; + if( indexable ) vwindow->change_source(indexable); - else - if(edl) - vwindow->change_source(edl); + lock_window("VWindowGUI::drag_stop"); return 1; } diff --git a/cinelerra-5.1/guicast/bclistbox.C b/cinelerra-5.1/guicast/bclistbox.C index d983c7ac..16a477bb 100644 --- a/cinelerra-5.1/guicast/bclistbox.C +++ b/cinelerra-5.1/guicast/bclistbox.C @@ -656,8 +656,8 @@ void BC_ListBox::calculate_item_coords_recursive( if( temp_display_format == LISTBOX_ICON_LIST ) { for( int i=0; iicon ) { - if( data[0].get(i)->icon->get_h() > row_height ) - row_height = data[0].get(i)->icon->get_h(); + int icon_h = data[0].get(i)->icon->get_h() + 2*ICON_MARGIN; + if( row_height < icon_h ) row_height = icon_h; } } } @@ -1173,10 +1173,10 @@ int BC_ListBox::get_icon_mask(BC_ListBoxItem *item, case LISTBOX_ICONS: case LISTBOX_ICONS_PACKED: case LISTBOX_ICON_LIST: { - x = get_item_x(item); - y = get_item_y(item); - w = get_icon_w(item) + ICON_MARGIN * 2; - h = get_icon_h(item) + ICON_MARGIN * 2; + x = get_item_x(item) + ICON_MARGIN; + y = get_item_y(item) + ICON_MARGIN; + w = get_icon_w(item) + ICON_MARGIN; + h = get_icon_h(item) + ICON_MARGIN; break; } case LISTBOX_TEXT: default: { diff --git a/cinelerra-5.1/guicast/bclistbox.inc b/cinelerra-5.1/guicast/bclistbox.inc index 6846e58a..ad535471 100644 --- a/cinelerra-5.1/guicast/bclistbox.inc +++ b/cinelerra-5.1/guicast/bclistbox.inc @@ -40,7 +40,7 @@ #define LISTBOX_MARGIN 4 // Distance from sides of window #define LISTBOX_BORDER 2 -#define ICON_MARGIN 1 +#define ICON_MARGIN 2 #define LISTBOX_INDENT 10 // Justification for popup listbox diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/0.Neophyte-Logos.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/0.Neophyte-Logos.svg new file mode 100644 index 00000000..7cf59010 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/0.Neophyte-Logos.svg @@ -0,0 +1,854 @@ + + + + + Neophyte theme – about + + + + + + + + + + + + + + + + image/svg+xml + + Neophyte theme – about + 2018-08-01 + + + Olaf + + + Neu angelegt. + deu + + + cinelerra + theme + neophyte + about + + + + + + + + + + + + Heroine Logo + + about_bg(Leni Heroine) + + + + C + inelerra + + + + + C + inelerra + + magnified + ff_hi + + + C + inelerra + C + dialogues + + about, heroine_icon + + magnified + + + C + GG + + + + C + GG + + + C + ff_up + + + + + + + THX! + heroine_icon + + + + + + + + + + + + + + + + + + + + + C + inelerra + + + + Not used. + + + C + db + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/0.Neophyte-Theme.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/0.Neophyte-Theme.svg new file mode 100644 index 00000000..4e8fb176 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/0.Neophyte-Theme.svg @@ -0,0 +1,5549 @@ + + + + + Theme: Neophyte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Theme: Neophyte + 2018-08-01 + + + Olaf + + + Theme: Neophyte + + + Cinelera + Theme + + + UnFlat + + + + + + + + + + + Andika + Myriad pro condensed + Fonts: + Myriad pro condensed bold + see: *_all.svg, *.up.svg + + + + + + + + + + + recordpatch_hi + recordpatch_up + + recordpatch_dn + recordpatch_checked + recordpatch_checkedhi + + + + + + + + + + + + + editpanel_up + + + editpanel_hi + + + editpanel_dn + editpanel_checked + editpanel_checkedhi + + + + + + + + fileboxbutton_up + fileboxbutton_hi + fileboxbutton_dn + + + + + filebox_bigbutton_up + filebox_bigbutton_hi + filebox_bigbutton_dn + + + + + generic_up + + + + + generic_dn + generic_hi + locklabels_unlocked + + + + + + + + + + + locklabels_dn + + + + + + + + + locklabels_lockedhi + locklabels_locked + + + + + + + + + + locklabels_unlockedhi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mode_up + mode_dn + mode_hi + + + + + + column_dn + column_hi + column_up + + + + + zoomtumble_up + zoomtumble_top + zoomtumble_hi + zoomtumble_bottom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoompopup_up + + + + + zoompopup_dn + zoompopup_hi + + + + expandpatch_up + tumble_up + tumble_top + tumble_hi + tumble_bottom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Preferences etc. + + + + + + + tipbutton_up + tipbutton_hi + tipbutton_dn + + + + + + + + + + + + + + green: slightly darker, because of the large and placement + + + mutepatch_up + mutepatch_hi + mutepatch_dn + mutepatch_checked + mutepatch_checkedhi + + + + + + + + + + + + + default + default + + + expandpatch_dn + expandpatch_hi + expandpatch_checked + expandpatch_checkedhi + + + + + + + + + + + + + + + + + + + + + + + + + arrows see: play + + + + + + + + + + + + + + + + + + + + shbtn_hi + shbtn_dn + shbtn_up + pan_up + pan_hi + + + + pane_up + pane_hi + pane_dn + + + + + + + Mainwindow, between scrollbars + pane + does nort worksee shbtn_up. + checkbox_up + + checkbox_hi + checkbox_dn + checkbox_checked + checkbox_checkedhi + + + + + + + + + + + + + + + + + + + + + ok + + + check + s.a: loadmode_all + + + + + mixpatch_up + mixpatch_hi + mixpatch_dn + mixpatch_checked + mixpatch_checkedhi + Mixer + + + + + + + + + + + + + + + + + + + + + + + + + + playpatch_up + playpatch_dn + playpatch_hi + default + + + + + + + + + + + + + + 26 + playpatch_checkedhi + playpatch_checked + Too small, seems restless. + proxy_s_up + proxy_s_hi + proxy_s_dn + proxy_s_chkd + proxy_s_chkdhi + proxy_p_up + proxy_p_hi + proxy_p_dn + proxy_p_chkd + proxy_p_chkdhi + + + + + P + S + + + + + + + + P + S + + + + + P + S + + + + + P + S + + Proxy Scaler - main right + default + Proxy P + + + + P + S + + + + + + + + + + P + S + + + + + P + S + + + + + P + S + + the white s separates from the following C-switch. + plugin_on + plugin_onhi + plugin_ondn + plugin_onselect + plugin_onselecthi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + default + + + plugin_show + plugin_showhi + plugin_showdn + + + + + plugin_showselect + plugin_showselecthi + + + + + Without background. + Without background. + + + transportup + transporthi + transportdn + + + + + file_size_capb_up + file_size_capb_hi + file_size_capb_dn + + + + + + + see: file_size_capb_up + default + main window + draft + max. 32x22 + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/about_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/about_bg.svg new file mode 100644 index 00000000..416450ec --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/about_bg.svg @@ -0,0 +1,585 @@ + + + + + Neophyte theme – about_bg + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Neophyte theme – about_bg + 2018-08-01 + + + Olaf + + + Neu angelegt. +Logo vectorised. +Frames now in 16:9. +The slight inclination of the film strip creates an optical illusion. + deu + + + cinelerra + theme + neophyte + about + logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + C + inelerra + + s.a.: 0.Neophyte-Logos + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/arrow.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/arrow.svg new file mode 100644 index 00000000..bd65b921 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/arrow.svg @@ -0,0 +1,105 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/autokeyframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/autokeyframe.svg new file mode 100644 index 00000000..de7f9acf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/autokeyframe.svg @@ -0,0 +1,78 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/bar.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/bar.svg new file mode 100644 index 00000000..7f73ffad --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/bar.svg @@ -0,0 +1,157 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + z.B. in Preferences. + s.a.: mbutton_bg + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/blank30x30.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/blank30x30.svg new file mode 100644 index 00000000..1372621c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/blank30x30.svg @@ -0,0 +1,63 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/bottom_justify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/bottom_justify.svg new file mode 100644 index 00000000..4f923a9e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/bottom_justify.svg @@ -0,0 +1,98 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/camera.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/camera.svg new file mode 100644 index 00000000..85b0d088 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/camera.svg @@ -0,0 +1,159 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/camerakeyframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/camerakeyframe.svg new file mode 100644 index 00000000..b4b981e3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/camerakeyframe.svg @@ -0,0 +1,119 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. +Inkonsistenzen vermeiden. + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cancel.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cancel.svg new file mode 100644 index 00000000..678f1c61 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cancel.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Olaf + + + + + + + + + Dialog Cancel + 2018-08-01: adapted. + 2018-08-01 + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cbuttons_left.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cbuttons_left.svg new file mode 100644 index 00000000..e2571bbe --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cbuttons_left.svg @@ -0,0 +1,480 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: cbuttons_left + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compositor, (only) bottom left, before LED. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cbuttons_right.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cbuttons_right.svg new file mode 100644 index 00000000..5af242ae --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cbuttons_right.svg @@ -0,0 +1,499 @@ + + + + + cbuttons_right + + + + image/svg+xml + + cbuttons_right + 2018-08-01 + + + Olaf + + + + cbuttons_left + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compositor, bottom right. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/center_justify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/center_justify.svg new file mode 100644 index 00000000..234d2cef --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/center_justify.svg @@ -0,0 +1,99 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/channel.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/channel.svg new file mode 100644 index 00000000..5e6a57ae --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/channel.svg @@ -0,0 +1,75 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/channel_position.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/channel_position.svg new file mode 100644 index 00000000..1a7f9b37 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/channel_position.svg @@ -0,0 +1,134 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/check.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/check.svg new file mode 100644 index 00000000..cde31ac4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/check.svg @@ -0,0 +1,219 @@ + + + + + + + + image/svg+xml + + + 2018-08-14 + + + Olaf + + + 2018-08-14: new. +Usage is unknown. + + + + + + + + + + + + + + + + + + + + + + + + check + see: recordpatch_up + Usage is unknown. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_checked.svg new file mode 100644 index 00000000..b8e105b7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_checked.svg @@ -0,0 +1,372 @@ + + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_checkedhi.svg new file mode 100644 index 00000000..e57175d2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_checkedhi.svg @@ -0,0 +1,371 @@ + + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: checkbox... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_dn.svg new file mode 100644 index 00000000..24dde239 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_dn.svg @@ -0,0 +1,373 @@ + + + + + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + checkbox_dn + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_hi.svg new file mode 100644 index 00000000..4e606560 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_hi.svg @@ -0,0 +1,209 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_up.svg new file mode 100644 index 00000000..7712bdeb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/checkbox_up.svg @@ -0,0 +1,135 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + checkbox_up + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/clip_icon.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/clip_icon.svg new file mode 100644 index 00000000..6c71d124 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/clip_icon.svg @@ -0,0 +1,312 @@ + + + + + clip_icon + + + + image/svg+xml + + clip_icon + 2018-08-20 + + + Olaf + + + Kompass. Klare, einfache Symbole. – Verschiebt die Footage. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/closetip.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/closetip.svg new file mode 100644 index 00000000..9c7ce507 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/closetip.svg @@ -0,0 +1,176 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: cancel + + + + + + + + + + + + + + + + + + + + + see: cancel + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cmeter_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cmeter_bg.svg new file mode 100644 index 00000000..6a898f33 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cmeter_bg.svg @@ -0,0 +1,118 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + Compositor meter right. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_dn.svg new file mode 100644 index 00000000..99e07148 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_dn.svg @@ -0,0 +1,135 @@ + + + + + color3way_up + + + + image/svg+xml + + color3way_up + 2018-08-17 + + + Olaf + + + 2018-08-17: new. + + + + color3way_* + + + + + + + + + + + + + + + color3way_dn + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_hi.svg new file mode 100644 index 00000000..edb1a13a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_hi.svg @@ -0,0 +1,135 @@ + + + + + color3way_up + + + + image/svg+xml + + color3way_up + 2018-08-17 + + + Olaf + + + 2018-08-17: new. + + + + color3way_* + + + + + + + + + + + + + + + color3way_hi + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_point.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_point.svg new file mode 100644 index 00000000..63691379 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_point.svg @@ -0,0 +1,125 @@ + + + + + color3way_up + + + + image/svg+xml + + color3way_up + 2018-08-17 + + + Olaf + + + 2018-08-17: new. + + + + color3way_* + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_up.svg new file mode 100644 index 00000000..df576710 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/color3way_up.svg @@ -0,0 +1,219 @@ + + + + + color3way_up + + + + image/svg+xml + + color3way_up + 2018-08-17 + + + Olaf + + + 2018-08-17: new. + + + + color3way_* + + + + + + + + + + + + + + + + + + color3way_hi + color3way_dn + color3way_point + Backup. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_dn.svg new file mode 100644 index 00000000..6906504c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_dn.svg @@ -0,0 +1,263 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_hi.svg new file mode 100644 index 00000000..73bf356a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_hi.svg @@ -0,0 +1,281 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_up.svg new file mode 100644 index 00000000..3c237467 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/column_up.svg @@ -0,0 +1,271 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/commercial.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/commercial.svg new file mode 100644 index 00000000..95aeabd1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/commercial.svg @@ -0,0 +1,158 @@ + + + + + The commercial DB + + + + image/svg+xml + + The commercial DB + 2018-08-17 + + + Olaf + + + 2018-08-17: new. + + + + + + + + + + + + + + + + + C + + db + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/copy.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/copy.svg new file mode 100644 index 00000000..0d661f48 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/copy.svg @@ -0,0 +1,97 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_bg.svg new file mode 100644 index 00000000..90ac598a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_bg.svg @@ -0,0 +1,464 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted See: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compositor side left. + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_checked.svg new file mode 100644 index 00000000..3f92e72f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_checked.svg @@ -0,0 +1,211 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: cpanel_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_checkedhi.svg new file mode 100644 index 00000000..8b714797 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_checkedhi.svg @@ -0,0 +1,212 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: cpanel_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_dn.svg new file mode 100644 index 00000000..645183c7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_dn.svg @@ -0,0 +1,178 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + see: cpanel_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_hi.svg new file mode 100644 index 00000000..72578d16 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_hi.svg @@ -0,0 +1,216 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: cpanel_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_up.svg new file mode 100644 index 00000000..f23b5096 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cpanel_up.svg @@ -0,0 +1,516 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compositor side left,top (buttons). + cpanel_up + cpanel_hi + cpanel_dn + cpanel_checkedhi + cpanel_checked + + + + + + + + + + + + + + + + + + + + + + + Entwürfe + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/crop.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/crop.svg new file mode 100644 index 00000000..d134ba0f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/crop.svg @@ -0,0 +1,75 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cut.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cut.svg new file mode 100644 index 00000000..07c37379 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cut.svg @@ -0,0 +1,66 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cwindow_active.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cwindow_active.svg new file mode 100644 index 00000000..f1687cee --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cwindow_active.svg @@ -0,0 +1,349 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/cwindow_inactive.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cwindow_inactive.svg new file mode 100644 index 00000000..6ad376f8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/cwindow_inactive.svg @@ -0,0 +1,230 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted See: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/delete.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/delete.svg new file mode 100644 index 00000000..b879973d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/delete.svg @@ -0,0 +1,70 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/downmix51_2.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/downmix51_2.svg new file mode 100644 index 00000000..88788168 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/downmix51_2.svg @@ -0,0 +1,209 @@ + + + + + downmix51_2 + + + + image/svg+xml + + downmix51_2 + 2018-08-17 + + + Olaf + + + 2018-08-17: new. + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + 2 + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/drawpatch.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/drawpatch.svg new file mode 100644 index 00000000..707ed1df --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/drawpatch.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_checked.svg new file mode 100644 index 00000000..3e56a695 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_checked.svg @@ -0,0 +1,192 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_checkedhi.svg new file mode 100644 index 00000000..8a317c70 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_checkedhi.svg @@ -0,0 +1,198 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_dn.svg new file mode 100644 index 00000000..873e5dc9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_dn.svg @@ -0,0 +1,165 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_hi.svg new file mode 100644 index 00000000..9ef040b0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_hi.svg @@ -0,0 +1,194 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_up.svg new file mode 100644 index 00000000..bd7cbdc6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/editpanel_up.svg @@ -0,0 +1,237 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/end.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/end.svg new file mode 100644 index 00000000..32344848 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/end.svg @@ -0,0 +1,111 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + see: play + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_checked.svg new file mode 100644 index 00000000..32cfad2e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_checked.svg @@ -0,0 +1,218 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_checkedhi.svg new file mode 100644 index 00000000..44d5553a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_checkedhi.svg @@ -0,0 +1,207 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_dn.svg new file mode 100644 index 00000000..d955e1a6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_dn.svg @@ -0,0 +1,191 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_hi.svg new file mode 100644 index 00000000..bb3f49cf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_hi.svg @@ -0,0 +1,203 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_up.svg new file mode 100644 index 00000000..c43a4224 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/expandpatch_up.svg @@ -0,0 +1,154 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/eyedrop.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/eyedrop.svg new file mode 100644 index 00000000..4b406842 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/eyedrop.svg @@ -0,0 +1,263 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fastfwd.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fastfwd.svg new file mode 100644 index 00000000..a91fdcbf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fastfwd.svg @@ -0,0 +1,129 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + see: play + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fastrev.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fastrev.svg new file mode 100644 index 00000000..9cffe368 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fastrev.svg @@ -0,0 +1,119 @@ + + + + + + + + image/svg+xml + + + + + + + + + see: play + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_checked.svg new file mode 100644 index 00000000..7ac70f2e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_checked.svg @@ -0,0 +1,355 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + see: shbtn_up! + 25*23 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_checkedhi.svg new file mode 100644 index 00000000..9461a934 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_checkedhi.svg @@ -0,0 +1,378 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + + + see: shbtn_up! + 25*23 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_down.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_down.svg new file mode 100644 index 00000000..5ea75fb8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_down.svg @@ -0,0 +1,174 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + see: shbtn_up! + 25*23 + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_hi.svg new file mode 100644 index 00000000..2beb7133 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_hi.svg @@ -0,0 +1,190 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + see: shbtn_up! + 25*23 + + C + GG + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_up.svg new file mode 100644 index 00000000..ed205787 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ff_up.svg @@ -0,0 +1,580 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + s.a.: recordpatch_up + + + + + + + + + + + + + + + + + + + + + + + + + ff_checked + ff_checkedhi + ff_up + ff_down + ff_hi + Cin an + FF an + + + + + + + + + + + + + + + + + + + + + + + + + C + + C + GG + FFmpeg-Logo: lizenzfrei, geringe Schöpfungshöhe. + Umschalter + s.a.: 0.Neophyte-Logos + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_dn.svg new file mode 100644 index 00000000..3150effa --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_dn.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + see: file_size_capb_up + B + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_hi.svg new file mode 100644 index 00000000..f7bd983c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_hi.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + file_size_zero_up + file_size_zero_hi + file_size_zero_dn + + + + + + B + see: file_size_capb_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_up.svg new file mode 100644 index 00000000..e02f5591 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_capb_up.svg @@ -0,0 +1,1026 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + file_size_capb_up + file_size_capb_hi + + file_size_semi_up + file_size_semi_hi + + + file_size_lwrb_up + file_size_lwrb_hi + file_size_lwrb_dn + + + + file_size_zero_up + file_size_zero_hi + file_size_zero_dn + + + + file_size_capb_dn + + file_size_semi_dn + + + + + + B + B + B + + + + + + + + + + + + + + + + b + b + b + + 0 + + + + 0 + + + + 0 + + + + , + · + + + , + · + + + , + · + + human-readable /1000 + Byte 000000000 + human-readable /1024 + Byte: 000,000,000 + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_dn.svg new file mode 100644 index 00000000..11dc12d6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_dn.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + b + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_hi.svg new file mode 100644 index 00000000..5b52ed18 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_hi.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + b + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_up.svg new file mode 100644 index 00000000..10621f41 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_lwrb_up.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + b + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_dn.svg new file mode 100644 index 00000000..058c8319 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_dn.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + , + · + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_hi.svg new file mode 100644 index 00000000..86fc59b5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_hi.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + + , + · + + see: file_size_capb_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_up.svg new file mode 100644 index 00000000..eb5b3117 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_semi_up.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + + , + · + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_dn.svg new file mode 100644 index 00000000..0d905664 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_dn.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + 0 + + + see: file_size_capb_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_hi.svg new file mode 100644 index 00000000..e39cc880 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_hi.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + + 0 + + + see: file_size_capb_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_up.svg new file mode 100644 index 00000000..6e162419 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/file_size_zero_up.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-10 + + + Olaf + + + 2018-08-10: neu. + + + + + + + + 0 + + + see: file_size_capb_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_dn.svg new file mode 100644 index 00000000..5b353bab --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_dn.svg @@ -0,0 +1,175 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_hi.svg new file mode 100644 index 00000000..69c29e6d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_hi.svg @@ -0,0 +1,186 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_up.svg new file mode 100644 index 00000000..38c54ccb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/filebox_bigbutton_up.svg @@ -0,0 +1,256 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_dn.svg new file mode 100644 index 00000000..fa05f52d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_dn.svg @@ -0,0 +1,164 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_hi.svg new file mode 100644 index 00000000..7df91fc7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_hi.svg @@ -0,0 +1,176 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_up.svg new file mode 100644 index 00000000..f5c412a0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fileboxbutton_up.svg @@ -0,0 +1,130 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fit.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fit.svg new file mode 100644 index 00000000..2960c6df --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fit.svg @@ -0,0 +1,173 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/fitautos.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fitautos.svg new file mode 100644 index 00000000..8b661b6e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/fitautos.svg @@ -0,0 +1,169 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/folder.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/folder.svg new file mode 100644 index 00000000..096f7c3b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/folder.svg @@ -0,0 +1,79 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/framefwd.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/framefwd.svg new file mode 100644 index 00000000..ef529ceb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/framefwd.svg @@ -0,0 +1,129 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + see: play + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/framerev.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/framerev.svg new file mode 100644 index 00000000..a32e7f01 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/framerev.svg @@ -0,0 +1,243 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + see: play + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/gangpatch.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/gangpatch.svg new file mode 100644 index 00000000..b0162842 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/gangpatch.svg @@ -0,0 +1,95 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_dn.svg new file mode 100644 index 00000000..e467e407 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_dn.svg @@ -0,0 +1,196 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_hi.svg new file mode 100644 index 00000000..9a276f54 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_hi.svg @@ -0,0 +1,214 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_up.svg new file mode 100644 index 00000000..2df19f93 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/generic_up.svg @@ -0,0 +1,199 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + generic_up + sämtliche Ausklapp-Menüs, Ok Apply Cancel, Reset usw. + see: recordpatch_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/goto.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/goto.svg new file mode 100644 index 00000000..3b5eee5b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/goto.svg @@ -0,0 +1,199 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/heroine_icon.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/heroine_icon.svg new file mode 100644 index 00000000..4493bdd7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/heroine_icon.svg @@ -0,0 +1,150 @@ + + + + + heroine_icon + + + + image/svg+xml + + heroine_icon + 2018-08-13 + + + Olaf + + + New heroine_icon - fitting to the theme. +Dokumet enlarged from 60 to 64 px. + + + + + + + + + + + + + + + + + C + inelerra + + s.a.: 0.Neophyte-Logos + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_checked.svg new file mode 100644 index 00000000..a3d77d6d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_checked.svg @@ -0,0 +1,224 @@ + + + + + histogram_carrot_* + + + + image/svg+xml + + histogram_carrot_* + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + histogram_carrot_up, editpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: histogram_carrot_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_checkedhi.svg new file mode 100644 index 00000000..a51e9dc5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_checkedhi.svg @@ -0,0 +1,224 @@ + + + + + histogram_carrot_* + + + + image/svg+xml + + histogram_carrot_* + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + histogram_carrot_up, editpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: histogram_carrot_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_dn.svg new file mode 100644 index 00000000..96e4256d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_dn.svg @@ -0,0 +1,224 @@ + + + + + histogram_carrot_* + + + + image/svg+xml + + histogram_carrot_* + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + histogram_carrot_up, editpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: histogram_carrot_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_hi.svg new file mode 100644 index 00000000..a8c5c75e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_hi.svg @@ -0,0 +1,224 @@ + + + + + histogram_carrot_* + + + + image/svg+xml + + histogram_carrot_* + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + histogram_carrot_up, editpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: histogram_carrot_up + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_up.svg new file mode 100644 index 00000000..dfba84eb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_carrot_up.svg @@ -0,0 +1,330 @@ + + + + + histogram_carrot_up + + + + image/svg+xml + + histogram_carrot_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + histogram_carrot_*, editpanel_ + + + + + + + + + + + + + + + + + + + + histogram_carrot_up + histogram_carrot_hi + histogram_carrot_dn + histogram_carrot_checked + histogram_carrot_checkedhi + + + + + + + + + Unknown use. + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_img.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_img.svg new file mode 100644 index 00000000..0568343c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_img.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + histogram_img + + histogram_rgb + histogram_toggle + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_rgb.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_rgb.svg new file mode 100644 index 00000000..8c20478c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_rgb.svg @@ -0,0 +1,136 @@ + + + + + + + + + + image/svg+xml + + + + + + + see: histogram_img + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_toggle.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_toggle.svg new file mode 100644 index 00000000..e95c67db --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/histogram_toggle.svg @@ -0,0 +1,116 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + histogram_img + + histogram_rgb + histogram_toggle + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_bg.svg new file mode 100644 index 00000000..e8d69ce0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_bg.svg @@ -0,0 +1,177 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. Breeze dark + + + + + + + + + + + + + + + + + see vscroll_handle_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_dn.svg new file mode 100644 index 00000000..f35a0aa2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_dn.svg @@ -0,0 +1,279 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. Breeze dark + + + + + + + see vscroll_handle_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_hi.svg new file mode 100644 index 00000000..077549e7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_hi.svg @@ -0,0 +1,275 @@ + + + + + + + + image/svg+xml + + + + + + + + + + see vscroll_handle_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_up.svg new file mode 100644 index 00000000..836730ca --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_handle_up.svg @@ -0,0 +1,250 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. Breeze dark + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: vscroll_handle_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_dn.svg new file mode 100644 index 00000000..372b0ef1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_dn.svg @@ -0,0 +1,275 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_hi.svg new file mode 100644 index 00000000..ef07afa0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_hi.svg @@ -0,0 +1,270 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_up.svg new file mode 100644 index 00000000..d67c53fb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_left_up.svg @@ -0,0 +1,270 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_dn.svg new file mode 100644 index 00000000..4d39a0f1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_dn.svg @@ -0,0 +1,275 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_hi.svg new file mode 100644 index 00000000..7218b6d1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_hi.svg @@ -0,0 +1,278 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_up.svg new file mode 100644 index 00000000..4f1065ab --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hscroll_right_up.svg @@ -0,0 +1,95 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_dn.svg new file mode 100644 index 00000000..dd5ec667 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_dn.svg @@ -0,0 +1,148 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + see: hslider_bg_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_hi.svg new file mode 100644 index 00000000..ee15ce0f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_hi.svg @@ -0,0 +1,128 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + see: hslider_bg_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_up.svg new file mode 100644 index 00000000..dfcf460f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_bg_up.svg @@ -0,0 +1,427 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + hslider_bg_up + hslider_bg_hi + hslider_bg_dn + + + + + + + + + + + + + + + + + + + + + + + + + + es Blitzt zu sehr: + + + + + hslider_bg_hi + hslider_bg_dn + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_dn.svg new file mode 100644 index 00000000..b500d1b4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_dn.svg @@ -0,0 +1,204 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + see: hslider_bg_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_hi.svg new file mode 100644 index 00000000..73eb2315 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_hi.svg @@ -0,0 +1,185 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_up.svg new file mode 100644 index 00000000..fe2495ea --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/hslider_fg_up.svg @@ -0,0 +1,189 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + see: hslider_bg_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ibeam.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ibeam.svg new file mode 100644 index 00000000..b5e11941 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ibeam.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/icons.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/icons.svg new file mode 100644 index 00000000..524d7f12 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/icons.svg @@ -0,0 +1,69 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_checked.svg new file mode 100644 index 00000000..7fadc8ae --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_checked.svg @@ -0,0 +1,107 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_checkedhi.svg new file mode 100644 index 00000000..27d548dc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_checkedhi.svg @@ -0,0 +1,107 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_dn.svg new file mode 100644 index 00000000..8fd149b0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_dn.svg @@ -0,0 +1,107 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_hi.svg new file mode 100644 index 00000000..433615b9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_hi.svg @@ -0,0 +1,101 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_up.svg new file mode 100644 index 00000000..0abccb3c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/in_up.svg @@ -0,0 +1,374 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + Compsitor 16 pxMain 17 px + + + + uphi + down + + up + + checked + + checkedhi + + + + + + + + + + + + in_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/inpoint.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/inpoint.svg new file mode 100644 index 00000000..9274c01e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/inpoint.svg @@ -0,0 +1,86 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/keyframe3.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/keyframe3.svg new file mode 100644 index 00000000..da9f51a6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/keyframe3.svg @@ -0,0 +1,107 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/label.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/label.svg new file mode 100644 index 00000000..d7ede120 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/label.svg @@ -0,0 +1,105 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/label_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/label_checked.svg new file mode 100644 index 00000000..d5df8c92 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/label_checked.svg @@ -0,0 +1,101 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + see: in_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/label_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/label_checkedhi.svg new file mode 100644 index 00000000..17c2acf2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/label_checkedhi.svg @@ -0,0 +1,99 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + see: in_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_dn.svg new file mode 100644 index 00000000..22a3ae0f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_dn.svg @@ -0,0 +1,123 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. Breeze dark + + + + + + + + + 17 pt + see: in_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_up.svg new file mode 100644 index 00000000..76084494 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_up.svg @@ -0,0 +1,99 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + see: in_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_uphi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_uphi.svg new file mode 100644 index 00000000..afbab148 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/labeltoggle_uphi.svg @@ -0,0 +1,101 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + see: in_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/left_justify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/left_justify.svg new file mode 100644 index 00000000..858136ec --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/left_justify.svg @@ -0,0 +1,99 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_button.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_button.svg new file mode 100644 index 00000000..bd1f396d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_button.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_dn.svg new file mode 100644 index 00000000..63c04ca7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_dn.svg @@ -0,0 +1,75 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_up.svg new file mode 100644 index 00000000..a941eb0e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/listbox_up.svg @@ -0,0 +1,75 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_all.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_all.svg new file mode 100644 index 00000000..24a4ca49 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_all.svg @@ -0,0 +1,1132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-15 + + + Olaf + + + 2018-08-15: new. + + + + + loadmode_up + loadmode_hi + loadmode_checked + loadmode_dn + loadmode_checkedhi + loadmode_nested + loadmode_resource + + + loadmode_paste + + loadmode_none + + loadmode_newtracks + + loadmode_newcat + + loadmode_new + + + + + + + loadmode_cat + + + + + + + + + + + see: recordpatch_up + checkbox_* + Are these the correct measurements? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RES + + + + ALL! + loadmode + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_cat.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_cat.svg new file mode 100644 index 00000000..72542e82 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_cat.svg @@ -0,0 +1,102 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_checked.svg new file mode 100644 index 00000000..b634ed94 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_checked.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_checkedhi.svg new file mode 100644 index 00000000..0f303413 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_checkedhi.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_dn.svg new file mode 100644 index 00000000..e6c90c15 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_dn.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_hi.svg new file mode 100644 index 00000000..e3b03d82 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_hi.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_nested.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_nested.svg new file mode 100644 index 00000000..cfbdb9bc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_nested.svg @@ -0,0 +1,114 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_new.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_new.svg new file mode 100644 index 00000000..9cd8c7a6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_new.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_newcat.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_newcat.svg new file mode 100644 index 00000000..05c8b7f6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_newcat.svg @@ -0,0 +1,102 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_newtracks.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_newtracks.svg new file mode 100644 index 00000000..554480ea --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_newtracks.svg @@ -0,0 +1,104 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_none.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_none.svg new file mode 100644 index 00000000..a5776bcf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_none.svg @@ -0,0 +1,80 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_paste.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_paste.svg new file mode 100644 index 00000000..63ac248c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_paste.svg @@ -0,0 +1,121 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_resource.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_resource.svg new file mode 100644 index 00000000..a4b93186 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_resource.svg @@ -0,0 +1,94 @@ + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + RES + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_up.svg new file mode 100644 index 00000000..2856b48f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/loadmode_up.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + loadmode_all + 2018-08-14 + + + Olaf + + + 2018-08-14 + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_dn.svg new file mode 100644 index 00000000..e0627c34 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_dn.svg @@ -0,0 +1,169 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_locked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_locked.svg new file mode 100644 index 00000000..92ea873c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_locked.svg @@ -0,0 +1,278 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_lockedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_lockedhi.svg new file mode 100644 index 00000000..1f1b1aa5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_lockedhi.svg @@ -0,0 +1,164 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_unlocked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_unlocked.svg new file mode 100644 index 00000000..dde5a06e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_unlocked.svg @@ -0,0 +1,220 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_unlockedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_unlockedhi.svg new file mode 100644 index 00000000..53bd1b88 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/locklabels_unlockedhi.svg @@ -0,0 +1,133 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/magnify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/magnify.svg new file mode 100644 index 00000000..7c84c4bf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/magnify.svg @@ -0,0 +1,66 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mask.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mask.svg new file mode 100644 index 00000000..dd940056 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mask.svg @@ -0,0 +1,75 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/maskkeyframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/maskkeyframe.svg new file mode 100644 index 00000000..c051bf23 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/maskkeyframe.svg @@ -0,0 +1,68 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mbutton_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mbutton_bg.svg new file mode 100644 index 00000000..8716b922 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mbutton_bg.svg @@ -0,0 +1,245 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + + menubar_bg + mbutton_bg + + + + + + + statusbar + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mclock_flat.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mclock_flat.svg new file mode 100644 index 00000000..925fac27 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mclock_flat.svg @@ -0,0 +1,225 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + Fix mit timebar_bg_flat + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menu_popup_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menu_popup_bg.svg new file mode 100644 index 00000000..379659e8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menu_popup_bg.svg @@ -0,0 +1,130 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + Schatten 1px l,r,u + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_bg.svg new file mode 100644 index 00000000..5204b9d3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_bg.svg @@ -0,0 +1,206 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + menubar_bg + mbutton_bg + statusbar + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_dn.svg new file mode 100644 index 00000000..e2689d1f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_dn.svg @@ -0,0 +1,203 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + see: menubar_up + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_hi.svg new file mode 100644 index 00000000..9eba8429 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_hi.svg @@ -0,0 +1,245 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: menubar_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_up.svg new file mode 100644 index 00000000..bb55e672 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menubar_up.svg @@ -0,0 +1,508 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + menubar_dn + menubar_hi + menubar_up + + + + + + + + + s.a.: preferencesbutton_up + (untere Kante wird von Menü überlagert) + + + + + + + + + + + + + + + + + + + + + + obsolet + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_dn.svg new file mode 100644 index 00000000..5e799473 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_dn.svg @@ -0,0 +1,181 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + + + + see: menuitem_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_hi.svg new file mode 100644 index 00000000..521a13c6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_hi.svg @@ -0,0 +1,198 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: menuitem_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_up.svg new file mode 100644 index 00000000..8abd8be5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/menuitem_up.svg @@ -0,0 +1,269 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rahmen oben überlagert Text. + + + + + + + + menuitem_dn + menuitem_hi + menuitem_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/middle_justify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/middle_justify.svg new file mode 100644 index 00000000..370e3e02 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/middle_justify.svg @@ -0,0 +1,98 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_checked.svg new file mode 100644 index 00000000..677c4111 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_checked.svg @@ -0,0 +1,131 @@ + + + + + + + + image/svg+xml + + + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + mixpatch_* + + + + + + + + + + see: recordpatch_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_checkedhi.svg new file mode 100644 index 00000000..9c8a66e0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_checkedhi.svg @@ -0,0 +1,304 @@ + + + + + + + + image/svg+xml + + + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + mixpatch_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_dn.svg new file mode 100644 index 00000000..05116615 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_dn.svg @@ -0,0 +1,131 @@ + + + + + + + + image/svg+xml + + + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + mixpatch_* + + + + + + + + + + see: recordpatch_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_hi.svg new file mode 100644 index 00000000..fa398cbf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_hi.svg @@ -0,0 +1,130 @@ + + + + + + + + image/svg+xml + + + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + mixpatch_* + + + + + + + + + + see: recordpatch_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_up.svg new file mode 100644 index 00000000..7c30d3f0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mixpatch_up.svg @@ -0,0 +1,130 @@ + + + + + + + + image/svg+xml + + + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + mixpatch_* + + + + + + + + + + see: recordpatch_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_add.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_add.svg new file mode 100644 index 00000000..a9b3b7e7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_add.svg @@ -0,0 +1,67 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_all.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_all.svg new file mode 100644 index 00000000..941ac590 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_all.svg @@ -0,0 +1,2409 @@ + + + + + mode (all) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + mode (all) + 2018-08-12 + + + Olaf + + + 2018-08-12, 13, 14: new. +Optical height compensation makes no sense, max. dimensions sing just so to recognize. + Olaf + + + Cinelerra + Theme + Neophyte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mode_and + mode_darken + mode_dst + mode_dstatop + mode_dstin + mode_dstout + mode_dstover + mode_lighten + mode_min + mode_or + mode_src + mode_srcatop + mode_srcin + mode_srcout + mode_srcover + mode_xor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + < + + / + + + + + + + + Features5: 21. Overlay Modes – Alpha Blending with PorterDuff and Operators + + + + + + + mode_max + + + + + + + + + + + + + + + + - + + + + - + + + < + + / + + https://en.wikipedia.org/wiki/Venn_diagram + + + + + + mode_divide + + + + + + mode_normal + + + + mode_replace + mode_multiply + + + + + + + mode_subtract + + mode_add + The background matches mode_up exactly. + + + Arithmetic + PorterDuff + Logical + + + + + + + + + + + + + + + + + + + mode_overlay + mode_burn + mode_dodge + mode_hardlight + mode_screen (~or) + mode_softlight + + + + + + + + + + + + mode_difference + + + + + + + + + + + Graphic Art + ALL! + mode + + + SRC + SRC + SRC + + + SR + + + + SRC + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_and.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_and.svg new file mode 100644 index 00000000..52ba9d98 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_and.svg @@ -0,0 +1,89 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_burn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_burn.svg new file mode 100644 index 00000000..e21e5771 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_burn.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_darken.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_darken.svg new file mode 100644 index 00000000..d911703b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_darken.svg @@ -0,0 +1,88 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + - + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_difference.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_difference.svg new file mode 100644 index 00000000..64ff64f2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_difference.svg @@ -0,0 +1,89 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_divide.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_divide.svg new file mode 100644 index 00000000..e856eb38 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_divide.svg @@ -0,0 +1,67 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dn.svg new file mode 100644 index 00000000..a1d917c5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dn.svg @@ -0,0 +1,160 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dodge.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dodge.svg new file mode 100644 index 00000000..7f473dbf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dodge.svg @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dst.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dst.svg new file mode 100644 index 00000000..911e3af8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dst.svg @@ -0,0 +1,104 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstatop.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstatop.svg new file mode 100644 index 00000000..e1bac528 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstatop.svg @@ -0,0 +1,106 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstin.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstin.svg new file mode 100644 index 00000000..ad1441d3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstin.svg @@ -0,0 +1,106 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstout.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstout.svg new file mode 100644 index 00000000..06866330 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstout.svg @@ -0,0 +1,101 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstover.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstover.svg new file mode 100644 index 00000000..61a1fe61 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_dstover.svg @@ -0,0 +1,82 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_hardlight.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_hardlight.svg new file mode 100644 index 00000000..0956b353 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_hardlight.svg @@ -0,0 +1,72 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_hi.svg new file mode 100644 index 00000000..9d3d31e9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_hi.svg @@ -0,0 +1,304 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_lighten.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_lighten.svg new file mode 100644 index 00000000..7a3d34e6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_lighten.svg @@ -0,0 +1,88 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_max.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_max.svg new file mode 100644 index 00000000..4b8980d2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_max.svg @@ -0,0 +1,81 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_min.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_min.svg new file mode 100644 index 00000000..eafa6410 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_min.svg @@ -0,0 +1,84 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_multiply.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_multiply.svg new file mode 100644 index 00000000..3279060b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_multiply.svg @@ -0,0 +1,72 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_normal.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_normal.svg new file mode 100644 index 00000000..c2817072 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_normal.svg @@ -0,0 +1,78 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_or.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_or.svg new file mode 100644 index 00000000..f1a2b9cd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_or.svg @@ -0,0 +1,89 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_overlay.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_overlay.svg new file mode 100644 index 00000000..74a0d65f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_overlay.svg @@ -0,0 +1,82 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_replace.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_replace.svg new file mode 100644 index 00000000..b65d331c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_replace.svg @@ -0,0 +1,72 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_screen.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_screen.svg new file mode 100644 index 00000000..eaa5f94b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_screen.svg @@ -0,0 +1,89 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_softlight.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_softlight.svg new file mode 100644 index 00000000..6fe04cd8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_softlight.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_src.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_src.svg new file mode 100644 index 00000000..327aa75b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_src.svg @@ -0,0 +1,77 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + SRC + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcatop.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcatop.svg new file mode 100644 index 00000000..70ef4467 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcatop.svg @@ -0,0 +1,85 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + SRC + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcin.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcin.svg new file mode 100644 index 00000000..30a8358d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcin.svg @@ -0,0 +1,92 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + SRC + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcout.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcout.svg new file mode 100644 index 00000000..9e0ae73f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcout.svg @@ -0,0 +1,77 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + SR + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcover.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcover.svg new file mode 100644 index 00000000..bc207a19 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_srcover.svg @@ -0,0 +1,93 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + SRC + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_subtract.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_subtract.svg new file mode 100644 index 00000000..61e872d3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_subtract.svg @@ -0,0 +1,72 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_up.svg new file mode 100644 index 00000000..7bfeb112 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_up.svg @@ -0,0 +1,278 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_xor.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_xor.svg new file mode 100644 index 00000000..3ce4f491 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mode_xor.svg @@ -0,0 +1,89 @@ + + + + + + + + + + image/svg+xml + + + 2018-08-13 + + + Olaf + + + 2018-08-13: neu + + mode.svg + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/modekeyframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/modekeyframe.svg new file mode 100644 index 00000000..b75f45c0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/modekeyframe.svg @@ -0,0 +1,72 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mscroll_filler.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mscroll_filler.svg new file mode 100644 index 00000000..fccaa2be --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mscroll_filler.svg @@ -0,0 +1,188 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_checked.svg new file mode 100644 index 00000000..674a964d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_checked.svg @@ -0,0 +1,155 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_checkedhi.svg new file mode 100644 index 00000000..4de1843a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_checkedhi.svg @@ -0,0 +1,233 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_dn.svg new file mode 100644 index 00000000..d7c5d6d5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_dn.svg @@ -0,0 +1,166 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_hi.svg new file mode 100644 index 00000000..98f57878 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_hi.svg @@ -0,0 +1,212 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_up.svg new file mode 100644 index 00000000..e45d07dd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/mutepatch_up.svg @@ -0,0 +1,144 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bg.svg new file mode 100644 index 00000000..bbb3ea86 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bg.svg @@ -0,0 +1,196 @@ + + + + + Neophyte: new_bg + + + + image/svg+xml + + Neophyte: new_bg + 2018-08-01 + + + Olaf + + + 2018-08-08: Überschneiden sich: new project ./. append to project. +Übernommenen Maße passten nicht. +Siehe auch: setformat_bg. + + + + + + + + cinelerra + theme + neophyte + + + + + + + + + + + + + + + + + + + + Überschneidet sich: new project ./. append to project.Übernommenene Maße passten nicht. + C + GG + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_dn.svg new file mode 100644 index 00000000..4fd8d257 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_dn.svg @@ -0,0 +1,151 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + see: new_bigbutton_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_hi.svg new file mode 100644 index 00000000..1e982001 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_hi.svg @@ -0,0 +1,182 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + see: new_bigbutton_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_up.svg new file mode 100644 index 00000000..6e0cfc11 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/new_bigbutton_up.svg @@ -0,0 +1,132 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + new_bigbutton_up + + new_bigbutton_hi + new_bigbutton_dn + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/nextedit.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/nextedit.svg new file mode 100644 index 00000000..15a3b583 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/nextedit.svg @@ -0,0 +1,183 @@ + + + + + + + + image/svg+xml + + + 2018-08-09 + + + Olaf + + + 2018-08-09: neu. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/nextlabel.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/nextlabel.svg new file mode 100644 index 00000000..6ad62a51 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/nextlabel.svg @@ -0,0 +1,73 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/nexttip.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/nexttip.svg new file mode 100644 index 00000000..0983f82c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/nexttip.svg @@ -0,0 +1,203 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ok.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ok.svg new file mode 100644 index 00000000..6f15dba4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ok.svg @@ -0,0 +1,176 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/openfolder.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/openfolder.svg new file mode 100644 index 00000000..84304e9f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/openfolder.svg @@ -0,0 +1,690 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nacharbeiten. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_checked.svg new file mode 100644 index 00000000..61071734 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_checked.svg @@ -0,0 +1,95 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_checkedhi.svg new file mode 100644 index 00000000..940130a8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_checkedhi.svg @@ -0,0 +1,89 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_dn.svg new file mode 100644 index 00000000..c8979903 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_dn.svg @@ -0,0 +1,105 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + see: in_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_hi.svg new file mode 100644 index 00000000..c0b47f00 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_hi.svg @@ -0,0 +1,95 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_up.svg new file mode 100644 index 00000000..c67e1fd2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/out_up.svg @@ -0,0 +1,95 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/outpoint.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/outpoint.svg new file mode 100644 index 00000000..cc8580cd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/outpoint.svg @@ -0,0 +1,93 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/over.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/over.svg new file mode 100644 index 00000000..86a0cb1f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/over.svg @@ -0,0 +1,120 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + Over + over + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/overwrite.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/overwrite.svg new file mode 100644 index 00000000..362056ad --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/overwrite.svg @@ -0,0 +1,77 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_channel.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_channel.svg new file mode 100644 index 00000000..8a1f58cf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_channel.svg @@ -0,0 +1,117 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_channel_small.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_channel_small.svg new file mode 100644 index 00000000..68d13d68 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_channel_small.svg @@ -0,0 +1,120 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_hi.svg new file mode 100644 index 00000000..a12a1aab --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_hi.svg @@ -0,0 +1,156 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_popup.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_popup.svg new file mode 100644 index 00000000..e70fabfc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_popup.svg @@ -0,0 +1,147 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_stick.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_stick.svg new file mode 100644 index 00000000..8ff99e6f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_stick.svg @@ -0,0 +1,153 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: checkbox... + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_stick_small.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_stick_small.svg new file mode 100644 index 00000000..cf229ed0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_stick_small.svg @@ -0,0 +1,113 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_up.svg new file mode 100644 index 00000000..e87e4984 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pan_up.svg @@ -0,0 +1,157 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane.svg new file mode 100644 index 00000000..fb102fc9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-09 + + + Olaf + + + 2018-08-09: neu. + + + + + see: recordpatch_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_dn.svg new file mode 100644 index 00000000..80f0f94b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_dn.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-09 + + + Olaf + + + 2018-08-09: neu. + + + + + see: recordpatch_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_hi.svg new file mode 100644 index 00000000..ef3e5468 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_hi.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-09 + + + Olaf + + + 2018-08-09: neu. + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_up.svg new file mode 100644 index 00000000..1d78c403 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pane_up.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + 2018-08-09 + + + Olaf + + + 2018-08-09: neu. + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/panel_divider.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/panel_divider.svg new file mode 100644 index 00000000..58c09309 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/panel_divider.svg @@ -0,0 +1,160 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + see: mbutton_bg + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pankeyframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pankeyframe.svg new file mode 100644 index 00000000..a4aff367 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pankeyframe.svg @@ -0,0 +1,82 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/paste.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/paste.svg new file mode 100644 index 00000000..7cf76bf6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/paste.svg @@ -0,0 +1,220 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_checked.svg new file mode 100644 index 00000000..9c20aaf9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_checked.svg @@ -0,0 +1,197 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_checkedhi.svg new file mode 100644 index 00000000..c017b3b3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_checkedhi.svg @@ -0,0 +1,200 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_dn.svg new file mode 100644 index 00000000..b5e843a6 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_dn.svg @@ -0,0 +1,164 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_hi.svg new file mode 100644 index 00000000..7ac3ef9e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_hi.svg @@ -0,0 +1,188 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_up.svg new file mode 100644 index 00000000..b06b36d4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patch_up.svg @@ -0,0 +1,122 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + see: recordpatch_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/patchbay_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patchbay_bg.svg new file mode 100644 index 00000000..59826e04 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/patchbay_bg.svg @@ -0,0 +1,232 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: setformat_bg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hintergrund Patchbay (Hauptfenster links).Verlauf, dunkel rechts. + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pause.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pause.svg new file mode 100644 index 00000000..f3e0b599 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pause.svg @@ -0,0 +1,76 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/picture.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/picture.svg new file mode 100644 index 00000000..7dedb5d0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/picture.svg @@ -0,0 +1,213 @@ + + + + + picture + + + + image/svg+xml + + picture + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + cpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/play.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/play.svg new file mode 100644 index 00000000..667cf5fe --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/play.svg @@ -0,0 +1,972 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + reverse + + + + + + fastrev + + + + + + + + + + + + + + + + + + + + + + + + + see: play + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + end + framfwd + + + + + + + + + + + + + + + + + + rewind + In der End-Größe irritierend + Klar und schlicht. + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch.svg new file mode 100644 index 00000000..1fbea71e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch.svg @@ -0,0 +1,55 @@ + + + + + + + + image/svg+xml + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_checked.svg new file mode 100644 index 00000000..c40f2153 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_checked.svg @@ -0,0 +1,106 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_checkedhi.svg new file mode 100644 index 00000000..a5eb72a5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_checkedhi.svg @@ -0,0 +1,300 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_dn.svg new file mode 100644 index 00000000..53173181 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_dn.svg @@ -0,0 +1,203 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_hi.svg new file mode 100644 index 00000000..a3836e40 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_hi.svg @@ -0,0 +1,249 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_up.svg new file mode 100644 index 00000000..f57e349e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/playpatch_up.svg @@ -0,0 +1,178 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg new file mode 100644 index 00000000..3fe143af --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg @@ -0,0 +1,243 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_on.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_on.svg new file mode 100644 index 00000000..f33afe6d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_on.svg @@ -0,0 +1,80 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_ondn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_ondn.svg new file mode 100644 index 00000000..2873729a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_ondn.svg @@ -0,0 +1,80 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onhi.svg new file mode 100644 index 00000000..3186493d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onhi.svg @@ -0,0 +1,87 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onselect.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onselect.svg new file mode 100644 index 00000000..508ad1b8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onselect.svg @@ -0,0 +1,87 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onselecthi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onselecthi.svg new file mode 100644 index 00000000..d437a0c2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_onselecthi.svg @@ -0,0 +1,97 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_show.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_show.svg new file mode 100644 index 00000000..7d2c8386 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_show.svg @@ -0,0 +1,71 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showdn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showdn.svg new file mode 100644 index 00000000..516e7de2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showdn.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showhi.svg new file mode 100644 index 00000000..1badd42a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showhi.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showselect.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showselect.svg new file mode 100644 index 00000000..00bac03f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showselect.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showselecthi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showselecthi.svg new file mode 100644 index 00000000..26e52bae --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_showselecthi.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_dn.svg new file mode 100644 index 00000000..2e697829 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_dn.svg @@ -0,0 +1,116 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_hi.svg new file mode 100644 index 00000000..607198ca --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_hi.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_up.svg new file mode 100644 index 00000000..7b1fc219 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/pot_up.svg @@ -0,0 +1,140 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + Vorsicht, Programmierung. Stehen zu dicht zueinander. + Weglassen des Hintergrunds macht es nicht besser. + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferences_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferences_bg.svg new file mode 100644 index 00000000..5c5bb80f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferences_bg.svg @@ -0,0 +1,438 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dn.svg new file mode 100644 index 00000000..c5b6bbbb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dn.svg @@ -0,0 +1,144 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dnhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dnhi.svg new file mode 100644 index 00000000..130289ff --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dnhi.svg @@ -0,0 +1,193 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dnlo.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dnlo.svg new file mode 100644 index 00000000..3f670578 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_dnlo.svg @@ -0,0 +1,160 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + see: preferencesbutton_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_up.svg new file mode 100644 index 00000000..088edc39 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_up.svg @@ -0,0 +1,380 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + preferencesbutton_dn + + + preferencesbutton_uphi + preferencesbutton_dnhi + preferencesbutton_dnlo + preferencesbutton_up + + + + + + + + + + s.a: menubar_up + Flach u. unten offen wenn oben + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_uphi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_uphi.svg new file mode 100644 index 00000000..5b14e169 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preferencesbutton_uphi.svg @@ -0,0 +1,145 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit0.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit0.svg new file mode 100644 index 00000000..c6afdb68 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit0.svg @@ -0,0 +1,456 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + kapptemplate (Teil des KDE Software Development Kits) + Neu angelegt. + 2018-08-08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + preset_edit1 + preset_edit2 + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit1.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit1.svg new file mode 100644 index 00000000..52ec86ba --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit1.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + image/svg+xml + + + kapptemplate (Teil des KDE Software Development Kits) + Neu angelegt. + 2018-08-08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + preset_edit1 + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit2.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit2.svg new file mode 100644 index 00000000..fc0d313e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/preset_edit2.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + image/svg+xml + + + kapptemplate (Teil des KDE Software Development Kits) + Neu angelegt. + 2018-08-08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + preset_edit2 + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevedit.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevedit.svg new file mode 100644 index 00000000..03c3edd9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevedit.svg @@ -0,0 +1,183 @@ + + + + + + + + image/svg+xml + + + 2018-08-09 + + + Olaf + + + 2018-08-09: neu. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevlabel.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevlabel.svg new file mode 100644 index 00000000..29187c59 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevlabel.svg @@ -0,0 +1,77 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevtip.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevtip.svg new file mode 100644 index 00000000..568e1557 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/prevtip.svg @@ -0,0 +1,81 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/progress_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/progress_bg.svg new file mode 100644 index 00000000..90e8b0c1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/progress_bg.svg @@ -0,0 +1,136 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/progress_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/progress_hi.svg new file mode 100644 index 00000000..06a2c9b1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/progress_hi.svg @@ -0,0 +1,337 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + draft + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/projector.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/projector.svg new file mode 100644 index 00000000..d81f0a54 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/projector.svg @@ -0,0 +1,157 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/projectorkeyframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/projectorkeyframe.svg new file mode 100644 index 00000000..34236d90 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/projectorkeyframe.svg @@ -0,0 +1,337 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/protect.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/protect.svg new file mode 100644 index 00000000..dec19f3e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/protect.svg @@ -0,0 +1,88 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_chkd.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_chkd.svg new file mode 100644 index 00000000..0d469376 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_chkd.svg @@ -0,0 +1,135 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + P + S + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_chkdhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_chkdhi.svg new file mode 100644 index 00000000..82322d6a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_chkdhi.svg @@ -0,0 +1,142 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + + P + S + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_down.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_down.svg new file mode 100644 index 00000000..4334edf7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_down.svg @@ -0,0 +1,167 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_hi.svg new file mode 100644 index 00000000..7b028c9f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_hi.svg @@ -0,0 +1,142 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + P + S + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_up.svg new file mode 100644 index 00000000..27194d79 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_p_up.svg @@ -0,0 +1,142 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + + P + S + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_chkd.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_chkd.svg new file mode 100644 index 00000000..dc1f5d9c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_chkd.svg @@ -0,0 +1,175 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + P + S + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_chkdhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_chkdhi.svg new file mode 100644 index 00000000..0db6c42e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_chkdhi.svg @@ -0,0 +1,182 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + + P + S + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_down.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_down.svg new file mode 100644 index 00000000..d1e29cc7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_down.svg @@ -0,0 +1,150 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_hi.svg new file mode 100644 index 00000000..ea68c5dd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_hi.svg @@ -0,0 +1,182 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + P + S + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_up.svg new file mode 100644 index 00000000..5e2cf9f1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/proxy_s_up.svg @@ -0,0 +1,142 @@ + + + + + proxy_up + + + + + + + + + + + + + + + + image/svg+xml + + proxy_up + 2018-08-14 + + + Olaf + + + 2018-08-14: new. + proxy_* + + + + + + + + P + S + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_checked.svg new file mode 100644 index 00000000..e5eb242f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_checked.svg @@ -0,0 +1,162 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + see: radial_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_checkedhi.svg new file mode 100644 index 00000000..c64abd79 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_checkedhi.svg @@ -0,0 +1,163 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + see: radial_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_dn.svg new file mode 100644 index 00000000..784737c3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_dn.svg @@ -0,0 +1,133 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + see: radial_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_hi.svg new file mode 100644 index 00000000..83d5f217 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_hi.svg @@ -0,0 +1,132 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + see: radial_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_up.svg new file mode 100644 index 00000000..fc033abb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/radial_up.svg @@ -0,0 +1,313 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + radial_checked + radial_checkedhi + radial_hi + radial_dn + + + + + + + + + + + + + + see: checkbox_* + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/record.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/record.svg new file mode 100644 index 00000000..91c00053 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/record.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_batch.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_batch.svg new file mode 100644 index 00000000..fe05998b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_batch.svg @@ -0,0 +1,96 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted See: + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_controls.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_controls.svg new file mode 100644 index 00000000..55cd71b7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_controls.svg @@ -0,0 +1,84 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_list.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_list.svg new file mode 100644 index 00000000..b09003f7 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordgui_list.svg @@ -0,0 +1,77 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordmonitor_meters.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordmonitor_meters.svg new file mode 100644 index 00000000..d5f3501a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordmonitor_meters.svg @@ -0,0 +1,77 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordmonitor_panel.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordmonitor_panel.svg new file mode 100644 index 00000000..03476614 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordmonitor_panel.svg @@ -0,0 +1,77 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch.svg new file mode 100644 index 00000000..df3d96f0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch.svg @@ -0,0 +1,59 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_checked.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_checked.svg new file mode 100644 index 00000000..3d411b15 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_checked.svg @@ -0,0 +1,226 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + ff0000ff > 27ae60ff + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_checkedhi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_checkedhi.svg new file mode 100644 index 00000000..7189f470 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_checkedhi.svg @@ -0,0 +1,237 @@ + + + + + + + + image/svg+xml + + + ff0000ff > 27ae60ff + 2018-08-01 + + + Olaf + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_dn.svg new file mode 100644 index 00000000..2ba19661 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_dn.svg @@ -0,0 +1,182 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + e6e6e6ff > ffd42aff + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_hi.svg new file mode 100644 index 00000000..c6fb6250 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_hi.svg @@ -0,0 +1,255 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + ccccccff > aa0000ff + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_up.svg new file mode 100644 index 00000000..1d8da2f3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/recordpatch_up.svg @@ -0,0 +1,542 @@ + + + + + recordpatch_up + + + + image/svg+xml + + recordpatch_up + 2018-08-01 + + + Olaf + + + This is where it all started. The other icons have been added to the topic overview for publication: 0.Neophyte-Theme. + recordpatch_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + recordpatch_hi + recordpatch_up + + recordpatch_dn + recordpatch_checked + recordpatch_checkedhi + + + + + + + + + + + + + + + + + + + + + + + + + + + green: slightly darker, because of the large and placement + + default + + + + + + + To the topic overview: 0.Neophyte-Theme.svg + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/redo.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/redo.svg new file mode 100644 index 00000000..20e6a3fc --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/redo.svg @@ -0,0 +1,75 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/reload.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/reload.svg new file mode 100644 index 00000000..fe76c76a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/reload.svg @@ -0,0 +1,231 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/rename.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/rename.svg new file mode 100644 index 00000000..6010f389 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/rename.svg @@ -0,0 +1,202 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A + B + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg new file mode 100644 index 00000000..610ce3f4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg @@ -0,0 +1,228 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg new file mode 100644 index 00000000..e8be68b9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg @@ -0,0 +1,218 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg new file mode 100644 index 00000000..19b244eb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg @@ -0,0 +1,226 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg new file mode 100644 index 00000000..59792770 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg @@ -0,0 +1,223 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg new file mode 100644 index 00000000..bc0b30ef --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg @@ -0,0 +1,207 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg new file mode 100644 index 00000000..499f66df --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg @@ -0,0 +1,245 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/reverse.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/reverse.svg new file mode 100644 index 00000000..6e501ed4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/reverse.svg @@ -0,0 +1,111 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + see: play + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/rewind.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/rewind.svg new file mode 100644 index 00000000..708dab07 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/rewind.svg @@ -0,0 +1,251 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + see: play + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/right_justify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/right_justify.svg new file mode 100644 index 00000000..f772d24c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/right_justify.svg @@ -0,0 +1,100 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ruler.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ruler.svg new file mode 100644 index 00000000..b38acd1a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ruler.svg @@ -0,0 +1,77 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/scope.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/scope.svg new file mode 100644 index 00000000..5f8a9797 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/scope.svg @@ -0,0 +1,273 @@ + + + + + scope + + + + image/svg+xml + + scope + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + editpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/setformat_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/setformat_bg.svg new file mode 100644 index 00000000..ae1398f1 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/setformat_bg.svg @@ -0,0 +1,241 @@ + + + + + Neophyte: setformat_bg + + + + image/svg+xml + + Neophyte: setformat_bg + 2018-08-01 + + + Olaf + + + 2018-08-01: Neu: schlicht und zeitlos (mundane). +See also: new_bg. + deu + + + cinelerra + theme + neophyte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + C + GG + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_dn.svg new file mode 100644 index 00000000..6874b2d9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_dn.svg @@ -0,0 +1,189 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + + + shbtn_dn + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_hi.svg new file mode 100644 index 00000000..9c4c26a9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_hi.svg @@ -0,0 +1,255 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + + + shbtn_hi + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_up.svg new file mode 100644 index 00000000..06fada56 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/shbtn_up.svg @@ -0,0 +1,382 @@ + + + + + shbtn_up + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + shbtn_up + 2018-08-01 + + + Olaf + + + 2018-08-01: new. + Olaf + shbtn_dn, shbtn_hi + deu + + + Neophyte + Cinelerra + Theme + + + + + + + shbtn_hi + shbtn_dn + shbtn_up + s.a.: recordpatch_up + + + + + + 30*52 = gesamte Fläche + + 30*25 = Icon max. + Vorsicht! Die Buttons oben/unten haben unterschiedliche Maße. Durchgehend Hinterlegen geht nicht. + + + + + + + + + + + Die einprogrammierten … stehen in Konflikt + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/show_meters.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/show_meters.svg new file mode 100644 index 00000000..e2c51067 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/show_meters.svg @@ -0,0 +1,100 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/singleframe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/singleframe.svg new file mode 100644 index 00000000..5add3226 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/singleframe.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/splice.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/splice.svg new file mode 100644 index 00000000..24f1a8ee --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/splice.svg @@ -0,0 +1,97 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar.svg new file mode 100644 index 00000000..e7357c7e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar.svg @@ -0,0 +1,227 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + Considers the moved input fields. + menubar_bg + mbutton_bg + statusbar + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_dn.svg new file mode 100644 index 00000000..3c0dc7e9 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_dn.svg @@ -0,0 +1,144 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_hi.svg new file mode 100644 index 00000000..16fb0ceb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_hi.svg @@ -0,0 +1,208 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + see: statusbar_cancel_up + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_up.svg new file mode 100644 index 00000000..9895c011 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/statusbar_cancel_up.svg @@ -0,0 +1,210 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + statusbar_cancel_up + statusbar_cancel_hi + statusbar_cancel_dn + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/stop.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/stop.svg new file mode 100644 index 00000000..388e959c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/stop.svg @@ -0,0 +1,210 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + see: play + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/swap_extents.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/swap_extents.svg new file mode 100644 index 00000000..f41b0ccb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/swap_extents.svg @@ -0,0 +1,161 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tan_linear.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tan_linear.svg new file mode 100644 index 00000000..5d1c5054 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tan_linear.svg @@ -0,0 +1,76 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tan_smooth.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tan_smooth.svg new file mode 100644 index 00000000..16b468de --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tan_smooth.svg @@ -0,0 +1,132 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/text.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/text.svg new file mode 100644 index 00000000..4f061dc8 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/text.svg @@ -0,0 +1,144 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/text_highlight.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/text_highlight.svg new file mode 100644 index 00000000..5dab3625 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/text_highlight.svg @@ -0,0 +1,137 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_bg_flat.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_bg_flat.svg new file mode 100644 index 00000000..3ae3a62f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_bg_flat.svg @@ -0,0 +1,100 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + Neuer Verlauf. + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_brender.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_brender.svg new file mode 100644 index 00000000..1fed0b47 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_brender.svg @@ -0,0 +1,218 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ? + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_view.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_view.svg new file mode 100644 index 00000000..4da7430c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/timebar_view.svg @@ -0,0 +1,129 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_dn.svg new file mode 100644 index 00000000..3c88131e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_dn.svg @@ -0,0 +1,163 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_hi.svg new file mode 100644 index 00000000..b422f549 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_hi.svg @@ -0,0 +1,184 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_up.svg new file mode 100644 index 00000000..cb23451b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tipbutton_up.svg @@ -0,0 +1,253 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg new file mode 100644 index 00000000..877f5172 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg @@ -0,0 +1,173 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + Rahmen unten überlagert Text. + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/titlesafe.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/titlesafe.svg new file mode 100644 index 00000000..016cfe33 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/titlesafe.svg @@ -0,0 +1,85 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/toclip.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/toclip.svg new file mode 100644 index 00000000..1fe7e63d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/toclip.svg @@ -0,0 +1,76 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/toolwindow.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/toolwindow.svg new file mode 100644 index 00000000..3d93d2f2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/toolwindow.svg @@ -0,0 +1,202 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/top_justify.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/top_justify.svg new file mode 100644 index 00000000..2f259145 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/top_justify.svg @@ -0,0 +1,99 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/transportdn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/transportdn.svg new file mode 100644 index 00000000..a17be817 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/transportdn.svg @@ -0,0 +1,173 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/transporthi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/transporthi.svg new file mode 100644 index 00000000..0b20a9fa --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/transporthi.svg @@ -0,0 +1,202 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/transportup.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/transportup.svg new file mode 100644 index 00000000..744d44c2 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/transportup.svg @@ -0,0 +1,264 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + Start/Stop - "Leiste" u. Keyframe. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_bottom.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_bottom.svg new file mode 100644 index 00000000..baa97316 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_bottom.svg @@ -0,0 +1,159 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_hi.svg new file mode 100644 index 00000000..72c7f991 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_hi.svg @@ -0,0 +1,372 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_top.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_top.svg new file mode 100644 index 00000000..8387da3b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_top.svg @@ -0,0 +1,148 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_up.svg new file mode 100644 index 00000000..5843e301 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/tumble_up.svg @@ -0,0 +1,195 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/undo.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/undo.svg new file mode 100644 index 00000000..1a9012bb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/undo.svg @@ -0,0 +1,73 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/updir.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/updir.svg new file mode 100644 index 00000000..69258c18 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/updir.svg @@ -0,0 +1,174 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vbuttons_left.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vbuttons_left.svg new file mode 100644 index 00000000..9fbeecfb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vbuttons_left.svg @@ -0,0 +1,175 @@ + + + + + vbuttons_left + + + + image/svg+xml + + vbuttons_left + 2018-08-01 + + + Olaf + + + + vbuttons_right + + + + + + + + + + + cb-l + cb-l + + + + + + + + vbuttons + Background of the buttons in the viewer. Left, until vbuttons_right. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vbuttons_right.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vbuttons_right.svg new file mode 100644 index 00000000..3a060caf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vbuttons_right.svg @@ -0,0 +1,144 @@ + + + + + vbuttons_right + + + + image/svg+xml + + vbuttons_right + 2018-08-20 + + + Olaf + + + 2018-08-20: new + vbuttons_left + + + + + + + + + + + + + + + + + Viewer, bottom right. + The pattern repeats itself until it fits horizontally. + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vclock.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vclock.svg new file mode 100644 index 00000000..08fecc19 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vclock.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_bg.svg new file mode 100644 index 00000000..4ff2b23e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_bg.svg @@ -0,0 +1,160 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. Breeze dark + + + + + + + + + + + + + + see vscroll_handle_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_dn.svg new file mode 100644 index 00000000..5ad62511 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_dn.svg @@ -0,0 +1,437 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. +Formats see: hscroll_handle_up. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see vscroll_handle_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_hi.svg new file mode 100644 index 00000000..453c402a --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_hi.svg @@ -0,0 +1,433 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see vscroll_handle_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_up.svg new file mode 100644 index 00000000..c9ee9780 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_handle_up.svg @@ -0,0 +1,2563 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + + *scroll_handle* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + orig + bg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vscroll_handle_up + vscroll_handle_hi + vscroll_handle_dn + + + + + + + + + + + + + + + + + + + + + + + + + + hscroll_handle_up + + + + + + + + + + + + + + + + hscroll_handle_hi + + + + + + + + + + + + + + + + hscroll_handle_dn + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kontrast ist wichtiger. + + + bg + + to do: Scrollbar: Ausrichtung der Hervorhebung ·-· + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_dn.svg new file mode 100644 index 00000000..68380e26 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_dn.svg @@ -0,0 +1,144 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_hi.svg new file mode 100644 index 00000000..c9c0f4bd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_hi.svg @@ -0,0 +1,125 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_up.svg new file mode 100644 index 00000000..427d71fb --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_left_up.svg @@ -0,0 +1,313 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_dn.svg new file mode 100644 index 00000000..88094219 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_dn.svg @@ -0,0 +1,129 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_hi.svg new file mode 100644 index 00000000..fa3dc8dd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_hi.svg @@ -0,0 +1,129 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_up.svg new file mode 100644 index 00000000..79d7ef39 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vscroll_right_up.svg @@ -0,0 +1,308 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/vwindow_timebar.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vwindow_timebar.svg new file mode 100644 index 00000000..ab995f5f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/vwindow_timebar.svg @@ -0,0 +1,108 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/waveform.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/waveform.svg new file mode 100644 index 00000000..078aabdf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/waveform.svg @@ -0,0 +1,173 @@ + + + + + waveform + + + + image/svg+xml + + waveform + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + cpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/waveform_rgb.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/waveform_rgb.svg new file mode 100644 index 00000000..7a7248b0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/waveform_rgb.svg @@ -0,0 +1,186 @@ + + + + + waveform + + + + image/svg+xml + + waveform + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + cpanel_* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/wrench.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/wrench.svg new file mode 100644 index 00000000..d664fd06 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/wrench.svg @@ -0,0 +1,189 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_green.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_green.svg new file mode 100644 index 00000000..d3ddec13 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_green.svg @@ -0,0 +1,198 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_normal.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_normal.svg new file mode 100644 index 00000000..ce23b3a4 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_normal.svg @@ -0,0 +1,160 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_over.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_over.svg new file mode 100644 index 00000000..41db881d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_over.svg @@ -0,0 +1,260 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + over + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_red.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_red.svg new file mode 100644 index 00000000..330b0edd --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_red.svg @@ -0,0 +1,211 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_white.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_white.svg new file mode 100644 index 00000000..5de109fa --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_white.svg @@ -0,0 +1,230 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_yellow.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_yellow.svg new file mode 100644 index 00000000..322628f5 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xmeter_yellow.svg @@ -0,0 +1,212 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_dn.svg new file mode 100644 index 00000000..ca7d4b82 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_dn.svg @@ -0,0 +1,77 @@ + + + + + ypane_up + + + + + + image/svg+xml + + ypane_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + x/ypane_up + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_hi.svg new file mode 100644 index 00000000..d3220b33 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_hi.svg @@ -0,0 +1,106 @@ + + + + + ypane_up + + + + + + image/svg+xml + + ypane_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + x/ypane_up + + + + + + Unknown use. + xpane_hi + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_up.svg new file mode 100644 index 00000000..1d49602d --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/xpane_up.svg @@ -0,0 +1,147 @@ + + + + + ypane_up + + + + + + image/svg+xml + + ypane_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + x/ypane_up + + + + + + Unknown use. + xpane_dn + xpane_hi + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_green.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_green.svg new file mode 100644 index 00000000..81a1c266 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_green.svg @@ -0,0 +1,195 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_normal.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_normal.svg new file mode 100644 index 00000000..2242c78f --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_normal.svg @@ -0,0 +1,138 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_over.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_over.svg new file mode 100644 index 00000000..87ed052c --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_over.svg @@ -0,0 +1,182 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted +See: xmeter_over + + + + + + + + + + + + + + + + + + + + + + over + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_red.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_red.svg new file mode 100644 index 00000000..1d8e8ecf --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_red.svg @@ -0,0 +1,167 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_white.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_white.svg new file mode 100644 index 00000000..955e8514 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_white.svg @@ -0,0 +1,227 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_yellow.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_yellow.svg new file mode 100644 index 00000000..2d5f5f41 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ymeter_yellow.svg @@ -0,0 +1,166 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_dn.svg new file mode 100644 index 00000000..e6f50ea3 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_dn.svg @@ -0,0 +1,88 @@ + + + + + ypane_up + + + + + + image/svg+xml + + ypane_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + x/ypane_up + + + + + + ypane_dn + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_hi.svg new file mode 100644 index 00000000..d1116e98 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_hi.svg @@ -0,0 +1,88 @@ + + + + + ypane_up + + + + + + image/svg+xml + + ypane_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + x/ypane_up + + + + + + ypane_hi + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_up.svg new file mode 100644 index 00000000..6eb3730b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/ypane_up.svg @@ -0,0 +1,143 @@ + + + + + ypane_up + + + + + + image/svg+xml + + ypane_up + 2018-08-16 + + + Olaf + + + 2018-08-16: new. + x/ypane_up + + + + + + + Unknown use. + + + ypane_dn + ypane_hi + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_dn.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_dn.svg new file mode 100644 index 00000000..5ee72be0 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_dn.svg @@ -0,0 +1,185 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_hi.svg new file mode 100644 index 00000000..9088b644 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_hi.svg @@ -0,0 +1,219 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_up.svg new file mode 100644 index 00000000..b22f9c22 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoompopup_up.svg @@ -0,0 +1,246 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_bottom.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_bottom.svg new file mode 100644 index 00000000..ca1dcc31 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_bottom.svg @@ -0,0 +1,159 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_hi.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_hi.svg new file mode 100644 index 00000000..fde5d825 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_hi.svg @@ -0,0 +1,352 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + + + + + + + + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_top.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_top.svg new file mode 100644 index 00000000..b850507b --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_top.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_up.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_up.svg new file mode 100644 index 00000000..ef7fa747 --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/zoomtumble_up.svg @@ -0,0 +1,211 @@ + + + + + + + + image/svg+xml + + + 2018-08-01 + + + Olaf + + + 2018-08-01: adapted. + + + + + + + + + + + + + + + + + + + + Hauptfenster + + + + + + + + see: recordpatch_up + + diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/about_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/about_bg.png index eb6ec510..0fc5cd6c 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/about_bg.png and b/cinelerra-5.1/plugins/theme_neophyte/data/about_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/allsvgstopngs.sh b/cinelerra-5.1/plugins/theme_neophyte/data/allsvgstopngs.sh new file mode 100755 index 00000000..90be545e --- /dev/null +++ b/cinelerra-5.1/plugins/theme_neophyte/data/allsvgstopngs.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# This is a little utility that make all pngs that this theme needs + +if [ -z "$(which inkscape)" ]; then + echo "Error: program inkscape not found." + exit 1 +fi + +var="$@" +if [ -z "$var" ]; then + SOURCE=$(ls -1 Source | grep '\.svg$' | grep -v '_all.svg$\|^0\.[0-9A-Za-z].*\.svg$') + echo $(echo "$SOURCE" | wc -l) SVG files found. + Z=0 + for i in $SOURCE ; do + let Z+=1 + echo " [$Z] Convert: $i ..." + inkscape -e $(basename "$i" .svg).png Source/"$i" + done +else + for i in $@; do + case "$i" in + *.svg) inkscape -e $(basename "$i" .svg).png "$i" ;; + *) echo "Error: This program only converts SVG to PNG." ;; + esac + done +fi diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png b/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png index 781bf91b..84e63e9a 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png and b/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.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 index 02602b90..dde296fd 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_right.png and b/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_right.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 index 3e168548..ebc3ae10 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/channel_position.png and b/cinelerra-5.1/plugins/theme_neophyte/data/channel_position.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 index 667214af..aae8c14e 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/clip_icon.png and b/cinelerra-5.1/plugins/theme_neophyte/data/clip_icon.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 index 0e8b1655..0c94fc10 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/cmeter_bg.png and b/cinelerra-5.1/plugins/theme_neophyte/data/cmeter_bg.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 index fad9ed65..3b7a9196 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_dn.png 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 index a9377da6..f0d6c991 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_hi.png 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 index 1934b8e0..92d4558b 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_point.png 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 index e2fef63c..95021362 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/color3way_up.png and b/cinelerra-5.1/plugins/theme_neophyte/data/color3way_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 index a1eae6e0..2a1ee21a 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png and b/cinelerra-5.1/plugins/theme_neophyte/data/commercial.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 index 3cbcaf72..cefff2f2 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/downmix51_2.png and b/cinelerra-5.1/plugins/theme_neophyte/data/downmix51_2.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/end.png b/cinelerra-5.1/plugins/theme_neophyte/data/end.png index fda18376..2c3008b1 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/end.png and b/cinelerra-5.1/plugins/theme_neophyte/data/end.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png b/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png index 65272f61..93521a93 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png 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 index 66e68927..d60ef4fe 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/framerev.png and b/cinelerra-5.1/plugins/theme_neophyte/data/framerev.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 index be61e60c..8ae14108 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/heroine_icon.png and b/cinelerra-5.1/plugins/theme_neophyte/data/heroine_icon.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 index 9412b773..6e89c60b 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/histogram_toggle.png and b/cinelerra-5.1/plugins/theme_neophyte/data/histogram_toggle.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_ressource.png b/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_ressource.png deleted file mode 100644 index 9fa29a04..00000000 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_ressource.png and /dev/null 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 index 5ccacf6d..6d3f86ae 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png and b/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_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 index 4b779075..7cafe987 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png and b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.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 index 04fb4003..91ea8767 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/menubar_hi.png and b/cinelerra-5.1/plugins/theme_neophyte/data/menubar_hi.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 index 1c8a01ec..ea03d78b 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/mode_dn.png and b/cinelerra-5.1/plugins/theme_neophyte/data/mode_dn.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 index 6dfc38a2..dfd04f0c 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png and b/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png b/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png index eda6e056..081e6faf 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png and b/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png b/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png index 8e79dfb5..a5300f81 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png and b/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/over.png b/cinelerra-5.1/plugins/theme_neophyte/data/over.png index 9b2f5df7..26863479 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/over.png and b/cinelerra-5.1/plugins/theme_neophyte/data/over.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 index 4d4be8b5..7781f3cf 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/pan_hi.png 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 index 10c0fc9f..19bc428b 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/pan_popup.png 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 index 5108788d..7e4fd5b3 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick.png and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick.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 index 356809d5..265f37e4 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/pan_up.png and b/cinelerra-5.1/plugins/theme_neophyte/data/pan_up.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/play.png b/cinelerra-5.1/plugins/theme_neophyte/data/play.png index 4384b7ae..ba4fa00f 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/play.png and b/cinelerra-5.1/plugins/theme_neophyte/data/play.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 index 39eaef2a..a3057f4b 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_dn.png and b/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_dn.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png b/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png index 3b89d2ee..56cde89f 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png and b/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.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 index fa30e1a6..f520b9e6 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkd.png 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 index e71d17d7..9a9b6d53 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkdhi.png 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 index e36b8da1..69e8eddb 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_down.png 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 index df13dc36..f8fb1f3b 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_hi.png 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 index 13041f94..9c25190e 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_up.png 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 index 9fb6eefc..197e6a14 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkd.png 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 index 7c13bb52..ddcd9faf 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkdhi.png 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 index e36b8da1..69e8eddb 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_down.png 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 index d03ee34c..7333b07a 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_hi.png 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 index a69d8fa3..7dba5222 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_up.png 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 index dd853b27..572acb32 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/radial_checked.png 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 index 1bd3f413..ade9322c 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/radial_checkedhi.png 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 index 00e139dd..ece2ba33 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/radial_dn.png 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 index 3337428d..16a2e3a4 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/radial_hi.png 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 index f5b8f4fb..82c64807 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/radial_up.png and b/cinelerra-5.1/plugins/theme_neophyte/data/radial_up.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 index f98cc8a8..06cd7125 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_up.png 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 deleted file mode 100644 index 68163757..00000000 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/rect2818-9.png and /dev/null 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 deleted file mode 100644 index bee9ccba..00000000 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/rect2820-9.png and /dev/null differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png b/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png index 3fe73732..cc56702e 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png and b/cinelerra-5.1/plugins/theme_neophyte/data/rewind.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 index 83d74b4d..0e76d8af 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/setformat_bg.png and b/cinelerra-5.1/plugins/theme_neophyte/data/setformat_bg.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png index c34c3cb5..27d14498 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png and b/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png b/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png index 552f48f0..18559d6c 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png 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 index 6596811f..24b1960e 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/transporthi.png and b/cinelerra-5.1/plugins/theme_neophyte/data/transporthi.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 index bec37b81..357e0b4f 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_left.png and b/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_left.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_right.png b/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_right.png new file mode 100644 index 00000000..6c11cb98 Binary files /dev/null and b/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_right.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png b/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png index 90a45d59..8cc15f13 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png and b/cinelerra-5.1/plugins/theme_neophyte/data/vclock.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 index 58ca69a5..60d96b62 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_up.png and b/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_up.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 index 2c033bfc..d579d3a4 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_green.png and b/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_green.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 index a5985879..83ff2e25 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_red.png 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 index d697a8d5..f85ebea8 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_white.png 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 index 741c9851..02ed50ec 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_yellow.png 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 index 80a7337f..ef31e281 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xpane_dn.png 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 index 436c0803..6e209afc 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xpane_hi.png 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 index 007cf7a0..080c2dd6 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/xpane_up.png 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 index 5f43f2bc..977c0e02 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_green.png and b/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_green.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 index 68ce0a56..fa176371 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_red.png 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 index 8db53765..1d159a7c 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_white.png 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 index e7c6e338..df720588 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_yellow.png 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 index 2f7c4dee..2f64b273 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/ypane_dn.png 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 index dff6eae9..d59f1145 100644 Binary files a/cinelerra-5.1/plugins/theme_neophyte/data/ypane_hi.png and b/cinelerra-5.1/plugins/theme_neophyte/data/ypane_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_neophyte/neophyte.C b/cinelerra-5.1/plugins/theme_neophyte/neophyte.C index a18bd905..4bc9f521 100644 --- a/cinelerra-5.1/plugins/theme_neophyte/neophyte.C +++ b/cinelerra-5.1/plugins/theme_neophyte/neophyte.C @@ -54,10 +54,9 @@ #define BlackSevenTwo 0x474747 // 72% black #define BlackEightFive 0x262626 // 85% black #define BlackFive 0xf2f2f2 // 5% black -#define BabyBlue 0x5f8dd3 // baby-blue +#define BabyBlue 0x5f8dd3 #define BabyBlueDark 0x162d50 // baby-blue -3 (inkscape), e.g. dialog Subtitle -// traffic lights -// light green 0x27ae60/0x37c871 - just on the buttons. +// traffic lights, light green: 0x27ae60/0x37c871 - just on the buttons. #define ComicYellow 0xffcc00 // heads up! #define DarkRed 0xaa0000 // locked or not switched on. #define LockedRed 0x400000 @@ -68,7 +67,7 @@ PluginClient* new_plugin(PluginServer *server) } NEOPHYTETHEMEMain::NEOPHYTETHEMEMain(PluginServer *server) - : PluginTClient(server) + : PluginTClient(server) { } @@ -87,7 +86,7 @@ Theme* NEOPHYTETHEMEMain::new_theme() } NEOPHYTETHEME::NEOPHYTETHEME() - : Theme() + : Theme() { } @@ -106,50 +105,58 @@ void NEOPHYTETHEME::initialize() { BC_Resources *resources = BC_WindowBase::get_resources(); - // something own, fitting to the theme and independent of the integrated splash screen/about - about_bg = new VFramePng(get_image_data("about_bg.png")); // Preferences: About (logo) - // new_image("mwindow_icon", "cinelerra_icon_mwin.png"); // replacement for the heroine icon, maybe - // new_image("vwindow_icon", "cinelerra_icon_vwin.png"); - // new_image("cwindow_icon", "cinelerra_icon_cwin.png"); - // new_image("awindow_icon", "cinelerra_icon_awin.png"); - // new_image("record_icon", "cinelerra_icon_rec.png"); + /* Something own, fitting to the theme and independent of + the integrated splash screen/about */ + // Preferences: About (logo) + about_bg = new VFramePng(get_image_data("about_bg.png")); + + /* Replacement for the heroine icon, maybe. Everyone has his + own ideas about this, especially in connection with the + new desktops[tm]. It would be better to solve this globally, + irrespective of the theme currently in use. */ + // new_image("mwindow_icon", "cin_icon_mwin.png"); + // new_image("vwindow_icon", "cin_icon_vwin.png"); + // new_image("cwindow_icon", "cin_icon_cwin.png"); + // new_image("awindow_icon", "cin_icon_awin.png"); + // new_image("record_icon", "cin_icon_rec.png"); resources->text_default = CreamyWhite; // general text color - resources->text_background = BlackNineTwo; // + resources->text_background = BlackNineTwo; resources->text_background_disarmed = LockedRed; // arm track locked (!) - - resources->text_border2 = BlackNineTwo; // l,t outside - resources->text_border1 = BLACK; // l,t inside - resources->text_border3 = BlackSevenTwo; // r,d inside - resources->text_border4 = BlackNineTwo; // r,d outside - resources->text_border2_hi = ComicYellow; // highlighting on mouseover - resources->text_border3_hi = ComicYellow; - - resources->text_inactive_highlight = BabyBlueDark; // e.g. Subtitle (double click on inactive text, choose next or prev and be amazed). + resources->text_border2 = BlackNineTwo; // l,t outside + resources->text_border1 = BLACK; // l,t inside + resources->text_border3 = BlackSevenTwo; // r,d inside + resources->text_border4 = BlackNineTwo; // r,d outside + resources->text_border2_hi = ComicYellow; // highlighting on mouseover + resources->text_border3_hi = ComicYellow; + resources->text_inactive_highlight = BabyBlueDark; /* e.g. Subtitle (double click + on inactive text, choose next or + prev and be amazed). */ resources->text_highlight = BabyBlue; resources->bg_color = BlackEightFive; - resources->border_light2 = resources->bg_color; + resources->border_light2 = resources->bg_color; resources->border_shadow2 = resources->bg_color; - resources->default_text_color = CreamyWhite; // Timeline, dialogs and much more. - resources->menu_title_text = WHITE; // high contrast - resources->popup_title_text = WHITE; // - resources->menu_item_text = WHITE; // + resources->default_text_color = CreamyWhite; // Timeline, dialogs and much more. + resources->menu_title_text = WHITE; // high contrast + resources->popup_title_text = WHITE; + resources->menu_item_text = WHITE; - resources->menu_highlighted_fontcolor = CreamyWhiteBright; - resources->generic_button_margin = 20; // [15] (Pref top right, 17) + resources->menu_highlighted_fontcolor = CreamyWhiteBright; + resources->generic_button_margin = 20; // [15] (Pref top right: ~17) resources->pot_needle_color = CreamyWhite; // [resources->text_default] – marginal resources->pot_offset = 1; // only the needle resources->progress_text = resources->text_default; resources->meter_font_color = resources->default_text_color; - resources->menu_light = BlackEightFive; // the following four are overwritten by graphics - resources->menu_down = ALARM; // - resources->menu_up = ALARM; // - resources->menu_shadow = ALARM; // + // the following four are overwritten by graphics + resources->menu_light = BlackEightFive; + resources->menu_down = ALARM; + resources->menu_up = ALARM; + resources->menu_shadow = ALARM; - resources->menu_highlighted = BabyBlue; // + resources->menu_highlighted = BabyBlue; resources->popupmenu_margin = 15; // indent, moves the button text to the right resources->popupmenu_triangle_margin = 15; @@ -157,208 +164,205 @@ void NEOPHYTETHEME::initialize() resources->listbox_title_margin = 15; // [20] indent resources->listbox_title_hotspot = 15; // [20] - resources->listbox_border2 = BlackNineTwo; // as text_border - resources->listbox_border1 = BLACK; - resources->listbox_border3 = BlackSevenTwo; - resources->listbox_border4 = BlackNineTwo; - // ../../guicast/bcresources.C:684: - resources->listbox_border2_hi = BabyBlue; // highlighting on mouseover - resources->listbox_border3_hi = BabyBlue; + resources->listbox_border2 = BlackNineTwo; // as text_border + resources->listbox_border1 = BLACK; + resources->listbox_border3 = BlackSevenTwo; + resources->listbox_border4 = BlackNineTwo; + // ../../guicast/bcresources.C:684, highlighting on mouseover + resources->listbox_border2_hi = BabyBlue; + resources->listbox_border3_hi = BabyBlue; resources->listbox_highlighted = BabyBlue; // recources, loadfiles - resources->listbox_inactive = BlackNineTwo; // background - resources->listbox_bg = 0; // see ../theme_blond_cv/blondcvtheme.C:249 - resources->listbox_text = CreamyWhite; // - resources->listbox_selected = 0x3d5477; // approximately matches column_hi + resources->listbox_inactive = BlackNineTwo; // background + resources->listbox_bg = 0; // s.a. ../theme_blond_cv/blondcvtheme.C:249 + resources->listbox_text = CreamyWhite; + resources->listbox_selected = 0x3d5477; // approximately matches column_hi resources->filebox_margin = 130; // [130] resources->file_color = WHITE; resources->directory_color = BabyBlue; - // Footage in the timeline - title_font = MEDIUMFONT; // ../../guicast/fonts.h + // Footage in the timeline + title_font = MEDIUMFONT; title_color = WHITE; - // Because the colors of the text in the list are fixed. So it is at least uniform. - recordgui_fixed_color = YELLOW; // - recordgui_variable_color = RED; // [RED] + /* Because the colors of the text in the list are fixed. + So it is at least uniform. */ + recordgui_fixed_color = YELLOW; + recordgui_variable_color = RED; - channel_position_color = ComicYellow; // Set Format, speaker numbers + channel_position_color = ComicYellow; // Set Format, speaker numbers resources->meter_title_w = 25; - // (asset) edit info text color - edit_font_color = ComicYellow; // ? ../../cinelerra/theme.h:282 - assetedit_color = CreamyWhiteBright; // variable attributes + // (asset) edit info text color + edit_font_color = ComicYellow; // ? ../../cinelerra/theme.h:282 + assetedit_color = CreamyWhiteBright; // variable attributes - // flash_color = ALARM; // ../../cinelerra/recordgui.C:135 - timebar_cursor_color = WHITE; // ../../cinelerra/theme.C:73 + // flash_color = ALARM; // ../../cinelerra/recordgui.C:135 + timebar_cursor_color = WHITE; // ../../cinelerra/theme.C:73 - // tooltip ../../guicast/bcresources.C:786 - resources->tooltip_bg_color = CreamyWhiteBright; - // resources->tooltip_fg_color = ALARM; // undefined. - resources->tooltip_delay = 1500; // [1000] + // tooltip ../../guicast/bcresources.C:786 + resources->tooltip_bg_color = CreamyWhiteBright; + // resources->tooltip_fg_color = ALARM; // undefined. + resources->tooltip_delay = 1500; // [1000] - // Waveform of audio tracks. - // Instead of squeaky [GREEN]. This three are soft, warm and matte. - // 848661 beige - // 6d876f green - // 665f8a purple + /* Waveform of audio tracks. + Instead of squeaky [GREEN]. This three are soft, warm and matte: + 848661 beige, 6d876f green, 665f8a purple */ audio_color = 0x6d876f; - // Resources: the text overlay location display. What for? - // Affects a) Preferences, Performace: BR "Video" (text). - // b) Render. - resources->audiovideo_color = CreamyWhite; // BlackNineTwo; + /* Resources: the text overlay location display. Affects + a) Preferences, Performace: BR "Video" (text). + b) Render. */ + resources->audiovideo_color = CreamyWhite; // BlackNineTwo; - // ../../guicast/bcresources.C-781 ff.: Delays must all be different for repeaters - resources->blink_rate = 750; // [250] - we're not on the run. + /* ../../guicast/bcresources.C:781 ff. + Delays must all be different for repeaters */ + resources->blink_rate = 750; // [250] - we're not on the run. + + // ../../cinelerra/theme.C:87 + clock_fg_color = ComicYellow; + // clock_bg_color = ALARM; // see vclock - // ../../cinelerra/theme.C:87 - // clock_bg_color = BLACK; // -> vclock - clock_fg_color = ComicYellow; - new_toggle( - "loadmode_new.png", - "loadmode_up.png", - "loadmode_hi.png", - "loadmode_checked.png", - "loadmode_dn.png", - "loadmode_checkedhi.png", - "loadmode_new"); + "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"); + "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"); + "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"); + "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"); + "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"); + "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"); + "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"); - + "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", + "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", + 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", + 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", + 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", + 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", + 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", + 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", + 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_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", + 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_button( + "cancel.png", "new_bigbutton_up.png", "new_bigbutton_hi.png", "new_bigbutton_dn.png", "new_cancel_images"); - - // Clock - is not used (AFAIK). See also clock color. + // Clock - is not used (AFAIK). See also clock color. // resources->medium_7segment = new_image_set(TOTAL_7SEGMENT, - // "0.png", + // "0.png", // "1.png", // "2.png", // "3.png", @@ -384,112 +388,120 @@ void NEOPHYTETHEME::initialize() resources->min_menu_w = 96; resources->menu_popup_bg = new_image("menu_popup_bg.png"); - resources->menu_item_bg = new_image_set(3, + 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->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", + // 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"); + 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, + 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", + resources->listbox_button = new_button4( + "listbox_button.png", "editpanel_up.png", "editpanel_hi.png", "editpanel_dn.png", "editpanel_hi.png", "listbox_button"); - - // Dialog "Load files…" switch SI/IEC - resources->filebox_szfmt_images = new_image_set(12, - "file_size_capb_up.png", - "file_size_capb_hi.png", - "file_size_capb_dn.png", - "file_size_semi_up.png", - "file_size_semi_hi.png", - "file_size_semi_dn.png", - "file_size_lwrb_up.png", - "file_size_lwrb_hi.png", - "file_size_lwrb_dn.png", - "file_size_zero_up.png", - "file_size_zero_hi.png", - "file_size_zero_dn.png"); - - resources->listbox_column = new_image_set(3, + // Dialog "Load files…" switch SI/IEC + resources->filebox_szfmt_images = new_image_set( + 12, + "file_size_capb_up.png", + "file_size_capb_hi.png", + "file_size_capb_dn.png", + "file_size_semi_up.png", + "file_size_semi_hi.png", + "file_size_semi_dn.png", + "file_size_lwrb_up.png", + "file_size_lwrb_hi.png", + "file_size_lwrb_dn.png", + "file_size_zero_up.png", + "file_size_zero_hi.png", + "file_size_zero_dn.png"); + 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_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 = CreamyWhiteBright; - - resources->pot_images = new_image_set(3, + resources->pot_images = new_image_set( + 3, "pot_up.png", "pot_hi.png", "pot_dn.png"); - - resources->checkbox_images = new_image_set(5, + 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, + 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, + resources->xmeter_images = new_image_set( + 7, "xmeter_normal.png", "xmeter_green.png", "xmeter_red.png", @@ -497,7 +509,8 @@ void NEOPHYTETHEME::initialize() "xmeter_white.png", "xmeter_over.png", "downmix51_2.png"); - resources->ymeter_images = new_image_set(7, + resources->ymeter_images = new_image_set( + 7, "ymeter_normal.png", "ymeter_green.png", "ymeter_red.png", @@ -505,42 +518,46 @@ void NEOPHYTETHEME::initialize() "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->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 + + 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; @@ -549,15 +566,22 @@ void NEOPHYTETHEME::initialize() preferencesoptions_x = 5; preferencesoptions_y = 0; -// MWindow + // MWindow message_normal = resources->text_default; - mtransport_margin = 10; + 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_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"); @@ -565,12 +589,20 @@ void NEOPHYTETHEME::initialize() 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("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"); @@ -579,22 +611,41 @@ void NEOPHYTETHEME::initialize() 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"); - - // Mixer - new_image_set("mixpatch_data", 5, "mixpatch_up.png", "mixpatch_hi.png", "mixpatch_checked.png", "mixpatch_dn.png", "mixpatch_checkedhi.png"); - -// CWindow + 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"); + + // Mixer + new_image_set("mixpatch_data", 5, + "mixpatch_up.png", + "mixpatch_hi.png", + "mixpatch_checked.png", + "mixpatch_dn.png", + "mixpatch_checkedhi.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 + + // VWindow + /* The red position indicator is currently only 5 px high. + The backgrounds were made according to this. */ new_image("vbuttons_left", "vbuttons_left.png"); + new_image("vbuttons_right", "vbuttons_right.png"); // unset = cbuttons_right new_image("vclock", "vclock.png"); - + //new_image("vmeter_bg", ".png"); // ! + new_image("preferences_bg", "preferences_bg.png"); new_image("new_bg", "new_bg.png"); @@ -606,7 +657,6 @@ void NEOPHYTETHEME::initialize() setformat_h = get_image("setformat_bg")->get_h(); setformat_x1 = 15; setformat_x2 = 110; - setformat_x3 = 315; setformat_x4 = 425; setformat_y1 = 20; @@ -622,117 +672,115 @@ void NEOPHYTETHEME::initialize() browse_pad = 20; new_toggle("playpatch.png", - "playpatch_up.png", - "playpatch_hi.png", - "playpatch_checked.png", - "playpatch_dn.png", - "playpatch_checkedhi.png", - "playpatch_data"); - + "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"); - + "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"); - + "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"); + "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"); - + 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"); + 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_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_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, + 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, + 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_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 use ffmpeg scaler + proxy_s_toggle = new_image_set( // proxy use ffmpeg scaler + 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_data = new_image_set( + 3, "shbtn_up.png", "shbtn_hi.png", "shbtn_dn.png"); - - new_image_set("preset_edit", + new_image_set( + "preset_edit", 3, "preset_edit0.png", "preset_edit1.png", "preset_edit2.png"); - - new_image_set("histogram_carrot", + 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_data = new_image_set( + 3, "statusbar_cancel_up.png", "statusbar_cancel_hi.png", "statusbar_cancel_dn.png"); @@ -744,127 +792,223 @@ void NEOPHYTETHEME::initialize() 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_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"); + 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"); + 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"); + 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"); + 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"); + 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"); // cdb + 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_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"); - + 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"); - + 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"); + 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"); + 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"); @@ -872,35 +1016,137 @@ void NEOPHYTETHEME::initialize() 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"); - + 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"); + 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(); - } -// BD: CWINDOW is probalby ComposerWindow, V=ViewerWindow -#define VWINDOW_METER_MARGIN 5 -//#define CWINDOW_METER_MARGIN 5 +// Re-align the Clock. theme.c:931 +void NEOPHYTETHEME::get_vwindow_sizes(VWindowGUI *gui) +{ + int edit_w = EditPanel::calculate_w(mwindow, 0, 10); + int transport_w = PlayTransport::get_transport_width(mwindow) + toggle_margin; + vtimebar_h = 16; // The height of the position indicator + int division_w = 30; + + /* For the deco, [150]-10. The remaining space should theoretically + suffice for 999,999:59:59.960 hours. Total size: 140 x 26, where + a height of 24 or 22 px would be nicer. */ + vtime_w = 140; + + /* Indent, flat. Larger indentation also puts + the 35% view into the compact view. */ + int vtime_border = 15; + + vmeter_y = widget_border; + vmeter_h = mwindow->session->vwindow_h - cmeter_y - widget_border; + + int buttons_h; + if (mwindow->edl->session->vwindow_meter) { + vmeter_x = mwindow->session->vwindow_w - + MeterPanel::get_meters_width(this, + mwindow->edl->session->audio_channels, + mwindow->edl->session->vwindow_meter); + } else { + vmeter_x = mwindow->session->vwindow_w + widget_border; + } + + vcanvas_x = 0; + vcanvas_y = 0; + vcanvas_w = vmeter_x - vcanvas_x - widget_border; + + if (edit_w + + widget_border * 2 + + transport_w + widget_border + + vtime_w + division_w + + vtime_border > vmeter_x) { + buttons_h = get_image("vbuttons_left")->get_h(); + vedit_x = widget_border; + vedit_y = mwindow->session->vwindow_h - + buttons_h + + vtimebar_h + + widget_border; + + vtransport_x = widget_border; + vtransport_y = mwindow->session->vwindow_h - + get_image_set("autokeyframe")[0]->get_h() - + widget_border; + + vdivision_x = 280; // field width, compact + vtime_x = vedit_x + 38; // concentric + vtime_y = vedit_y + 24; // vertical alignment + } else { + buttons_h = vtimebar_h + + widget_border + + EditPanel::calculate_h(mwindow) + + widget_border; + vtransport_x = widget_border; + vtransport_y = mwindow->session->vwindow_h - + buttons_h + + vtimebar_h + + widget_border; + + vedit_x = vtransport_x + transport_w + widget_border; + vedit_y = vtransport_y; + + vdivision_x = vedit_x + edit_w + division_w; + vtime_x = vdivision_x + vtime_border; + vtime_y = vedit_y + widget_border - 7; // vertical height concentric at button height + } + + // vtimebar_x = vcanvas_x; + // vtimebar_y = vcanvas_y + vcanvas_h; + // vtimebar_w = vcanvas_w; + + vcanvas_h = mwindow->session->vwindow_h - buttons_h; + vtimebar_x = 0; + vtimebar_y = vcanvas_y + vcanvas_h; + vtimebar_w = vmeter_x - widget_border; +} void NEOPHYTETHEME::build_bg_data() { -// Audio settings + // Audio settings channel_position_data = new VFramePng(get_image_data("channel_position.png")); - -// Track bitmaps + // Track bitmaps new_image("resource1024", "resource1024.png"); new_image("resource512", "resource512.png"); new_image("resource256", "resource256.png"); @@ -917,119 +1163,112 @@ 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")); + 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); + // 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); + // 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 + // Button bar gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1, - gui->menu_w(), get_image("mbutton_bg")); + 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 + 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 + 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 - toggle_margin / 2 - pdw / 2 + 2, + mbuttons_y - 1); - x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons + 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 + 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 + 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 + 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 + 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 + mtimebar_y, + mtimebar_w, + get_image("timebar_bg")); + // Zoombar gui->set_color(BlackNineTwo); 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 + 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")); - + mzoom_y, + mzoom_w, + get_image("statusbar")); } void NEOPHYTETHEME::draw_cwindow_bg(CWindowGUI *gui) @@ -1041,57 +1280,54 @@ void NEOPHYTETHEME::draw_cwindow_bg(CWindowGUI *gui) if(mwindow->edl->session->cwindow_meter) { gui->draw_3segmenth(cstatus_x, - ccomposite_h, - cmeter_x - widget_border - cstatus_x, - get_image("cbuttons_right")); + 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 - { + 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")); + 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")); + 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")); + vcanvas_h, + vmeter_x - widget_border - vdivision_x, + get_image("vbuttons_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 - { + 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")); + vcanvas_h, + vmeter_x - widget_border - vdivision_x + 100, + get_image("vbuttons_right")); } -// Clock border - gui->draw_3segmenth(vtime_x - 20, - vtime_y - 1, - vtime_w + 40, + // Clock deco + gui->draw_3segmenth( + vtime_x - 5, // -left, +right + vtime_y + 0, // -up, +down. Careful, move some of the buttons as well. + vtime_w + 10, // protruded l/r x*2 get_image("vclock")); -} +} void NEOPHYTETHEME::draw_preferences_bg(PreferencesWindow *gui) { @@ -1107,5 +1343,3 @@ 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 index 586c0993..23974396 100644 --- a/cinelerra-5.1/plugins/theme_neophyte/neophyte.h +++ b/cinelerra-5.1/plugins/theme_neophyte/neophyte.h @@ -41,16 +41,14 @@ public: 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); + void get_vwindow_sizes(VWindowGUI *gui); private: void build_bg_data();