rework histogram_bezier, init wm icon set_icon(gg), update de.po+msg/txt
[goodguy/history.git] / cinelerra-5.1 / cinelerra / pluginclient.h
index 260a0edad2e8c1bb55bf5704a39df75a9707a91f..b59d71fd40376a48b9c4852f41a904ae83d32ca8 100644 (file)
@@ -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;