]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - unix/gtkfont.h
Omit the conf_launchable check in pterm Duplicate Session.
[PuTTY.git] / unix / gtkfont.h
index f99097f2ffd485d99674b3700deb65d247cbfdd2..6aa8ce2eb302d662fe4936aafbd77694dd401f82 100644 (file)
@@ -136,6 +136,12 @@ void unifont_destroy(unifont *font);
 void unifont_draw_text(unifont_drawctx *ctx, unifont *font,
                        int x, int y, const wchar_t *string, int len,
                        int wide, int bold, int cellwidth);
+/* Same as unifont_draw_text, but expects 'string' to contain one
+ * normal char plus combining chars, and overdraws them all in the
+ * same character cell. */
+void unifont_draw_combining(unifont_drawctx *ctx, unifont *font,
+                            int x, int y, const wchar_t *string, int len,
+                            int wide, int bold, int cellwidth);
 
 /*
  * This function behaves exactly like the low-level unifont_create,