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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/*
* This file is a part of hildon
*
* Copyright (C) 2008, 2009 Nokia Corporation, all rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser Public License as published by
* the Free Software Foundation; version 2 of the license.
*
* This program 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 Lesser Public License for more details.
*
*/
#ifndef __HILDON_GTK_H__
#define __HILDON_GTK_H__
#include <gtk/gtk.h>
G_BEGIN_DECLS
typedef enum {
HILDON_SIZE_AUTO_WIDTH = 0 << 0, /* set to automatic width */
HILDON_SIZE_HALFSCREEN_WIDTH = 1 << 0, /* set to 50% screen width */
HILDON_SIZE_FULLSCREEN_WIDTH = 2 << 0, /* set to 100% screen width */
HILDON_SIZE_AUTO_HEIGHT = 0 << 2, /* set to automatic height */
HILDON_SIZE_FINGER_HEIGHT = 1 << 2, /* set to finger height */
HILDON_SIZE_THUMB_HEIGHT = 2 << 2, /* set to thumb height */
HILDON_SIZE_AUTO = (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_AUTO_HEIGHT)
} HildonSizeType;
GtkWidget *
hildon_gtk_menu_new (void);
GtkWidget *
hildon_gtk_button_new (HildonSizeType size);
GtkWidget *
hildon_gtk_toggle_button_new (HildonSizeType size);
GtkWidget *
hildon_gtk_radio_button_new (HildonSizeType size,
GSList *group);
GtkWidget *
hildon_gtk_radio_button_new_from_widget (HildonSizeType size,
GtkRadioButton *radio_group_member);
void
hildon_gtk_window_set_progress_indicator (GtkWindow *window,
guint state);
void
hildon_gtk_window_set_do_not_disturb (GtkWindow *window,
gboolean dndflag);
/**
* HildonPortraitFlags:
*
* These flags are used to tell the window manager whether the current
* window needs to be in portrait or landscape mode.
*
* If no flags are set then the window is meant to be used in
* landscape mode only.
*
* If %HILDON_PORTRAIT_MODE_REQUEST is set then the window is meant to
* be used in portrait mode only.
*
* If only %HILDON_PORTRAIT_MODE_SUPPORT is set then the current
* orientation will be kept, no matter if it's portrait or landscape.
*
* It is important to note that, while these flags can be used to
* change between portrait and landscape according to the physical
* orientation of the display, Hildon does not provide any method to
* obtain this information.
**/
typedef enum {
HILDON_PORTRAIT_MODE_REQUEST = 1 << 0,
HILDON_PORTRAIT_MODE_SUPPORT = 1 << 1
} HildonPortraitFlags;
void
hildon_gtk_window_set_portrait_flags (GtkWindow *window,
HildonPortraitFlags portrait_flags);
void
hildon_gtk_window_take_screenshot (GtkWindow *window,
gboolean take);
void
hildon_gtk_window_take_screenshot_sync (GtkWindow *window,
gboolean take);
void
hildon_gtk_window_enable_zoom_keys (GtkWindow *window,
gboolean enable);
GtkWidget*
hildon_gtk_hscale_new (void);
GtkWidget*
hildon_gtk_vscale_new (void);
void hildon_gtk_widget_set_theme_size (GtkWidget *widget,
HildonSizeType size);
G_END_DECLS
#endif /* __HILDON_GTK_H__ */
|