1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/* Copyright (C) 2000-2007, Luca Padovani <padovani@sti.uniurb.it>.
*
* This file is part of GtkMathView, a flexible, high-quality rendering
* engine for MathML documents.
*
* GtkMathView is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* GtkMathView 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <gtk/gtk.h>
#include "gtkmathview_libxml2.h"
int
main(int argc, char *argv[])
{
GtkWidget *window;
GtkTextBuffer* buffer;
GtkTextIter start, end;
GtkWidget* text_view;
GtkWidget* math_view;
GtkTextChildAnchor* math_anchor;
GtkTextTag* rise_tag;
GtkMathViewBoundingBox math_box;
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_show (window);
g_signal_connect(GTK_OBJECT(window),
"delete_event",
(GtkSignalFunc) gtk_main_quit, NULL);
buffer = gtk_text_buffer_new(NULL);
gtk_text_buffer_set_text(GTK_TEXT_BUFFER(buffer), "This kind of annotation is useful when something other than the \
default rendering of the content encoding is desired. For example, by \
default, some renderers might layout the integrand something like \
. Specifying that the integrand should by preference \
render as \"dx/x\" instead can be accomplished with the use of a \
MathML Presentation annotation as shown. Be aware, however, that \
renderers are not required to take into account information contained \
in annotations, and what use is made of them, if any, will depend on \
the renderer.", -1);
gtk_text_buffer_get_iter_at_offset(buffer, &start, 199);
math_anchor = gtk_text_buffer_create_child_anchor(buffer, &start);
text_view = gtk_text_view_new_with_buffer(buffer);
gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text_view), GTK_WRAP_WORD);
math_view = gtk_math_view_new(NULL, NULL);
gtk_math_view_load_uri(GTK_MATH_VIEW(math_view), "mini.xml");
#if 0
gtk_math_view_set_cursor(GTK_MATH_VIEW(math_view), root, 0);
gtk_math_view_set_cursor_visible(GTK_MATH_VIEW(math_view), GTKMATHVIEW_CURSOR_FOCUS_ON);
#endif
gtk_math_view_get_bounding_box(GTK_MATH_VIEW(math_view), &math_box);
gtk_text_buffer_get_iter_at_offset(buffer, &start, 199);
gtk_text_buffer_get_iter_at_offset(buffer, &end, 200);
rise_tag = gtk_text_buffer_create_tag(buffer, NULL, "rise", -PANGO_SCALE * math_box.depth, NULL);
gtk_text_buffer_apply_tag(buffer, rise_tag, &start, &end);
gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(text_view), math_view, math_anchor);
gtk_container_add (GTK_CONTAINER (window), text_view);
gtk_widget_show (text_view);
gtk_widget_show (math_view);
gtk_main ();
return 0;
}
|