Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'unix/utils/string_width.c')
-rw-r--r--unix/utils/string_width.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/unix/utils/string_width.c b/unix/utils/string_width.c
new file mode 100644
index 00000000..c944308f
--- /dev/null
+++ b/unix/utils/string_width.c
@@ -0,0 +1,18 @@
+/*
+ * Return the width of a string in the font used in GTK controls. Used
+ * as a means of picking a sensible size for dialog boxes and pieces
+ * of them, in a way that should adapt sensibly to changes in font and
+ * resolution.
+ */
+
+#include <gtk/gtk.h>
+#include "putty.h"
+#include "gtkcompat.h"
+#include "gtkmisc.h"
+
+int string_width(const char *text)
+{
+ int ret;
+ get_label_text_dimensions(text, &ret, NULL);
+ return ret;
+}