X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fassetpopup.h;h=d6c3136e5a3c9e873ba85115b2f02c2f23081cf8;hb=b75f0c6910f5f1e1094f17874cd404e3f0faee8c;hp=e0611ecf8ba81d9c5d46b6a7d07388daec49f9c5;hpb=4b6c39e6cf4a3fd9c1b347db6de686ab55d6cac8;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/assetpopup.h b/cinelerra-5.1/cinelerra/assetpopup.h index e0611ecf..d6c3136e 100644 --- a/cinelerra-5.1/cinelerra/assetpopup.h +++ b/cinelerra-5.1/cinelerra/assetpopup.h @@ -206,12 +206,13 @@ public: class AssetListCopy : public BC_MenuItem { public: - AssetListCopy(MWindow *mwindow); + AssetListCopy(MWindow *mwindow, AWindowGUI *gui); ~AssetListCopy(); int handle_event(); MWindow *mwindow; + AWindowGUI *gui; AssetCopyDialog *copy_dialog; }; @@ -221,12 +222,13 @@ public: AssetCopyDialog(AssetListCopy *copy); ~AssetCopyDialog(); - void start(char *text); + void start(char *text, int x, int y); BC_Window* new_gui(); void handle_done_event(int result); void handle_close_event(int result); char *text; + int x, y; AssetListCopy *copy; AssetCopyWindow *copy_window; }; @@ -234,10 +236,11 @@ public: class AssetCopyWindow : public BC_Window { public: - AssetCopyWindow(AssetCopyDialog *copy_dialog, int x, int y); + AssetCopyWindow(AssetCopyDialog *copy_dialog); ~AssetCopyWindow(); void create_objects(); + int resize_event(int w, int h); AssetCopyDialog *copy_dialog; BC_ScrollTextBox *file_list; @@ -246,12 +249,13 @@ public: class AssetListPaste : public BC_MenuItem { public: - AssetListPaste(MWindow *mwindow); + AssetListPaste(MWindow *mwindow, AWindowGUI *gui); ~AssetListPaste(); int handle_event(); MWindow *mwindow; + AWindowGUI *gui; AssetPasteDialog *paste_dialog; }; @@ -264,18 +268,21 @@ public: BC_Window* new_gui(); void handle_done_event(int result); void handle_close_event(int result); + void start(int x, int y); AssetListPaste *paste; AssetPasteWindow *paste_window; + int x, y; }; class AssetPasteWindow : public BC_Window { public: - AssetPasteWindow(AssetPasteDialog *paste_dialog, int x, int y); + AssetPasteWindow(AssetPasteDialog *paste_dialog); ~AssetPasteWindow(); void create_objects(); + int resize_event(int w, int h); AssetPasteDialog *paste_dialog; BC_ScrollTextBox *file_list;