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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
/*
* 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
#ifndef MAEMO_GTK
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;
#endif /* MAEMO_GTK */
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);
#ifdef MAEMO_GTK
GtkWidget *
hildon_gtk_tree_view_new (HildonUIMode mode);
GtkWidget *
hildon_gtk_tree_view_new_with_model (HildonUIMode mode,
GtkTreeModel *model);
void
hildon_gtk_tree_view_set_ui_mode (GtkTreeView *treeview,
HildonUIMode mode);
GtkWidget *
hildon_gtk_icon_view_new (HildonUIMode mode);
GtkWidget *
hildon_gtk_icon_view_new_with_model (HildonUIMode mode,
GtkTreeModel *model);
void
hildon_gtk_icon_view_set_ui_mode (GtkIconView *iconview,
HildonUIMode mode);
#endif /* MAEMO_GTK */
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);
#ifndef MAEMO_GTK
void hildon_gtk_widget_set_theme_size (GtkWidget *widget,
HildonSizeType size);
#endif /* MAEMO_GTK */
G_END_DECLS
#endif /* __HILDON_GTK_H__ */
|