add x10tv ati remote rework, android remote rework, wintv remote tweaks
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / assetpopup.C
index 156d86ab7ba84d520ac3bafa2bfd428a64c9eec3..51e3f886a609b0e7c3f97db366045c37a26c1b90 100644 (file)
@@ -76,13 +76,16 @@ void AssetPopup::create_objects()
        BC_SubMenu *submenu;
        add_item(info = new AssetPopupInfo(mwindow, this));
        add_item(format = new AWindowListFormat(mwindow, gui));
-       add_item(new AssetPopupSort(mwindow, this));
+       add_item(open_edl = new AssetPopupOpenEDL(mwindow, this));
+       add_item(close_edl = new AssetPopupCloseEDL(mwindow, gui));
+       add_item(to_clip = new AssetPopupToClip(mwindow, this));
+       add_item(sort = new AssetPopupSort(mwindow, this));
        add_item(index = new AssetPopupBuildIndex(mwindow, this));
        add_item(view = new AssetPopupView(mwindow, this));
        add_item(view_window = new AssetPopupViewWindow(mwindow, this));
        add_item(open_mixer = new AssetPopupOpenMixer(mwindow, this));
        add_item(insert_mixer = new AssetPopupInsertMixer(mwindow, this));
-       add_item(new AssetPopupPaste(mwindow, this));
+       add_item(paste = new AssetPopupPaste(mwindow, this));
        add_item(menu_item = new BC_MenuItem(_("Match...")));
        menu_item->add_submenu(submenu = new BC_SubMenu());
        submenu->add_submenuitem(new AssetMatchSize(mwindow, this));
@@ -143,6 +146,28 @@ int AssetPopup::update()
        format->update();
        int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0;
        gui->collect_assets(proxy);
+       int enable_open = 0;
+       int assets_total = mwindow->session->drag_assets->size();
+       Indexable *idxbl = !assets_total ? 0 :
+               mwindow->session->drag_assets->get(0);
+       if( idxbl ) {
+               if( idxbl->is_asset ) {
+                       Asset *asset = (Asset *)idxbl;
+                       if( asset->format == FILE_REF )
+                               enable_open = 1;
+               }
+               else
+                       enable_open = 1;
+       }
+       open_edl->set_enabled(enable_open);
+       int enable_close = mwindow->stack.size() > 0 ? 1 : 0;
+       close_edl->set_enabled(enable_close);
+       int enable_clip = 0;
+       for( int i=0; !enable_clip && i<assets_total; ++i ) {
+               Indexable *idxbl = mwindow->session->drag_assets->get(i);
+               if( !idxbl->is_asset ) enable_clip = 1;
+       }
+       to_clip->set_enabled(enable_clip);
        return 0;
 }
 
@@ -179,6 +204,91 @@ int AssetPopupInfo::handle_event()
 }
 
 
+AssetPopupOpenEDL::AssetPopupOpenEDL(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Open EDL"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
+AssetPopupOpenEDL::~AssetPopupOpenEDL()
+{
+}
+
+int AssetPopupOpenEDL::handle_event()
+{
+       int assets_total = mwindow->session->drag_assets->size();
+       if( !assets_total ) return 1;
+       popup->unlock_window();
+       EDL *edl = 0;
+       Indexable *idxbl = mwindow->session->drag_assets->get(0);
+       if( idxbl->is_asset ) {
+               Asset *asset = (Asset *)idxbl;
+               if( asset->format == FILE_REF ) {
+                       FileXML xml_file;
+                       const char *filename = asset->path;
+                       if( xml_file.read_from_file(filename, 1) ) {
+                               eprintf(_("Error: unable to open:\n  %s"), filename);
+                               return 1;
+                       }
+                       edl = new EDL;
+                       edl->create_objects();
+                       if( edl->load_xml(&xml_file, LOAD_ALL) ) {
+                               eprintf(_("Error: unable to load:\n  %s"), filename);
+                               edl->remove_user();
+                               return 1;
+                       }
+               }
+       }
+       else {
+               edl = (EDL *)idxbl;
+       }
+       if( edl )
+               mwindow->stack_push(edl, idxbl);
+       else
+               eprintf(_("media is not EDL:\n%s"), idxbl->path);
+       popup->lock_window("AssetPopupOpenEDL::handle_event");
+       return 1;
+}
+
+AssetPopupCloseEDL::AssetPopupCloseEDL(MWindow *mwindow, AWindowGUI *gui)
+ : BC_MenuItem(_("Close EDL"))
+{
+       this->mwindow = mwindow;
+       this->gui = gui;
+}
+AssetPopupCloseEDL::~AssetPopupCloseEDL()
+{
+}
+
+int AssetPopupCloseEDL::handle_event()
+{
+       gui->unlock_window();
+       mwindow->gui->lock_window("AssetPopupCloseEDL::handle_event");
+       mwindow->stack_pop();
+       mwindow->gui->unlock_window();
+       gui->lock_window("AssetPopupCloseEDL::handle_event");
+       return 1;
+}
+
+
+AssetPopupToClip::AssetPopupToClip(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("EDL to clip"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
+
+AssetPopupToClip::~AssetPopupToClip()
+{
+}
+
+int AssetPopupToClip::handle_event()
+{
+       mwindow->media_to_clip();
+       return 1;
+}
+
+
 AssetPopupBuildIndex::AssetPopupBuildIndex(MWindow *mwindow, AssetPopup *popup)
  : BC_MenuItem(_("Rebuild index"))
 {
@@ -416,16 +526,13 @@ AssetListMenu::AssetListMenu(MWindow *mwindow, AWindowGUI *gui)
 
 AssetListMenu::~AssetListMenu()
 {
-       if( !shots_displayed ) {
-               delete asset_snapshot;
-               delete asset_grabshot;
-       }
 }
 
 void AssetListMenu::create_objects()
 {
        add_item(load_file = new AssetPopupLoadFile(mwindow, gui));
        add_item(format = new AWindowListFormat(mwindow, gui));
+       add_item(close_edl = new AssetPopupCloseEDL(mwindow, gui));
        add_item(select_used = new AssetSelectUsed(mwindow, gui));
        BC_SubMenu *submenu;
        select_used->add_submenu(submenu = new BC_SubMenu());
@@ -450,7 +557,7 @@ void AssetListMenu::create_objects()
        grabshot_submenu->add_submenuitem(new GrabshotMenuItem(grabshot_submenu, _("jpeg"), GRABSHOT_JPEG));
        grabshot_submenu->add_submenuitem(new GrabshotMenuItem(grabshot_submenu, _("tiff"), GRABSHOT_TIFF));
        grabshot_submenu->add_submenuitem(new GrabshotMenuItem(grabshot_submenu, _("ppm"),  GRABSHOT_PPM));
-       update_titles(shots_displayed = 1);
+       update_titles(1);
 }
 
 AssetPopupLoadFile::AssetPopupLoadFile(MWindow *mwindow, AWindowGUI *gui)
@@ -473,16 +580,10 @@ int AssetPopupLoadFile::handle_event()
 void AssetListMenu::update_titles(int shots)
 {
        format->update();
-       if( shots && !shots_displayed ) {
-               shots_displayed = 1;
-               add_item(asset_snapshot);
-               add_item(asset_grabshot);
-       }
-       else if( !shots && shots_displayed ) {
-               shots_displayed = 0;
-               remove_item(asset_snapshot);
-               remove_item(asset_grabshot);
-       }
+       int enable_close = mwindow->stack.size() > 0 ? 1 : 0;
+       close_edl->set_enabled(enable_close);
+       asset_snapshot->set_enabled(shots);
+       asset_grabshot->set_enabled(shots);
 }
 
 AssetListCopy::AssetListCopy(MWindow *mwindow, AWindowGUI *gui)
@@ -686,7 +787,8 @@ void AssetPasteDialog::handle_done_event(int result)
        MWindow *mwindow = paste->mwindow;
        mwindow->interrupt_indexes();
        mwindow->gui->lock_window("AssetPasteDialog::handle_done_event");
-       result = mwindow->load_filenames(&path_list, LOADMODE_RESOURCESONLY, 0);
+       result = mwindow->load_filenames(&path_list,
+               LOADMODE_RESOURCESONLY, LOADMODE_EDL_CLIP, 0);
        mwindow->gui->unlock_window();
        path_list.remove_all_objects();
        mwindow->save_backup();