blob: 723526a8b5da523011062c99bbc4bfc1b7c7f115 (
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
|
/*
* Copyright (C) 2019 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
#error "Only <handy.h> can be included directly."
#endif
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define HDY_TYPE_KEYPAD_BUTTON (hdy_keypad_button_get_type())
G_DECLARE_FINAL_TYPE (HdyKeypadButton, hdy_keypad_button, HDY, KEYPAD_BUTTON, GtkButton)
struct _HdyKeypadButtonClass
{
GtkButtonClass parent_class;
};
GtkWidget *hdy_keypad_button_new (const gchar *symbols);
gchar hdy_keypad_button_get_digit (HdyKeypadButton *self);
const gchar *hdy_keypad_button_get_symbols (HdyKeypadButton *self);
void hdy_keypad_button_show_symbols (HdyKeypadButton *self,
gboolean visible);
G_END_DECLS
|