X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fconvert.h;h=41c125c9b6977626b24f9cc1867ebe0cdb17743b;hp=36c2c8c7c9cc74f04950750b5654868559f8ab3a;hb=HEAD;hpb=3abbd84aa85907d646b13c98295ce778d2a71215 diff --git a/cinelerra-5.1/cinelerra/convert.h b/cinelerra-5.1/cinelerra/convert.h index 36c2c8c7..53463205 100644 --- a/cinelerra-5.1/cinelerra/convert.h +++ b/cinelerra-5.1/cinelerra/convert.h @@ -1,3 +1,23 @@ +/* + * CINELERRA + * Copyright (C) 2008 Adam Williams + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + #ifndef __CONVERT_H__ #define __CONVERT_H__ @@ -61,7 +81,7 @@ public: // if user canceled progress bar int is_canceled(); - void set_format(Asset *asset, const char *suffix); + void set_format(Asset *asset, const char *suffix, int to_proxy); void start_convert(float beep, int remove_originals); void run(); void create_copy(int i); @@ -74,11 +94,13 @@ public: MainProgressBar *progress; ConvertProgress *convert_progress; Timer *progress_timer; + ConvertPackageRenderer *renderer; Mutex *counter_lock; int total_rendered, remove_originals; int failed, canceled, result; float beep; + int to_proxy; }; class ConvertMenuItem : public BC_MenuItem @@ -125,6 +147,17 @@ public: ConvertWindow *gui; }; +class ConvertToProxyPath : public BC_CheckBox +{ +public: + ConvertToProxyPath(ConvertWindow *gui, int x, int y); + ~ConvertToProxyPath(); + + int handle_event(); + + ConvertWindow *gui; +}; + class ConvertBeepOnDone : public BC_FPot { public: @@ -139,7 +172,7 @@ class ConvertPackageRenderer : public PackageRenderer { public: ConvertPackageRenderer(ConvertRender *render); - ~ConvertPackageRenderer(); + virtual ~ConvertPackageRenderer(); int get_master(); int get_result(); @@ -178,6 +211,7 @@ public: ConvertSuffixText *suffix_text; ConvertFormatTools *format_tools; ConvertRemoveOriginals *remove_originals; + ConvertToProxyPath *to_proxy_path; ConvertBeepOnDone *beep_on_done; }; @@ -202,6 +236,7 @@ public: int orig_w, orig_h; int remove_originals; float beep; + int to_proxy; }; #endif