aboutsummaryrefslogtreecommitdiff
path: root/hildon/hildon-time-button.c
blob: d5ba72729aab74a26939f5e12a8a985e44b3bb62 (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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*
 * This file is a part of hildon
 *
 * Copyright (C) 2008 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.
 *
 */

/**
 * SECTION:hildon-time-button
 * @Short_Description: Button displaying and allowing selection of a time.
 * @See_Also: #HildonPickerButton, #HildonDateButton
 *
 * #HildonTimeButton is a widget that shows a text label and a time, and allows
 * the user to select a different time. Visually, it's a button that, once clicked,
 * presents a #HildonPickerDialog containing a #HildonTimeSelector. Once the user selects
 * a different time from the selector, this will be shown in the button.
 */

#include <libintl.h>

#include "hildon-time-selector.h"
#include "hildon-touch-selector.h"
#include "hildon-picker-button.h"
#include "hildon-time-button.h"
#include "hildon-stock.h"

#define                                         _(String) \
                                                dgettext("hildon-libs", String)

#define                                         c_(String) \
                                                dgettext("hildon-common-strings", String)

G_DEFINE_TYPE (HildonTimeButton, hildon_time_button, HILDON_TYPE_PICKER_BUTTON)

#if 0
#define GET_PRIVATE(o)                                                  \
  (G_TYPE_INSTANCE_GET_PRIVATE ((o), HILDON_TYPE_TIME_BUTTON, HildonTimeButtonPrivate))
typedef struct _HildonTimeButtonPrivate HildonTimeButtonPrivate;

struct _HildonTimeButtonPrivate
{
};
#endif

#if 0
static void
hildon_time_button_get_property (GObject * object, guint property_id,
                                 GValue * value, GParamSpec * pspec)
{
  switch (property_id) {
  default:
    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
  }
}

static void
hildon_time_button_set_property (GObject * object, guint property_id,
                                 const GValue * value, GParamSpec * pspec)
{
  switch (property_id) {
  default:
    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
  }
}
#endif

static GObject *
hildon_time_button_constructor (GType type,
                                guint n_construct_params,
                                GObjectConstructParam *construct_params)
{
  GObject *object;

  object = G_OBJECT_CLASS (hildon_time_button_parent_class)->constructor (type,
                                                                          n_construct_params,
                                                                          construct_params);
  gtk_button_set_use_stock (GTK_BUTTON (object), TRUE);

  return object;
}

static void
hildon_time_button_class_init (HildonTimeButtonClass * klass)
{
  GObjectClass *object_class = G_OBJECT_CLASS (klass);

  object_class->constructor = hildon_time_button_constructor;
#if 0
  g_type_class_add_private (klass, sizeof (HildonTimeButtonPrivate));

  object_class->get_property = hildon_time_button_get_property;
  object_class->set_property = hildon_time_button_set_property;
#endif
}

static void
hildon_time_button_init (HildonTimeButton * self)
{
}

/**
 * hildon_time_button_new:
 * @size: One of #HildonSizeType
 * @arrangement: one of #HildonButtonArrangement
 *
 * Creates a new #HildonTimeButton. See hildon_button_new() for details on the
 * parameters.
 *
 * Returns: a new #HildonTimeButton
 *
 * Since: 2.2
 **/
GtkWidget *
hildon_time_button_new (HildonSizeType          size,
                        HildonButtonArrangement arrangement)
{
  return hildon_time_button_new_step (size, arrangement, 1);
}

/**
 * hildon_time_button_new_step:
 * @size: One of #HildonSizeType
 * @arrangement: one of #HildonButtonArrangement
 * @minutes_step: step between the minutes in the selector options
 *
 * Creates a new #HildonTimeButton. See hildon_button_new() for details on the
 * parameters.
 *
 * Returns: a new #HildonTimeButton
 *
 * Since: 2.2
 **/
GtkWidget *
hildon_time_button_new_step (HildonSizeType          size,
                             HildonButtonArrangement arrangement,
                             guint                   minutes_step)
{
  return g_object_new (HILDON_TYPE_TIME_BUTTON,
                       "title", HILDON_STOCK_TIME,
                       "arrangement", arrangement,
                       "size", size,
                       "touch-selector", hildon_time_selector_new_step (minutes_step),
                       NULL);
}

/**
 * hildon_time_button_get_time:
 * @button: a #HildonTimeButton
 * @hours: return location for the hours of the time selected
 * @minutes: return location for the minutes of the time selected
 *
 * Retrieves the time from @button.
 *
 * Since: 2.2
 **/
void
hildon_time_button_get_time (HildonTimeButton * button,
                             guint * hours, guint * minutes)
{
  HildonTouchSelector *selector;

  g_return_if_fail (HILDON_IS_TIME_BUTTON (button));

  selector = hildon_picker_button_get_selector (HILDON_PICKER_BUTTON (button));

  hildon_time_selector_get_time (HILDON_TIME_SELECTOR (selector), hours, minutes);
}

/**
 * hildon_time_button_set_time:
 * @button: a #HildonTimeButton
 * @hours: the hours to be set
 * @minutes: the time to be set
 *
 * Sets the time to be displayed in @button. This time will
 * be selected by default on the #HildonTimeSelector.
 *
 * Since: 2.2
 **/
void
hildon_time_button_set_time (HildonTimeButton * button,
                             guint hours, guint minutes)
{
  HildonTouchSelector *selector;
  gchar *time;

  g_return_if_fail (HILDON_IS_TIME_BUTTON (button));

  selector = hildon_picker_button_get_selector (HILDON_PICKER_BUTTON (button));

  hildon_time_selector_set_time (HILDON_TIME_SELECTOR (selector), hours, minutes);

  time = hildon_touch_selector_get_current_text (HILDON_TOUCH_SELECTOR (selector));
  hildon_button_set_value (HILDON_BUTTON (button), time);
  g_free (time);
}