2002-03-14 22:27:32 +00:00
|
|
|
|
2001-11-07 23:48:17 +00:00
|
|
|
/*
|
|
|
|
****************************************************************************** *
|
|
|
|
*
|
2005-02-28 23:36:40 +00:00
|
|
|
* Copyright (C) 1999-2005, International Business Machines
|
2001-11-07 23:48:17 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
|
|
|
****************************************************************************** *
|
|
|
|
* file name: gnomelayout.cpp
|
|
|
|
*
|
|
|
|
* created on: 09/04/2001
|
|
|
|
* created by: Eric R. Mader
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gnome.h>
|
|
|
|
#include "freetype/freetype.h"
|
|
|
|
|
|
|
|
#include "unicode/ustring.h"
|
|
|
|
#include "unicode/uscript.h"
|
|
|
|
|
|
|
|
#include "GnomeFontInstance.h"
|
|
|
|
|
|
|
|
#include "paragraph.h"
|
|
|
|
|
|
|
|
#include "GnomeGUISupport.h"
|
|
|
|
#include "GnomeFontMap.h"
|
|
|
|
#include "UnicodeReader.h"
|
2003-05-07 21:42:38 +00:00
|
|
|
#include "ScriptCompositeFontInstance.h"
|
2001-11-07 23:48:17 +00:00
|
|
|
|
|
|
|
#define ARRAY_LENGTH(array) (sizeof array / sizeof array[0])
|
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
struct Context
|
|
|
|
{
|
|
|
|
long width;
|
|
|
|
long height;
|
|
|
|
Paragraph *paragraph;
|
|
|
|
};
|
|
|
|
|
|
|
|
static TT_Engine engine;
|
|
|
|
static GnomeGUISupport *guiSupport;
|
|
|
|
static GnomeFontMap *fontMap;
|
2003-05-07 21:42:38 +00:00
|
|
|
static ScriptCompositeFontInstance *font;
|
2002-03-14 22:27:32 +00:00
|
|
|
|
|
|
|
static GSList *appList = NULL;
|
|
|
|
|
|
|
|
GtkWidget *newSample(const gchar *fileName);
|
|
|
|
void closeSample(GtkWidget *sample);
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void showabout(GtkWidget */*widget*/, gpointer /*data*/)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
|
|
|
GtkWidget *aboutBox;
|
|
|
|
const gchar *writtenBy[] = {
|
|
|
|
"Eric Mader",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
aboutBox = gnome_about_new("Gnome Layout Sample",
|
2001-11-07 23:48:17 +00:00
|
|
|
"0.1",
|
2002-03-14 22:27:32 +00:00
|
|
|
"Copyright (C) 1998-2002 By International Business Machines Corporation and others. All Rights Reserved.",
|
2001-11-07 23:48:17 +00:00
|
|
|
writtenBy,
|
|
|
|
"A simple demo of the ICU LayoutEngine.",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gtk_widget_show(aboutBox);
|
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void notimpl(GtkObject */*object*/, gpointer /*data*/)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
|
|
|
gnome_ok_dialog("Not implemented...");
|
|
|
|
}
|
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
gchar *prettyTitle(const gchar *path)
|
|
|
|
{
|
|
|
|
gchar *name = g_basename(path);
|
|
|
|
gchar *title = g_strconcat("Gnome Layout Sample - ", name, NULL);
|
|
|
|
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void openOK(GtkObject */*object*/, gpointer data)
|
2002-03-14 22:27:32 +00:00
|
|
|
{
|
|
|
|
GtkFileSelection *fileselection = GTK_FILE_SELECTION(data);
|
|
|
|
GtkWidget *app = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(fileselection), "app"));
|
|
|
|
Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context");
|
|
|
|
gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection));
|
|
|
|
Paragraph *newPara;
|
|
|
|
|
|
|
|
gtk_widget_destroy(GTK_WIDGET(fileselection));
|
|
|
|
|
2003-05-07 21:42:38 +00:00
|
|
|
newPara = Paragraph::paragraphFactory(fileName, font, guiSupport);
|
2002-03-14 22:27:32 +00:00
|
|
|
|
|
|
|
if (newPara != NULL) {
|
|
|
|
gchar *title = prettyTitle(fileName);
|
|
|
|
GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area"));
|
|
|
|
|
|
|
|
if (context->paragraph != NULL) {
|
|
|
|
delete context->paragraph;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->paragraph = newPara;
|
|
|
|
gtk_window_set_title(GTK_WINDOW(app), title);
|
|
|
|
|
|
|
|
gtk_widget_hide(area);
|
|
|
|
context->paragraph->breakLines(context->width, context->height);
|
|
|
|
gtk_widget_show_all(area);
|
|
|
|
|
|
|
|
g_free(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(fileName);
|
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void openfile(GtkObject */*object*/, gpointer data)
|
2002-03-14 22:27:32 +00:00
|
|
|
{
|
|
|
|
GtkWidget *app = GTK_WIDGET(data);
|
|
|
|
GtkWidget *fileselection;
|
|
|
|
GtkWidget *okButton;
|
|
|
|
GtkWidget *cancelButton;
|
|
|
|
|
|
|
|
fileselection =
|
|
|
|
gtk_file_selection_new("Open File");
|
|
|
|
|
|
|
|
gtk_object_set_data(GTK_OBJECT(fileselection), "app", app);
|
|
|
|
|
|
|
|
okButton =
|
|
|
|
GTK_FILE_SELECTION(fileselection)->ok_button;
|
|
|
|
|
|
|
|
cancelButton =
|
|
|
|
GTK_FILE_SELECTION(fileselection)->cancel_button;
|
|
|
|
|
|
|
|
gtk_signal_connect(GTK_OBJECT(fileselection), "destroy",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_main_quit), NULL);
|
|
|
|
|
|
|
|
gtk_signal_connect(GTK_OBJECT(okButton), "clicked",
|
|
|
|
GTK_SIGNAL_FUNC(openOK), fileselection);
|
|
|
|
|
|
|
|
gtk_signal_connect_object(GTK_OBJECT(cancelButton), "clicked",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(fileselection));
|
|
|
|
|
|
|
|
gtk_window_set_modal(GTK_WINDOW(fileselection), TRUE);
|
|
|
|
gtk_widget_show(fileselection);
|
|
|
|
gtk_main();
|
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void newapp(GtkObject */*object*/, gpointer /*data*/)
|
2002-03-14 22:27:32 +00:00
|
|
|
{
|
|
|
|
GtkWidget *app = newSample("Sample.txt");
|
|
|
|
|
|
|
|
gtk_widget_show_all(app);
|
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void closeapp(GtkWidget */*widget*/, gpointer data)
|
2002-03-14 22:27:32 +00:00
|
|
|
{
|
|
|
|
GtkWidget *app = GTK_WIDGET(data);
|
|
|
|
|
|
|
|
closeSample(app);
|
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
void shutdown(GtkObject */*object*/, gpointer /*data*/)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
|
|
|
gtk_main_quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
GnomeUIInfo fileMenu[] =
|
|
|
|
{
|
2005-02-28 23:18:05 +00:00
|
|
|
GNOMEUIINFO_MENU_NEW_ITEM((gchar *) "_New Sample",
|
|
|
|
(gchar *) "Create a new Gnome Layout Sample",
|
2002-03-14 22:27:32 +00:00
|
|
|
newapp, NULL),
|
|
|
|
|
|
|
|
GNOMEUIINFO_MENU_OPEN_ITEM(openfile, NULL),
|
|
|
|
GNOMEUIINFO_SEPARATOR,
|
|
|
|
GNOMEUIINFO_MENU_CLOSE_ITEM(closeapp, NULL),
|
|
|
|
GNOMEUIINFO_MENU_EXIT_ITEM(shutdown, NULL),
|
|
|
|
GNOMEUIINFO_END
|
2001-11-07 23:48:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GnomeUIInfo helpMenu[] =
|
|
|
|
{
|
|
|
|
// GNOMEUIINFO_HELP("gnomelayout"),
|
|
|
|
GNOMEUIINFO_MENU_ABOUT_ITEM(showabout, NULL),
|
|
|
|
GNOMEUIINFO_END
|
|
|
|
};
|
|
|
|
|
|
|
|
GnomeUIInfo mainMenu[] =
|
|
|
|
{
|
2005-02-28 23:18:05 +00:00
|
|
|
GNOMEUIINFO_SUBTREE(N_((gchar *) "File"), fileMenu),
|
|
|
|
GNOMEUIINFO_SUBTREE(N_((gchar *) "Help"), helpMenu),
|
2001-11-07 23:48:17 +00:00
|
|
|
GNOMEUIINFO_END
|
|
|
|
};
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
gint eventDelete(GtkWidget *widget, GdkEvent */*event*/, gpointer /*data*/)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
2002-03-14 22:27:32 +00:00
|
|
|
closeSample(widget);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
// indicate that closeapp already destroyed the window
|
|
|
|
return TRUE;
|
2001-11-07 23:48:17 +00:00
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
gint eventConfigure(GtkWidget */*widget*/, GdkEventConfigure *event, Context *context)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
2002-03-14 22:27:32 +00:00
|
|
|
if (context->paragraph != NULL) {
|
2001-11-07 23:48:17 +00:00
|
|
|
context->width = event->width;
|
|
|
|
context->height = event->height;
|
|
|
|
|
|
|
|
if (context->width > 0 && context->height > 0) {
|
|
|
|
context->paragraph->breakLines(context->width, context->height);
|
|
|
|
}
|
2002-03-14 22:27:32 +00:00
|
|
|
}
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
return TRUE;
|
2001-11-07 23:48:17 +00:00
|
|
|
}
|
|
|
|
|
2005-02-28 23:18:05 +00:00
|
|
|
gint eventExpose(GtkWidget *widget, GdkEvent */*event*/, Context *context)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
2002-03-14 22:27:32 +00:00
|
|
|
if (context->paragraph != NULL) {
|
2001-11-07 23:48:17 +00:00
|
|
|
gint maxLines = context->paragraph->getLineCount() - 1;
|
|
|
|
gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
|
2002-12-05 22:50:29 +00:00
|
|
|
GnomeSurface surface(widget);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-12-05 22:50:29 +00:00
|
|
|
context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
|
2002-03-14 22:27:32 +00:00
|
|
|
}
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
return TRUE;
|
2001-11-07 23:48:17 +00:00
|
|
|
}
|
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
GtkWidget *newSample(const gchar *fileName)
|
2001-11-07 23:48:17 +00:00
|
|
|
{
|
2002-03-14 22:27:32 +00:00
|
|
|
Context *context = new Context();
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
context->width = 600;
|
|
|
|
context->height = 400;
|
2003-05-07 21:42:38 +00:00
|
|
|
context->paragraph = Paragraph::paragraphFactory(fileName, font, guiSupport);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gchar *title = prettyTitle(fileName);
|
|
|
|
GtkWidget *app = gnome_app_new("gnomeLayout", title);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gtk_object_set_data(GTK_OBJECT(app), "context", context);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gtk_window_set_default_size(GTK_WINDOW(app), 600 - 24, 400);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gnome_app_create_menus_with_data(GNOME_APP(app), mainMenu, app);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gtk_signal_connect(GTK_OBJECT(app), "delete_event",
|
|
|
|
GTK_SIGNAL_FUNC(eventDelete), NULL);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
GtkWidget *area = gtk_drawing_area_new();
|
|
|
|
gtk_object_set_data(GTK_OBJECT(app), "area", area);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
GtkStyle *style = gtk_style_copy(gtk_widget_get_style(area));
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
for (int i = 0; i < 5; i += 1) {
|
|
|
|
style->fg[i] = style->white;
|
|
|
|
}
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gtk_widget_set_style(area, style);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gnome_app_set_contents(GNOME_APP(app), area);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gtk_signal_connect(GTK_OBJECT(area),
|
|
|
|
"expose_event",
|
|
|
|
GTK_SIGNAL_FUNC(eventExpose),
|
|
|
|
context);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
gtk_signal_connect(GTK_OBJECT(area),
|
|
|
|
"configure_event",
|
|
|
|
GTK_SIGNAL_FUNC(eventConfigure),
|
|
|
|
context);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-11-05 00:22:13 +00:00
|
|
|
appList = g_slist_prepend(appList, app);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
g_free(title);
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
|
|
|
void closeSample(GtkWidget *app)
|
|
|
|
{
|
|
|
|
Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context");
|
|
|
|
|
|
|
|
if (context->paragraph != NULL) {
|
|
|
|
delete context->paragraph;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete context;
|
|
|
|
|
|
|
|
appList = g_slist_remove(appList, app);
|
|
|
|
|
|
|
|
gtk_widget_destroy(app);
|
|
|
|
|
|
|
|
if (appList == NULL) {
|
|
|
|
gtk_main_quit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
2003-03-03 23:07:01 +00:00
|
|
|
LEErrorCode fontStatus = LE_NO_ERROR;
|
2002-03-14 22:27:32 +00:00
|
|
|
GtkWidget *app;
|
|
|
|
|
|
|
|
TT_Init_FreeType(&engine);
|
|
|
|
|
|
|
|
gnome_init("gnomelayout", "0.1", argc, argv);
|
|
|
|
|
|
|
|
guiSupport = new GnomeGUISupport();
|
|
|
|
fontMap = new GnomeFontMap(engine, "FontMap.Gnome", 24, guiSupport, fontStatus);
|
2003-05-07 21:42:38 +00:00
|
|
|
font = new ScriptCompositeFontInstance(fontMap);
|
2002-03-14 22:27:32 +00:00
|
|
|
|
|
|
|
if (LE_FAILURE(fontStatus)) {
|
|
|
|
TT_Done_FreeType(engine);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc <= 1) {
|
|
|
|
app = newSample("Sample.txt");
|
2003-11-05 00:22:13 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
gtk_widget_show_all(app);
|
|
|
|
} else {
|
|
|
|
for (int i = 1; i < argc; i += 1) {
|
|
|
|
app = newSample(argv[i]);
|
2003-11-05 00:22:13 +00:00
|
|
|
|
2002-03-14 22:27:32 +00:00
|
|
|
gtk_widget_show_all(app);
|
|
|
|
}
|
2001-11-07 23:48:17 +00:00
|
|
|
}
|
2002-03-14 22:27:32 +00:00
|
|
|
|
|
|
|
gtk_main();
|
2001-11-07 23:48:17 +00:00
|
|
|
|
2003-05-07 21:42:38 +00:00
|
|
|
delete font;
|
2002-03-14 22:27:32 +00:00
|
|
|
delete guiSupport;
|
2001-11-07 23:48:17 +00:00
|
|
|
|
|
|
|
TT_Done_FreeType(engine);
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|