1 #ifndef SOURCESCOMMON_H 2 #define SOURCESCOMMON_H 4 #include <QModelIndexList> 11 class QAbstractItemView;
20 QAbstractItemView* view;
21 void show_context_menu(QWidget* parent,
const QModelIndexList &items);
23 void mousePressEvent(QMouseEvent* e);
24 void mouseDoubleClickEvent(QMouseEvent* e,
const QModelIndexList& selected_items);
25 void dropEvent(QWidget *parent, QDropEvent* e,
const QModelIndex& drop_item,
const QModelIndexList &items);
27 void item_click(
Media* m,
const QModelIndex &index);
29 void create_seq_from_selected();
30 void reveal_in_browser();
31 void rename_interval();
32 void item_renamed(
Media *item);
35 void open_create_proxy_dialog();
36 void clear_proxies_from_selected();
39 QModelIndex editing_index;
40 QModelIndexList selected_items;
42 void stop_rename_timer();
46 QVector<Footage*> cached_selected_footage;
49 #endif // SOURCESCOMMON_H
Definition: sourcescommon.h:16