summaryrefslogtreecommitdiff
path: root/tikzit/src/gtk/gtkhelpers.h
blob: 4da949b67d470d52e7bb68a2ded38c74089e121d (plain)
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
//
//  gtkhelpers.h
//  TikZiT
//
//  Copyright 2010 Alex Merry. All rights reserved.
//
//
//  This file is part of TikZiT.
//
//  TikZiT is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  (at your option) any later version.
//
//  TikZiT 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 General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with TikZiT.  If not, see <http://www.gnu.org/licenses/>.
//
#import "TZFoundation.h"
#include <gtk/gtk.h>
#import <gdk-pixbuf/gdk-pixbuf.h>

/**
 * Releases the Objective-C object pointed to by data
 *
 * Intended for use as a cleanup function in Glib/GObject-based
 * code.
 */
void release_obj (gpointer data);

NSString * gtk_editable_get_string (GtkEditable *editable, gint start, gint end);

GdkRectangle gdk_rectangle_from_ns_rect (NSRect rect);
NSRect gdk_rectangle_to_ns_rect (GdkRectangle rect);

void gtk_action_set_detailed_label (GtkAction *action, const gchar *baseLabel, const gchar *actionName);

gint tz_hijack_key_press (GtkWindow *win,
                          GdkEventKey *event,
                          gpointer user_data);

// Equivalent of GTK+3's gdk_pixbuf_get_from_surface()
GdkPixbuf * pixbuf_get_from_surface(cairo_surface_t *surface);

void tz_restore_window (GtkWindow *window, gint x, gint y, gint w, gint h);

void label_set_bold (GtkLabel *label);

void widget_set_error (GtkWidget *widget);
void widget_clear_error (GtkWidget *widget);

void text_buffer_clear_tag (GtkTextBuffer *buffer, GtkTextTag *tag);

// vim:ft=objc:sts=2:sw=2:et