X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fpluginclient.h;h=b59d71fd40376a48b9c4852f41a904ae83d32ca8;hb=a95193c3fd88733d184f2d460eca1fe6ddf8af28;hp=260a0edad2e8c1bb55bf5704a39df75a9707a91f;hpb=f110e7626d433b4724befe0871a3a35f9f81f264;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/pluginclient.h b/cinelerra-5.1/cinelerra/pluginclient.h index 260a0eda..b59d71fd 100644 --- a/cinelerra-5.1/cinelerra/pluginclient.h +++ b/cinelerra-5.1/cinelerra/pluginclient.h @@ -160,6 +160,7 @@ public: virtual int translation_event(); virtual int close_event(); + virtual void done_event(int result) {} PluginClient *client; }; @@ -178,7 +179,7 @@ public: BC_WindowBase* get_window(); PluginClient* get_client(); - BC_WindowBase *window; + PluginClientWindow *window; PluginClient *client; private: @@ -278,7 +279,7 @@ public: virtual void update_gui(); virtual void save_data(KeyFrame *keyframe) {}; // write the plugin settings to text in text format virtual void read_data(KeyFrame *keyframe) {}; // read the plugin settings from the text - int send_hide_gui(); // should be sent when the GUI recieves a close event from the user + int send_hide_gui(); // should be sent when the GUI receives a close event from the user // Destroys the window but not the thread pointer. void hide_gui(); @@ -506,13 +507,13 @@ public: int interactive; // for the progress bar plugin int success; int total_out_buffers; // total send buffers allocated by the server - int total_in_buffers; // total recieve buffers allocated by the server + int total_in_buffers; // total receive buffers allocated by the server int wr, rd; // File permissions for fileio plugins. // These give the largest fragment the plugin is expected to handle. // size of a send buffer to the server int64_t out_buffer_size; -// size of a recieve buffer from the server +// size of a receive buffer from the server int64_t in_buffer_size;