X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Ftitler%2Ftitler.h;h=c047f990542ef95747f3f621f665a4cf9ce9eec2;hb=9e3d90a964c0fbe97c0b58235336a47111932d5d;hp=cf4a203791f41c8143014b8ebd5a41d2c0ad4e6d;hpb=bb755e4be7602e9e2705fdb49a76e49dbb2c5008;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/plugins/titler/titler.h b/cinelerra-5.1/plugins/titler/titler.h index cf4a2037..c047f990 100644 --- a/cinelerra-5.1/plugins/titler/titler.h +++ b/cinelerra-5.1/plugins/titler/titler.h @@ -161,7 +161,7 @@ public: double fade_in, fade_out; float pixels_per_second; // Speed of motion // Text to display - wchar_t *wtext; + wchr_t *wtext; long wsize, wlen; // Position in frame relative to top left float title_x, title_y; @@ -233,7 +233,7 @@ public: // Position of each image box in a row class TitleChar { public: - wchar_t wch; + wchr_t wch; int typ, flags; void *vp; int x, y; @@ -502,7 +502,7 @@ public: class TitleParser { - const wchar_t *bfr, *out, *lmt; + const wchr_t *bfr, *out, *lmt; public: TitleMain *plugin; @@ -511,9 +511,9 @@ public: bool eof() { return out >= lmt; } int wcur() { return eof() ? -1 : *out; } int wnext() { return eof() ? -1 : *out++; } - int wget(wchar_t &wch); - int tget(wchar_t &wch); - wchar_t wid[BCSTRLEN], wtxt[BCTEXTLEN]; + int wget(wchr_t &wch); + int tget(wchr_t &wch); + wchr_t wid[BCSTRLEN], wtxt[BCTEXTLEN]; char id[BCSTRLEN], text[BCTEXTLEN]; int set_attributes(int ret); @@ -587,7 +587,7 @@ public: void update_gui(); void save_data(KeyFrame *keyframe); void read_data(KeyFrame *keyframe); - void insert_text(const wchar_t *wtxt, int pos); + void insert_text(const wchr_t *wtxt, int pos); void build_previews(TitleWindow *gui); void reset_render();