X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ffolderlistmenu.h;h=3ffc576fdaf082350dda93c522cefe24a1f434ff;hb=7fa4ccc2c91d37f20f3618261e4cbaa9d5d3c740;hp=41f0860c1f9306033b0149cf829be5560e3b9f24;hpb=4b6c39e6cf4a3fd9c1b347db6de686ab55d6cac8;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/folderlistmenu.h b/cinelerra-5.1/cinelerra/folderlistmenu.h index 41f0860c..3ffc576f 100644 --- a/cinelerra-5.1/cinelerra/folderlistmenu.h +++ b/cinelerra-5.1/cinelerra/folderlistmenu.h @@ -37,6 +37,48 @@ public: FolderListMenu *menu; }; +class FolderListSort : public BC_MenuItem +{ +public: + FolderListSort(MWindow *mwindow, FolderListMenu *menu); + + int handle_event(); + MWindow *mwindow; + 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: