add clip folders, icon margins, fix safe regions, update neophyte, fix folder edl...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / folderlistmenu.h
index 184e609249a3ec4ff393d551e796202199abdcda..3ffc576fdaf082350dda93c522cefe24a1f434ff 100644 (file)
@@ -47,6 +47,38 @@ public:
        FolderListMenu *menu;
 };
 
+class FolderListNew : public BC_MenuItem
+{
+public:
+       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
+{
+public:
+       FolderListModify(MWindow *mwindow, FolderListMenu *menu);
+
+       int handle_event();
+       MWindow *mwindow;
+       FolderListMenu *menu;
+};
+
+class FolderListDelete : public BC_MenuItem
+{
+public:
+       FolderListDelete(MWindow *mwindow, FolderListMenu *menu);
+
+       int handle_event();
+       MWindow *mwindow;
+       FolderListMenu *menu;
+};
+
 class FolderListMenu : public BC_PopupMenu
 {
 public: