2003-02-04 James Henstridge <james@daa.com.au>
* src/fontilus.server.in.in: change verb name and menu item label.
* src/fontilus-context-menu.c (handle_event): change verb name.
2003-02-02 Yanko Kaneti <yaneti@declera.com>
* Makefile.am (EXTRA_DIST): add fontilus.server.in.in
* fontilus.spec.in: Updated to include the context menu extensions.
2003-02-02 James Henstridge <james@daa.com.au>
* src/fontilus.server.in.in: bonobo activation server file for the
fontilus component.
* src/fontilus-context-menu.c: Bonobo listener component to
implement custom context menu items for fonts under fonts:///,
which allows us to set the default font for the desktop.
2003-01-13 James Henstridge <james@daa.com.au>
* src/font-view.c (create_text_pixmap): refactor so that it
creates a pixmap big enough to display everything.
(main): make the window resizable, and add font preview to a
scrolled window.
2003-01-10 Christian Rose <menthos@menthos.com>
* configure.in: (ALL_LINGUAS): Added "sv".
* po/.cvsignore: Added more files.
* po/sv.po: Added Swedish translation.
2002-12-23 James Henstridge <james@daa.com.au>
* src/thumbnailer.c (main): get rid of unused variable.
* configure.in (GETTEXT_PACKAGE): turn on i18n stuff.
(CFLAGS): add -Wall to compile flags.
(*_LIBS): remove -export-dynamic from libs.
2002-12-10 James Henstridge <james@daa.com.au>
* src/ftstream-vfs.c (FT_New_Face_From_URI): get rid of the local
file optimisation. It didn't make a noticable difference for the
large Asian fonts.
* src/thumbnailer.c (main): set the charmap for the font before
rendering the glyphs. This fixes rendering of some fonts jdub
sent me.
2002-12-09 James Henstridge <james@daa.com.au>
* src/font-view.c (add_row): handle multiline text.
(add_face_info): add some extra information found in SFNT or Type1
fonts.
(create_text_pixmap): change the font output.
2002-12-06 James Henstridge <james@daa.com.au>
* src/ftstream-vfs.c (FT_New_Face_From_URI): if the URI looks
local, bypass gnome-vfs to open the face (small optimisation).
* src/font-view.c (create_text_pixmap): only display the font at
its fixed sizes if it is not scalable. Before we were ignoring
the outlines on fonts such as Lucida Console, which includes both
outlines and bitmaps for small sizes.
2002-12-06 James Henstridge <james@daa.com.au>
* src/font-view.c (create_text_pixmap): only display the font at
its fixed sizes if it is not scalable. Before we were ignoring
the outlines on fonts such as Lucida Console, which includes both
outlines and bitmaps for small sizes.
2002-12-05 James Henstridge <james@daa.com.au>
* src/fontilus.keys: set gnome-font-viewer as default app for
type1, ttf and pcf fonts.
* src/fontilus.applications: add application registry file for
gnome-font-viewer. Set it to accept URIs in file:/// and
fonts:///. It supports others though ...
* src/Makefile.am: change executable names, and install them.
* src/font-view.c (main): add an "in" shadow round the rendered text.
2002-12-05 James Henstridge <james@daa.com.au>
* src/font-view.c (draw_text): move text drawing into separate
function.
(create_text_pixmap): handle bitmap fonts by drawing the test
string at the correct size(s).
(add_face_info): display some information about the font.
2002-12-05 James Henstridge <james@daa.com.au>
* src/font-view.c (main): change so that it renders the text at a
number of different sizes, like fontcarton did. Need to show some
info about the font too ...
2002-12-04 James Henstridge <james@daa.com.au>
* src/font-view.c (main): get font to render correctly. Things
work fine now that I am using the same FT_Library handle as Xft
was ...
2002-12-04 James Henstridge <james@daa.com.au>
* src/font-view.c (main): start of simple font viewer program.
Doesn't correctl display the text yet though :(
* src/ftstream-vfs.c (FT_New_Face_From_URI): rename function to
match naming scheme used elsewhere.
2002-12-02 James Henstridge <james@daa.com.au>
* src/thumbnailer.c (draw_char): split code for drawing character
into separate function.
(save_pixbuf): function to save the pixbuf. We crop the pixbuf
leaving PAD_PIXELS pixels round the edges.
* src/ftstream-vfs.c (FT_New_URI_Face): unset the
FT_FACE_FLAG_EXTERNAL_STREAM flag on the face, so that it gets
freed with the face. (this is a bit of a hack ...).
2002-12-02 James Henstridge <james@daa.com.au>
* src/ftstream-vfs.c (FT_New_URI_Face): unset the
FT_FACE_FLAG_EXTERNAL_STREAM flag on the face, so that it gets
freed with the face. (this is a bit of a hack ...).
2002-12-02 James Henstridge <james@daa.com.au>
* src/thumbnailer.c (main): fix bound on for loop (gaaaargh).
(main): re-enable shutdown of the library
* src/Makefile.am (libfont_method_la_LIBADD): fix typo.
* src/ftstream-vfs.c (FT_New_URI_Face): FT_Stream is a pointer, so
sizeof(FT_Stram) gives the wrong result :(