add audio to proxy, and minor bug fixes
[goodguy/history.git] / cinelerra-5.1 / cinelerra / assetpopup.C
index f85b05c08c2983bdfb737ab865e8e942121fb07e..15620af7a34c35f0f5d4950a445fe0dc5fbec782 100644 (file)
  *
  */
 
+#include "asset.h"
 #include "assetedit.h"
 #include "assetpopup.h"
 #include "assetremove.h"
+#include "assets.h"
 #include "awindow.h"
 #include "awindowgui.h"
-#include "awindowmenu.h"
+#include "bccapture.h"
+#include "bcdisplayinfo.h"
 #include "bcsignals.h"
+#include "cache.h"
 #include "clipedit.h"
+#include "cstrdup.h"
 #include "cwindow.h"
 #include "cwindowgui.h"
 #include "edl.h"
+#include "edlsession.h"
+#include "file.h"
+#include "filexml.h"
 #include "language.h"
 #include "localsession.h"
+#include "mainerror.h"
 #include "mainindexes.h"
 #include "mainsession.h"
 #include "mwindow.h"
 #include "mwindowgui.h"
+#include "preferences.h"
+#include "renderengine.h"
 #include "tracks.h"
+#include "transportque.h"
+#include "vframe.h"
+#include "vrender.h"
 #include "vwindow.h"
 #include "vwindowgui.h"
-
+#include "zwindow.h"
 
 
 AssetPopup::AssetPopup(MWindow *mwindow, AWindowGUI *gui)
- : BC_PopupMenu(0,
-               0,
-               0,
-               "",
-               0)
+ : BC_PopupMenu(0, 0, 0, "", 0)
 {
        this->mwindow = mwindow;
        this->gui = gui;
@@ -59,18 +69,28 @@ AssetPopup::~AssetPopup()
 
 void AssetPopup::create_objects()
 {
-//     add_item(format = new AssetListFormat(mwindow));
+       BC_MenuItem *menu_item;
+       BC_SubMenu *submenu;
        add_item(info = new AssetPopupInfo(mwindow, this));
-       add_item(new AssetPopupSort(mwindow, this));
+       add_item(format = new AWindowListFormat(mwindow, gui));
+       add_item(menu_item = new BC_MenuItem(_("Sort...")));
+       menu_item->add_submenu(submenu = new BC_SubMenu());
+       submenu->add_submenuitem(new AssetPopupSortNames(mwindow, this));
+       submenu->add_submenuitem(new AssetPopupSortTimes(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(mixer = new AssetPopupMixer(mwindow, this));
        add_item(new AssetPopupPaste(mwindow, this));
-       add_item(new AssetMatchSize(mwindow, this));
-       add_item(new AssetMatchRate(mwindow, this));
-       add_item(new AssetMatchAll(mwindow, this));
-       add_item(new AssetPopupProjectRemove(mwindow, this));
-       add_item(new AssetPopupDiskRemove(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));
+       submenu->add_submenuitem(new AssetMatchRate(mwindow, this));
+       submenu->add_submenuitem(new AssetMatchAll(mwindow, this));
+       add_item(menu_item = new BC_MenuItem(_("Remove...")));
+       menu_item->add_submenu(submenu = new BC_SubMenu());
+       submenu->add_submenuitem(new AssetPopupProjectRemove(mwindow, this));
+       submenu->add_submenuitem(new AssetPopupDiskRemove(mwindow, this));
 }
 
 void AssetPopup::paste_assets()
@@ -80,10 +100,11 @@ void AssetPopup::paste_assets()
        mwindow->gui->lock_window("AssetPopup::paste_assets");
        mwindow->cwindow->gui->lock_window("AssetPopup::paste_assets");
 
-       gui->collect_assets();
+       int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0;
+       gui->collect_assets(proxy);
        mwindow->paste_assets(mwindow->edl->local_session->get_selectionstart(1),
-               mwindow->edl->tracks->first,
-               0);   // do not overwrite
+               mwindow->edl->tracks->first, 0);   // do not overwrite
+       mwindow->session->clear_drag_proxy();
 
        gui->unlock_window();
        mwindow->gui->unlock_window();
@@ -119,19 +140,13 @@ void AssetPopup::match_all()
 
 int AssetPopup::update()
 {
-//     format->update();
-       gui->collect_assets();
+       format->update();
+       int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0;
+       gui->collect_assets(proxy);
        return 0;
 }
 
 
-
-
-
-
-
-
-
 AssetPopupInfo::AssetPopupInfo(MWindow *mwindow, AssetPopup *popup)
  : BC_MenuItem(_("Info..."))
 {
@@ -145,25 +160,24 @@ AssetPopupInfo::~AssetPopupInfo()
 
 int AssetPopupInfo::handle_event()
 {
-       if(mwindow->session->drag_assets->total)
-       {
-               mwindow->awindow->asset_edit->edit_asset(
-                       mwindow->session->drag_assets->values[0]);
+       int cur_x, cur_y;
+       popup->gui->get_abs_cursor(cur_x, cur_y);
+       int n = mwindow->session->drag_assets->size();
+       if( n > 0 ) {
+               for( int i=0; i<n; ++i ) {
+                       AssetEdit *asset_edit = mwindow->awindow->get_asset_editor();
+                       asset_edit->edit_asset(
+                               mwindow->session->drag_assets->values[i], cur_x-30*i, cur_y-30*i);
+               }
        }
-       else
-       if(mwindow->session->drag_clips->total)
-       {
+       else if( mwindow->session->drag_clips->size() ) {
                popup->gui->awindow->clip_edit->edit_clip(
-                       mwindow->session->drag_clips->values[0]);
+                       mwindow->session->drag_clips->values[0], cur_x, cur_y);
        }
        return 1;
 }
 
 
-
-
-
-
 AssetPopupBuildIndex::AssetPopupBuildIndex(MWindow *mwindow, AssetPopup *popup)
  : BC_MenuItem(_("Rebuild index"))
 {
@@ -183,32 +197,39 @@ int AssetPopupBuildIndex::handle_event()
 }
 
 
-
-
-
-
-
-AssetPopupSort::AssetPopupSort(MWindow *mwindow, AssetPopup *popup)
- : BC_MenuItem(_("Sort items"))
+AssetPopupSortNames::AssetPopupSortNames(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Sort names"))
 {
        this->mwindow = mwindow;
        this->popup = popup;
 }
 
-AssetPopupSort::~AssetPopupSort()
+AssetPopupSortNames::~AssetPopupSortNames()
 {
 }
 
-int AssetPopupSort::handle_event()
+int AssetPopupSortNames::handle_event()
 {
-       mwindow->awindow->gui->sort_assets();
+       mwindow->awindow->gui->sort_assets(0);
        return 1;
 }
 
+AssetPopupSortTimes::AssetPopupSortTimes(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Sort times"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
 
+AssetPopupSortTimes::~AssetPopupSortTimes()
+{
+}
 
-
-
+int AssetPopupSortTimes::handle_event()
+{
+       mwindow->awindow->gui->sort_assets(1);
+       return 1;
+}
 
 
 AssetPopupView::AssetPopupView(MWindow *mwindow, AssetPopup *popup)
@@ -225,26 +246,19 @@ AssetPopupView::~AssetPopupView()
 int AssetPopupView::handle_event()
 {
        VWindow *vwindow = mwindow->get_viewer(1, DEFAULT_VWINDOW);
-       vwindow->gui->lock_window("AssetPopupView::handle_event");
 
-       if(mwindow->session->drag_assets->total)
+       if( mwindow->session->drag_assets->total )
                vwindow->change_source(
                        mwindow->session->drag_assets->values[0]);
        else
-       if(mwindow->session->drag_clips->total)
+       if( mwindow->session->drag_clips->total )
                vwindow->change_source(
                        mwindow->session->drag_clips->values[0]);
 
-       vwindow->gui->unlock_window();
        return 1;
 }
 
 
-
-
-
-
-
 AssetPopupViewWindow::AssetPopupViewWindow(MWindow *mwindow, AssetPopup *popup)
  : BC_MenuItem(_("View in new window"))
 {
@@ -258,29 +272,39 @@ AssetPopupViewWindow::~AssetPopupViewWindow()
 
 int AssetPopupViewWindow::handle_event()
 {
-// Find window with nothing
-       VWindow *vwindow = mwindow->get_viewer(1);
-
-// TODO: create new vwindow or change current vwindow
-       vwindow->gui->lock_window("AssetPopupView::handle_event");
-
-       if(mwindow->session->drag_assets->total)
-               vwindow->change_source(
-                       mwindow->session->drag_assets->values[0]);
-       else
-       if(mwindow->session->drag_clips->total)
-               vwindow->change_source(
-                       mwindow->session->drag_clips->values[0]);
-
-       vwindow->gui->unlock_window();
+       for( int i=0; i<mwindow->session->drag_assets->size(); ++i ) {
+               VWindow *vwindow = mwindow->get_viewer(1);
+               vwindow->gui->lock_window("AssetPopupView::handle_event 1");
+               vwindow->change_source(mwindow->session->drag_assets->get(i));
+               vwindow->gui->unlock_window();
+       }
+       for( int i=0; i<mwindow->session->drag_clips->size(); ++i ) {
+               VWindow *vwindow = mwindow->get_viewer(1);
+               vwindow->gui->lock_window("AssetPopupView::handle_event 2");
+               vwindow->change_source(mwindow->session->drag_clips->get(i));
+               vwindow->gui->unlock_window();
+       }
        return 1;
 }
 
+AssetPopupMixer::AssetPopupMixer(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Open Mixers"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
 
+AssetPopupMixer::~AssetPopupMixer()
+{
+}
 
-
-
-
+int AssetPopupMixer::handle_event()
+{
+       mwindow->gui->lock_window("AssetPopupMixer::handle_event");
+       mwindow->create_mixers();
+       mwindow->gui->unlock_window();
+       return 1;
+}
 
 AssetPopupPaste::AssetPopupPaste(MWindow *mwindow, AssetPopup *popup)
  : BC_MenuItem(_("Paste"))
@@ -300,122 +324,761 @@ int AssetPopupPaste::handle_event()
 }
 
 
+AssetMatchSize::AssetMatchSize(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Match project size"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
+
+int AssetMatchSize::handle_event()
+{
+       popup->match_size();
+       return 1;
+}
 
+AssetMatchRate::AssetMatchRate(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Match frame rate"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
 
+int AssetMatchRate::handle_event()
+{
+       popup->match_rate();
+       return 1;
+}
 
+AssetMatchAll::AssetMatchAll(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Match all"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
 
+int AssetMatchAll::handle_event()
+{
+       popup->match_all();
+       return 1;
+}
 
 
-AssetMatchSize::AssetMatchSize(MWindow *mwindow, AssetPopup *popup)
- : BC_MenuItem(_("Match project size"))
+AssetPopupProjectRemove::AssetPopupProjectRemove(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Remove from project"))
 {
        this->mwindow = mwindow;
        this->popup = popup;
 }
 
-int AssetMatchSize::handle_event()
+AssetPopupProjectRemove::~AssetPopupProjectRemove()
 {
-       popup->match_size();
+}
+
+int AssetPopupProjectRemove::handle_event()
+{
+       mwindow->remove_assets_from_project(1, 1,
+               mwindow->session->drag_assets,
+               mwindow->session->drag_clips);
        return 1;
 }
 
 
+AssetPopupDiskRemove::AssetPopupDiskRemove(MWindow *mwindow, AssetPopup *popup)
+ : BC_MenuItem(_("Remove from disk"))
+{
+       this->mwindow = mwindow;
+       this->popup = popup;
+}
 
 
+AssetPopupDiskRemove::~AssetPopupDiskRemove()
+{
+}
 
+int AssetPopupDiskRemove::handle_event()
+{
+       mwindow->awindow->asset_remove->start();
+       return 1;
+}
 
 
+AssetListMenu::AssetListMenu(MWindow *mwindow, AWindowGUI *gui)
+ : BC_PopupMenu(0, 0, 0, "", 0)
+{
+       this->mwindow = mwindow;
+       this->gui = gui;
+}
 
-AssetMatchRate::AssetMatchRate(MWindow *mwindow, AssetPopup *popup)
- : BC_MenuItem(_("Match frame rate"))
+AssetListMenu::~AssetListMenu()
+{
+       if( !shots_displayed ) {
+               delete asset_snapshot;
+               delete asset_grabshot;
+       }
+}
+
+void AssetListMenu::create_objects()
+{
+       add_item(format = new AWindowListFormat(mwindow, gui));
+       add_item(new AWindowListSort(mwindow, gui));
+       add_item(new AssetListCopy(mwindow, gui));
+       add_item(new AssetListPaste(mwindow, gui));
+       SnapshotSubMenu *snapshot_submenu;
+       add_item(asset_snapshot = new AssetSnapshot(mwindow, this));
+       asset_snapshot->add_submenu(snapshot_submenu = new SnapshotSubMenu(asset_snapshot));
+       snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("png"),  SNAPSHOT_PNG));
+       snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("jpeg"), SNAPSHOT_JPEG));
+       snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("tiff"), SNAPSHOT_TIFF));
+       snapshot_submenu->add_submenuitem(new SnapshotMenuItem(snapshot_submenu, _("ppm"),  SNAPSHOT_PPM));
+       GrabshotSubMenu *grabshot_submenu;
+       add_item(asset_grabshot = new AssetGrabshot(mwindow, this));
+       asset_grabshot->add_submenu(grabshot_submenu = new GrabshotSubMenu(asset_grabshot));
+       grabshot_submenu->add_submenuitem(new GrabshotMenuItem(grabshot_submenu, _("png"),  GRABSHOT_PNG));
+       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);
+}
+
+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);
+       }
+}
+
+AssetListCopy::AssetListCopy(MWindow *mwindow, AWindowGUI *gui)
+ : BC_MenuItem(_("Copy file list"))
 {
        this->mwindow = mwindow;
-       this->popup = popup;
+       this->gui = gui;
+       copy_dialog = 0;
+}
+AssetListCopy::~AssetListCopy()
+{
+       delete copy_dialog;
 }
 
-int AssetMatchRate::handle_event()
+int AssetListCopy::handle_event()
 {
-       popup->match_rate();
+       int len = 0;
+       MWindowGUI *gui = mwindow->gui;
+       gui->lock_window("AssetListCopy::handle_event");
+       mwindow->awindow->gui->collect_assets();
+       int n = mwindow->session->drag_assets->total;
+       for( int i=0; i<n; ++i ) {
+               Indexable *indexable = mwindow->session->drag_assets->values[i];
+               const char *path = indexable->path;
+               if( !*path ) continue;
+               len += strlen(path) + 1;
+       }
+       char *text = new char[len+1], *cp = text;
+       for( int i=0; i<n; ++i ) {
+               Indexable *indexable = mwindow->session->drag_assets->values[i];
+               const char *path = indexable->path;
+               if( !*path ) continue;
+               cp += sprintf(cp, "%s\n", path);
+       }
+       *cp = 0;
+       int cur_x, cur_y;
+       gui->get_abs_cursor(cur_x, cur_y, 0);
+       gui->unlock_window(); 
+
+       if( n ) {
+               if( !copy_dialog )
+                       copy_dialog = new AssetCopyDialog(this);
+               copy_dialog->start(text, cur_x, cur_y);
+       }
+       else {
+               eprintf(_("Nothing selected"));
+               delete [] text;
+       }
        return 1;
 }
 
+AssetCopyDialog::AssetCopyDialog(AssetListCopy *copy)
+ : BC_DialogThread()
+{
+       this->copy = copy;
+       copy_window = 0;
+}
 
+void AssetCopyDialog::start(char *text, int x, int y)
+{
+       close_window();
+       this->text = text;
+       this->x = x;  this->y = y;
+       BC_DialogThread::start();
+}
 
+AssetCopyDialog::~AssetCopyDialog()
+{
+       close_window();
+}
 
+BC_Window* AssetCopyDialog::new_gui()
+{
+       BC_DisplayInfo display_info;
 
+       copy_window = new AssetCopyWindow(this);
+       copy_window->create_objects();
+       return copy_window;
+}
 
+void AssetCopyDialog::handle_done_event(int result)
+{
+       delete [] text;  text = 0;
+}
 
+void AssetCopyDialog::handle_close_event(int result)
+{
+       copy_window = 0;
+}
 
-AssetMatchAll::AssetMatchAll(MWindow *mwindow, AssetPopup *popup)
- : BC_MenuItem(_("Match all"))
+
+AssetCopyWindow::AssetCopyWindow(AssetCopyDialog *copy_dialog)
+ : BC_Window(_(PROGRAM_NAME ": Copy File List"),
+       copy_dialog->x - 500/2, copy_dialog->y - 200/2,
+       500, 200, 500, 200, 1, 0, 1)
+{
+       this->copy_dialog = copy_dialog;
+}
+
+AssetCopyWindow::~AssetCopyWindow()
+{
+}
+
+void AssetCopyWindow::create_objects()
+{
+       BC_Title *title;
+       int x = 10, y = 10, pad = 5;
+       add_subwindow(title = new BC_Title(x, y, _("List of asset paths:")));
+       y += title->get_h() + pad;
+       int text_w = get_w() - x - 10;
+       int text_h = get_h() - y - BC_OKButton::calculate_h() - pad;
+       int text_rows = BC_TextBox::pixels_to_rows(this, MEDIUMFONT, text_h);
+       char *text = copy_dialog->text;
+       int len = strlen(text) + BCTEXTLEN;
+       file_list = new BC_ScrollTextBox(this, x, y, text_w, text_rows, text, len);
+       file_list->create_objects();
+
+       add_subwindow(new BC_OKButton(this));
+       show_window();
+}
+
+int AssetCopyWindow::resize_event(int w, int h)
+{
+       int fx = file_list->get_x(), fy = file_list->get_y(), pad = 5;
+       int text_w = w - fx - 10;
+       int text_h = h - fy - BC_OKButton::calculate_h() - pad;
+       int text_rows = BC_TextBox::pixels_to_rows(this, MEDIUMFONT, text_h);
+       file_list->reposition_window(fx, fy, text_w, text_rows);
+       return 0;
+}
+
+AssetListPaste::AssetListPaste(MWindow *mwindow, AWindowGUI *gui)
+ : BC_MenuItem(_("Paste file list"))
 {
        this->mwindow = mwindow;
-       this->popup = popup;
+       this->gui = gui;
+       paste_dialog = 0;
+}
+AssetListPaste::~AssetListPaste()
+{
+       delete paste_dialog;
 }
 
-int AssetMatchAll::handle_event()
+int AssetListPaste::handle_event()
 {
-       popup->match_all();
+       if( !paste_dialog )
+               paste_dialog = new AssetPasteDialog(this);
+       else
+               paste_dialog->close_window();
+       int cur_x, cur_y;
+       gui->get_abs_cursor(cur_x, cur_y, 0);
+       paste_dialog->start(cur_x, cur_y);
        return 1;
 }
 
+AssetPasteDialog::AssetPasteDialog(AssetListPaste *paste)
+ : BC_DialogThread()
+{
+       this->paste = paste;
+       paste_window = 0;
+}
 
+AssetPasteDialog::~AssetPasteDialog()
+{
+       close_window();
+}
 
+BC_Window* AssetPasteDialog::new_gui()
+{
+       paste_window = new AssetPasteWindow(this);
+       paste_window->create_objects();
+       return paste_window;
+}
 
+void AssetPasteDialog::handle_done_event(int result)
+{
+       if( result ) return;
+       const char *bp = paste_window->file_list->get_text(), *ep = bp+strlen(bp);
+       ArrayList<char*> path_list;
+       path_list.set_array_delete();
+
+       for( const char *cp=bp; cp<ep && *cp; ) {
+               const char *dp = strchr(cp, '\n');
+               if( !dp ) dp = ep;
+               char path[BCTEXTLEN], *pp = path;
+               int len = sizeof(path)-1;
+               while( --len>0 && cp<dp ) *pp++ = *cp++;
+               if( *cp ) ++cp;
+               *pp = 0;
+               if( !strlen(path) ) continue;
+               path_list.append(cstrdup(path));
+       }
+       if( !path_list.size() ) return;
 
+       MWindow *mwindow = paste->mwindow;
+       mwindow->interrupt_indexes();
+       mwindow->gui->lock_window("AssetPasteDialog::handle_done_event");
+       result = mwindow->load_filenames(&path_list, LOADMODE_RESOURCESONLY, 0);
+       mwindow->gui->unlock_window();
+       path_list.remove_all_objects();
+       mwindow->save_backup();
+       mwindow->restart_brender();
+       mwindow->session->changes_made = 1;
+}
 
+void AssetPasteDialog::handle_close_event(int result)
+{
+       paste_window = 0;
+}
 
+void AssetPasteDialog::start(int x, int y)
+{
+       this->x = x;  this->y = y;
+       BC_DialogThread::start();
+}
 
+AssetPasteWindow::AssetPasteWindow(AssetPasteDialog *paste_dialog)
+ : BC_Window(_(PROGRAM_NAME ": Paste File List"),
+       paste_dialog->x - 500/2, paste_dialog->y - 200/2,
+       500, 200, 500, 200, 1, 0, 1)
+{
+       this->paste_dialog = paste_dialog;
+}
 
+AssetPasteWindow::~AssetPasteWindow()
+{
+}
 
+void AssetPasteWindow::create_objects()
+{
+       BC_Title *title;
+       int x = 10, y = 10, pad = 5;
+       add_subwindow(title = new BC_Title(x, y, _("Enter list of asset paths:")));
+       y += title->get_h() + pad;
+       int text_w = get_w() - x - 10;
+       int text_h = get_h() - y - BC_OKButton::calculate_h() - pad;
+       int text_rows = BC_TextBox::pixels_to_rows(this, MEDIUMFONT, text_h);
+       file_list = new BC_ScrollTextBox(this, x, y, text_w, text_rows, (char*)0, 65536);
+       file_list->create_objects();
+       add_subwindow(new BC_OKButton(this));
+       add_subwindow(new BC_CancelButton(this));
+       show_window();
+}
 
+int AssetPasteWindow::resize_event(int w, int h)
+{
+       int fx = file_list->get_x(), fy = file_list->get_y(), pad = 5;
+       int text_w = w - fx - 10;
+       int text_h = h - fy - BC_OKButton::calculate_h() - pad;
+       int text_rows = BC_TextBox::pixels_to_rows(this, MEDIUMFONT, text_h);
+       file_list->reposition_window(fx, fy, text_w, text_rows);
+       return 0;
+}
 
 
 
-AssetPopupProjectRemove::AssetPopupProjectRemove(MWindow *mwindow, AssetPopup *popup)
- : BC_MenuItem(_("Remove from project"))
+AssetSnapshot::AssetSnapshot(MWindow *mwindow, AssetListMenu *asset_list_menu)
+ : BC_MenuItem(_("Snapshot..."))
 {
        this->mwindow = mwindow;
-       this->popup = popup;
+       this->asset_list_menu = asset_list_menu;
 }
 
+AssetSnapshot::~AssetSnapshot()
+{
+}
 
+SnapshotSubMenu::SnapshotSubMenu(AssetSnapshot *asset_snapshot)
+{
+       this->asset_snapshot = asset_snapshot;
+}
 
-AssetPopupProjectRemove::~AssetPopupProjectRemove()
+SnapshotSubMenu::~SnapshotSubMenu()
 {
 }
 
-int AssetPopupProjectRemove::handle_event()
+SnapshotMenuItem::SnapshotMenuItem(SnapshotSubMenu *submenu, const char *text, int mode)
+ : BC_MenuItem(text)
 {
-       mwindow->remove_assets_from_project(1,
-               1,
-               mwindow->session->drag_assets,
-               mwindow->session->drag_clips);
+       this->submenu = submenu;
+       this->mode = mode;
+}
+
+SnapshotMenuItem::~SnapshotMenuItem()
+{
+}
+
+int SnapshotMenuItem::handle_event()
+{
+       MWindow *mwindow = submenu->asset_snapshot->mwindow;
+       EDL *edl = mwindow->edl;
+       if( !edl->have_video() ) return 1;
+
+       Preferences *preferences = mwindow->preferences;
+       char filename[BCTEXTLEN];
+       static const char *exts[] = { "png", "jpg", "tif", "ppm" };
+       time_t tt;     time(&tt);
+       struct tm tm;  localtime_r(&tt,&tm);
+       snprintf(filename,sizeof(filename),"%s/%s_%04d%02d%02d-%02d%02d%02d.%s",
+               preferences->snapshot_path, _("snap"),
+               1900+tm.tm_year,1+tm.tm_mon,tm.tm_mday,
+               tm.tm_hour,tm.tm_min,tm.tm_sec, exts[mode]);
+       int fw = edl->get_w(), fh = edl->get_h();
+       int fcolor_model = edl->session->color_model;
+
+       Asset *asset = new Asset(filename);
+       switch( mode ) {
+       case SNAPSHOT_PNG:
+               asset->format = FILE_PNG;
+               asset->png_use_alpha = 1;
+               break;
+       case SNAPSHOT_JPEG:
+               asset->format = FILE_JPEG;
+               asset->jpeg_quality = 90;
+               break;
+       case SNAPSHOT_TIFF:
+               asset->format = FILE_TIFF;
+               asset->tiff_cmodel = 0;
+               asset->tiff_compression = 0;
+               break;
+       case SNAPSHOT_PPM:
+               asset->format = FILE_PPM;
+               break;
+       }
+       asset->width = fw;
+       asset->height = fh;
+       asset->audio_data = 0;
+       asset->video_data = 1;
+       asset->video_length = 1;
+       asset->layers = 1;
+
+       File file;
+       int processors = preferences->project_smp + 1;
+       if( processors > 8 ) processors = 8;
+       file.set_processors(processors);
+       int ret = file.open_file(preferences, asset, 0, 1);
+       if( !ret ) {
+               file.start_video_thread(1, fcolor_model,
+                       processors > 1 ? 2 : 1, 0);
+               VFrame ***frames = file.get_video_buffer();
+               VFrame *frame = frames[0][0];
+               TransportCommand command;
+               //command.command = audio_tracks ? NORMAL_FWD : CURRENT_FRAME;
+               command.command = CURRENT_FRAME;
+               command.get_edl()->copy_all(edl);
+               command.change_type = CHANGE_ALL;
+               command.realtime = 0;
+
+               RenderEngine render_engine(0, preferences, 0, 0);
+               CICache video_cache(preferences);
+               render_engine.set_vcache(&video_cache);
+               render_engine.arm_command(&command);
+
+               double position = edl->local_session->get_selectionstart(1);
+               int64_t source_position = (int64_t)(position * edl->get_frame_rate());
+               ret = !render_engine.vrender ? 1 :
+                       render_engine.vrender->process_buffer(frame, source_position, 0);
+               if( !ret )
+                       ret = file.write_video_buffer(1);
+               file.close_file();
+       }
+       if( !ret ) {
+               asset->awindow_folder = AW_MEDIA_FOLDER;
+               mwindow->edl->assets->append(asset);
+               mwindow->awindow->gui->async_update_assets();
+       }
+       else {
+               eprintf(_("snapshot render failed"));
+               asset->remove_user();
+       }
        return 1;
 }
 
 
+AssetGrabshot::AssetGrabshot(MWindow *mwindow, AssetListMenu *asset_list_menu)
+ : BC_MenuItem(_("Grabshot..."))
+{
+       this->mwindow = mwindow;
+       this->asset_list_menu = asset_list_menu;
+}
 
+AssetGrabshot::~AssetGrabshot()
+{
+}
 
-AssetPopupDiskRemove::AssetPopupDiskRemove(MWindow *mwindow, AssetPopup *popup)
- : BC_MenuItem(_("Remove from disk"))
+GrabshotSubMenu::GrabshotSubMenu(AssetGrabshot *asset_grabshot)
+{
+       this->asset_grabshot = asset_grabshot;
+}
+
+GrabshotSubMenu::~GrabshotSubMenu()
+{
+}
+
+GrabshotMenuItem::GrabshotMenuItem(GrabshotSubMenu *submenu, const char *text, int mode)
+ : BC_MenuItem(text)
+{
+       this->submenu = submenu;
+       this->mode = mode;
+       grab_thread = 0;
+}
+
+GrabshotMenuItem::~GrabshotMenuItem()
+{
+       delete grab_thread;
+}
+
+int GrabshotMenuItem::handle_event()
+{
+       if( !grab_thread )
+               grab_thread = new GrabshotThread(submenu->asset_grabshot->mwindow);
+       if( !grab_thread->running() )
+               grab_thread->start(this);
+       return 1;
+}
+
+GrabshotThread::GrabshotThread(MWindow *mwindow)
+ : Thread(1, 0, 0)
 {
        this->mwindow = mwindow;
-       this->popup = popup;
+       popup = 0;
+       done = -1;
+}
+GrabshotThread::~GrabshotThread()
+{
+       delete popup;
 }
 
+void GrabshotThread::start(GrabshotMenuItem *menu_item)
+{
+       popup = new GrabshotPopup(this, menu_item->mode);
+       popup->lock_window("GrabshotThread::start");
+       for( int i=0; i<4; ++i )
+               edge[i] = new BC_Popup(mwindow->gui, 0,0, 1,1, ORANGE, 1);
+       mwindow->gui->grab_buttons();
+       mwindow->gui->grab_cursor();
+       popup->grab(mwindow->gui);
+       popup->create_objects();
+       popup->show_window();
+       popup->unlock_window();
+       done = 0;
+       Thread::start();
+}
 
-AssetPopupDiskRemove::~AssetPopupDiskRemove()
+void GrabshotThread::run()
 {
+       popup->lock_window("GrabshotThread::run 0");
+       while( !done ) {
+               popup->update();
+               popup->unlock_window();
+               enable_cancel();
+               Timer::delay(200);
+               disable_cancel();
+               popup->lock_window("GrabshotThread::run 1");
+       }
+       mwindow->gui->ungrab_cursor();
+       mwindow->gui->ungrab_buttons();
+       popup->ungrab(mwindow->gui);
+       for( int i=0; i<4; ++i ) delete edge[i];
+       popup->unlock_window();
+       delete popup;  popup = 0;
 }
 
+GrabshotPopup::GrabshotPopup(GrabshotThread *grab_thread, int mode)
+ : BC_Popup(grab_thread->mwindow->gui, 0,0, 16,16, -1,1)
+{
+       this->grab_thread = grab_thread;
+       this->mode = mode;
+       dragging = -1;
+       grab_color = ORANGE;
+       x0 = y0 = x1 = y1 = -1;
+       lx0 = ly0 = lx1 = ly1 = -1;
+}
+GrabshotPopup::~GrabshotPopup()
+{
+}
 
-int AssetPopupDiskRemove::handle_event()
+int GrabshotPopup::grab_event(XEvent *event)
 {
-       mwindow->awindow->asset_remove->start();
+       int cur_drag = dragging;
+       switch( event->type ) {
+       case ButtonPress:
+               if( cur_drag > 0 ) return 1;
+               x0 = event->xbutton.x_root;
+               y0 = event->xbutton.y_root;
+               if( !cur_drag ) {
+                       draw_selection(-1);
+                       if( event->xbutton.button == RIGHT_BUTTON ) break;
+                       if( x0>=get_x() && x0<get_x()+get_w() &&
+                           y0>=get_y() && y0<get_y()+get_h() ) break;
+               }
+               x1 = x0;  y1 = y0;
+               draw_selection(1);
+               dragging = 1;
+               return 1;
+       case ButtonRelease:
+               dragging = 0;
+       case MotionNotify:
+               if( cur_drag > 0 ) {
+                       x1 = event->xbutton.x_root;
+                       y1 = event->xbutton.y_root;
+                       draw_selection(0);
+               }
+               return 1;
+       default:
+               return 0;
+       }
+
+       int cx = lx0,     cy = ly0;
+       int cw = lx1-lx0, ch = ly1-ly0;
+       hide_window();
+       sync_display();
+       grab_thread->done = 1;
+
+       MWindow *mwindow = grab_thread->mwindow;
+       Preferences *preferences = mwindow->preferences;
+       char filename[BCTEXTLEN];
+       static const char *exts[] = { "png", "jpg", "tif", "ppm" };
+       time_t tt;     time(&tt);
+       struct tm tm;  localtime_r(&tt,&tm);
+       snprintf(filename,sizeof(filename),"%s/%s_%04d%02d%02d-%02d%02d%02d.%s",
+               preferences->snapshot_path, _("grab"),
+               1900+tm.tm_year,1+tm.tm_mon,tm.tm_mday,
+               tm.tm_hour,tm.tm_min,tm.tm_sec, exts[mode]);
+
+       Asset *asset = new Asset(filename);
+       switch( mode ) {
+       case GRABSHOT_PNG:
+               asset->format = FILE_PNG;
+               asset->png_use_alpha = 1;
+               break;
+       case GRABSHOT_JPEG:
+               asset->format = FILE_JPEG;
+               asset->jpeg_quality = 90;
+               break;
+       case GRABSHOT_TIFF:
+               asset->format = FILE_TIFF;
+               asset->tiff_cmodel = 0;
+               asset->tiff_compression = 0;
+               break;
+       case GRABSHOT_PPM:
+               asset->format = FILE_PPM;
+               break;
+       }
+
+// no odd dimensions
+       int rw = get_root_w(0), rh = get_root_h(0);
+       if( cx < 0 ) { cw += cx;  cx = 0; }
+       if( cy < 0 ) { ch += cy;  cy = 0; }
+       if( cx+cw > rw ) cw = rw-cx;
+       if( cy+ch > rh ) ch = rh-cy;
+       if( !cw || !ch ) return 1;
+
+       VFrame vframe(cw,ch, BC_RGB888);
+       if( cx+cw < rw ) ++cw;
+       if( cy+ch < rh ) ++ch;
+       BC_Capture capture_bitmap(cw,ch, 0);
+       capture_bitmap.capture_frame(&vframe, cx,cy);
+
+       asset->width = vframe.get_w();
+       asset->height = vframe.get_h();
+       asset->audio_data = 0;
+       asset->video_data = 1;
+       asset->video_length = 1;
+       asset->layers = 1;
+
+       File file;
+       int fcolor_model = mwindow->edl->session->color_model;
+       int processors = preferences->project_smp + 1;
+       if( processors > 8 ) processors = 8;
+       file.set_processors(processors);
+       int ret = file.open_file(preferences, asset, 0, 1);
+       if( !ret ) {
+               file.start_video_thread(1, fcolor_model,
+                       processors > 1 ? 2 : 1, 0);
+               VFrame ***frames = file.get_video_buffer();
+               VFrame *frame = frames[0][0];
+               frame->transfer_from(&vframe);
+               ret = file.write_video_buffer(1);
+               file.close_file();
+       }
+       if( !ret ) {
+               asset->awindow_folder = AW_MEDIA_FOLDER;
+               mwindow->edl->assets->append(asset);
+               mwindow->awindow->gui->async_update_assets();
+       }
+       else {
+               eprintf(_("grabshot render failed"));
+               asset->remove_user();
+       }
+
        return 1;
 }
 
+void GrabshotPopup::update()
+{
+       set_color(grab_color ^= GREEN);
+       draw_box(0,0, get_w(),get_h());
+       flash(1);
+}
 
+void GrabshotPopup::draw_selection(int show)
+{
+       if( show < 0 ) {
+               for( int i=0; i<4; ++i ) hide_window(0);
+               flush();
+               return;
+       }
 
+       int nx0 = x0 < x1 ? x0 : x1;
+       int nx1 = x0 < x1 ? x1 : x0;
+       int ny0 = y0 < y1 ? y0 : y1;
+       int ny1 = y0 < y1 ? y1 : y0;
+       lx0 = nx0;  lx1 = nx1;  ly0 = ny0;  ly1 = ny1;
+
+       --nx0;  --ny0;
+       BC_Popup **edge = grab_thread->edge;
+       edge[0]->reposition_window(nx0,ny0, nx1-nx0, 1);
+       edge[1]->reposition_window(nx1,ny0, 1, ny1-ny0);
+       edge[2]->reposition_window(nx0,ny1, nx1-nx0, 1);
+       edge[3]->reposition_window(nx0,ny0, 1, ny1-ny0);
+
+       if( show > 0 ) {
+               for( int i=0; i<4; ++i ) edge[i]->show_window(0);
+       }
+       flush();
+}