00001 // 00002 // aegis - project change supervisor 00003 // Copyright (C) 1999, 2002, 2005, 2006, 2008 Peter Miller 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program. If not, see 00017 // <http://www.gnu.org/licenses/>. 00018 // 00019 00020 #ifndef LIBAEGIS_OUTPUT_TO_WIDE_H 00021 #define LIBAEGIS_OUTPUT_TO_WIDE_H 00022 00023 #include <libaegis/output.h> 00024 #include <libaegis/wide_output.h> 00025 00030 class output_to_wide: 00031 public output 00032 { 00033 public: 00037 virtual ~output_to_wide(); 00038 00039 private: 00047 output_to_wide(const wide_output::pointer &deeper); 00048 00049 public: 00057 static pointer open(const wide_output::pointer &deeper); 00058 00059 protected: 00060 // See base class for documentation. 00061 nstring filename() const; 00062 00063 // See base class for documentation. 00064 const char *type_name() const; 00065 00066 // See base class for documentation. 00067 long ftell_inner() const; 00068 00069 // See base class for documentation. 00070 void write_inner(const void *data, size_t length); 00071 00072 // See base class for documentation. 00073 void end_of_line_inner(); 00074 00075 // See base class for documentation. 00076 void flush_inner(); 00077 00078 // See base class for documentation. 00079 int page_width() const; 00080 00081 // See base class for documentation. 00082 int page_length() const; 00083 00084 private: 00089 wide_output::pointer deeper; 00090 00091 char *input_buf; 00092 size_t input_len; 00093 size_t input_max; 00094 mbstate_t input_state; 00095 bool input_bol; 00096 wchar_t *output_buf; 00097 size_t output_len; 00098 size_t output_max; 00099 00103 output_to_wide(); 00104 00108 output_to_wide(const output_to_wide &); 00109 00113 output_to_wide &operator=(const output_to_wide &); 00114 }; 00115 00116 #endif // LIBAEGIS_OUTPUT_TO_WIDE_H