00001 /* 00002 * Copyright (c) 2005-2007 cielacanth <cielacanth AT s60.xrea.com> 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions 00007 * are met: 00008 * 1. Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * 2. Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * 00014 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 00015 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00016 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00017 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 00018 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00019 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00020 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00021 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00022 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00023 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00024 * SUCH DAMAGE. 00025 */ 00026 00027 #ifndef __ALICEML_MESSAGE_H__ 00028 #define __ALICEML_MESSAGE_H__ 00029 00030 #include "aliceml.h" 00031 #include "aliceml_array.h" 00032 #include "aliceml_font_cacher.h" 00033 #include "aliceml_text_surface_cacher.h" 00034 #include "aliceml_command_list.h" 00035 #include "aliceml_link_list.h" 00036 #include "aliceml_dirty_rect.h" 00037 #include "aliceml_string.h" 00038 00039 #ifdef __cplusplus 00040 extern "C" { 00041 #endif 00042 00048 struct ML_Message { 00049 ML_Surface *destination; 00050 00051 ML_FontCacher *font_cacher; 00052 ML_TextSurfaceCacher *text_surface_cacher; 00053 00054 ML_Array *font_stack; 00055 ML_Font *font; 00056 00058 ML_Array *context_stack; 00060 ML_Context *context; 00061 00063 ML_CommandList* command_list; 00065 ML_bool command_full; 00066 00068 ML_DirtyRect *dirty_rect; 00070 ML_LinkList *link_list; 00072 ML_Array *avoid_rects; 00073 00074 ML_bool vertical; 00075 ML_String32 *kinsoku_head; 00076 ML_String32 *kinsoku_follow; 00077 00078 int left, top, width, height; 00079 int marginl, margint, marginr, marginb; 00080 int margin_nchar; 00081 00082 ML_Callback_Text callback_text; 00083 00084 ML_bool was_continued; 00085 ML_bool auto_refresh; 00087 int phese; 00089 int showed_phese; 00090 00091 void *user_data; 00092 }; 00093 00095 ALICEMLAPI ML_Message * ALICEMLCALL ML_Message_Create(ML_Surface *destination); 00096 00098 ALICEMLAPI void ALICEMLCALL ML_Message_Destroy(ML_Message *message); 00099 00100 #ifdef __cplusplus 00101 } 00102 #endif 00103 00104 #endif
1.4.7