File: GtkToggleToolButton.xs

package info (click to toggle)
libgtk2-perl 2%3A1.2499-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,668 kB
  • ctags: 594
  • sloc: perl: 22,100; ansic: 122; makefile: 17
file content (25 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (6)
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
/*
 * Copyright (c) 2003 by the gtk2-perl team (see the file AUTHORS)
 *
 * Licensed under the LGPL, see LICENSE file for more information.
 *
 * $Id$
 */

#include "gtk2perl.h"

MODULE = Gtk2::ToggleToolButton PACKAGE = Gtk2::ToggleToolButton PREFIX = gtk_toggle_tool_button_


GtkToolItem *gtk_toggle_tool_button_new (class);
    C_ARGS:
	/*void*/

GtkToolItem *gtk_toggle_tool_button_new_from_stock (class, const gchar *stock_id);
    C_ARGS:
	stock_id

void gtk_toggle_tool_button_set_active (GtkToggleToolButton *button, gboolean is_active);

gboolean gtk_toggle_tool_button_get_active (GtkToggleToolButton *button);