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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright 2009-2010 Red Hat, Inc,
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA.
*
* Written by: Matthias Clasen <mclasen@redhat.com>
*/
#include <gdk/gdkkeysyms.h>
#include "cc-editable-entry.h"
#define EMPTY_TEXT "\xe2\x80\x94"
struct _CcEditableEntryPrivate {
GtkNotebook *notebook;
GtkLabel *label;
GtkButton *button;
GtkEntry *entry;
gchar *text;
gboolean editable;
gboolean selectable;
gint weight;
gboolean weight_set;
gdouble scale;
gboolean scale_set;
gboolean in_stop_editing;
};
#define CC_EDITABLE_ENTRY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), CC_TYPE_EDITABLE_ENTRY, CcEditableEntryPrivate))
enum {
PROP_0,
PROP_TEXT,
PROP_EDITABLE,
PROP_SELECTABLE,
PROP_SCALE,
PROP_SCALE_SET,
PROP_WEIGHT,
PROP_WEIGHT_SET
};
enum {
EDITING_DONE,
LAST_SIGNAL
};
enum {
PAGE_LABEL,
PAGE_BUTTON,
PAGE_ENTRY
};
static guint signals [LAST_SIGNAL] = { 0, };
G_DEFINE_TYPE (CcEditableEntry, cc_editable_entry, GTK_TYPE_ALIGNMENT);
void
cc_editable_entry_set_text (CcEditableEntry *e,
const gchar *text)
{
CcEditableEntryPrivate *priv;
gchar *tmp;
GtkWidget *label;
priv = e->priv;
tmp = g_strdup (text);
g_free (priv->text);
priv->text = tmp;
gtk_entry_set_text (priv->entry, tmp);
if (tmp == NULL || tmp[0] == '\0')
tmp = EMPTY_TEXT;
gtk_label_set_text (priv->label, tmp);
label = gtk_bin_get_child (GTK_BIN (priv->button));
gtk_label_set_text (GTK_LABEL (label), tmp);
g_object_notify (G_OBJECT (e), "text");
}
const gchar *
cc_editable_entry_get_text (CcEditableEntry *e)
{
return e->priv->text;
}
void
cc_editable_entry_set_editable (CcEditableEntry *e,
gboolean editable)
{
CcEditableEntryPrivate *priv;
priv = e->priv;
if (priv->editable != editable) {
priv->editable = editable;
gtk_notebook_set_current_page (priv->notebook, editable ? PAGE_BUTTON : PAGE_LABEL);
g_object_notify (G_OBJECT (e), "editable");
}
}
gboolean
cc_editable_entry_get_editable (CcEditableEntry *e)
{
return e->priv->editable;
}
void
cc_editable_entry_set_selectable (CcEditableEntry *e,
gboolean selectable)
{
CcEditableEntryPrivate *priv;
priv = e->priv;
if (priv->selectable != selectable) {
priv->selectable = selectable;
gtk_label_set_selectable (priv->label, selectable);
g_object_notify (G_OBJECT (e), "selectable");
}
}
gboolean
cc_editable_entry_get_selectable (CcEditableEntry *e)
{
return e->priv->selectable;
}
static void
update_fonts (CcEditableEntry *e)
{
PangoAttrList *attrs;
PangoAttribute *attr;
GtkWidget *label;
CcEditableEntryPrivate *priv = e->priv;
attrs = pango_attr_list_new ();
if (priv->scale_set) {
attr = pango_attr_scale_new (priv->scale);
pango_attr_list_insert (attrs, attr);
}
if (priv->weight_set) {
attr = pango_attr_weight_new (priv->weight);
pango_attr_list_insert (attrs, attr);
}
gtk_label_set_attributes (priv->label, attrs);
label = gtk_bin_get_child (GTK_BIN (priv->button));
gtk_label_set_attributes (GTK_LABEL (label), attrs);
g_object_set(priv->entry,
"attributes", attrs,
NULL);
pango_attr_list_unref (attrs);
}
void
cc_editable_entry_set_weight (CcEditableEntry *e,
gint weight)
{
CcEditableEntryPrivate *priv = e->priv;
if (priv->weight == weight && priv->weight_set)
return;
priv->weight = weight;
priv->weight_set = TRUE;
update_fonts (e);
g_object_notify (G_OBJECT (e), "weight");
g_object_notify (G_OBJECT (e), "weight-set");
}
gint
cc_editable_entry_get_weight (CcEditableEntry *e)
{
return e->priv->weight;
}
void
cc_editable_entry_set_scale (CcEditableEntry *e,
gdouble scale)
{
CcEditableEntryPrivate *priv = e->priv;
if (priv->scale == scale && priv->scale_set)
return;
priv->scale = scale;
priv->scale_set = TRUE;
update_fonts (e);
g_object_notify (G_OBJECT (e), "scale");
g_object_notify (G_OBJECT (e), "scale-set");
}
gdouble
cc_editable_entry_get_scale (CcEditableEntry *e)
{
return e->priv->scale;
}
static void
cc_editable_entry_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
CcEditableEntry *e = CC_EDITABLE_ENTRY (object);
switch (prop_id) {
case PROP_TEXT:
cc_editable_entry_set_text (e, g_value_get_string (value));
break;
case PROP_EDITABLE:
cc_editable_entry_set_editable (e, g_value_get_boolean (value));
break;
case PROP_SELECTABLE:
cc_editable_entry_set_selectable (e, g_value_get_boolean (value));
break;
case PROP_WEIGHT:
cc_editable_entry_set_weight (e, g_value_get_int (value));
break;
case PROP_WEIGHT_SET:
e->priv->weight_set = g_value_get_boolean (value);
break;
case PROP_SCALE:
cc_editable_entry_set_scale (e, g_value_get_double (value));
break;
case PROP_SCALE_SET:
e->priv->scale_set = g_value_get_boolean (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
cc_editable_entry_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
CcEditableEntry *e = CC_EDITABLE_ENTRY (object);
switch (prop_id) {
case PROP_TEXT:
g_value_set_string (value,
cc_editable_entry_get_text (e));
break;
case PROP_EDITABLE:
g_value_set_boolean (value,
cc_editable_entry_get_editable (e));
break;
case PROP_SELECTABLE:
g_value_set_boolean (value,
cc_editable_entry_get_selectable (e));
break;
case PROP_WEIGHT:
g_value_set_int (value,
cc_editable_entry_get_weight (e));
break;
case PROP_WEIGHT_SET:
g_value_set_boolean (value, e->priv->weight_set);
break;
case PROP_SCALE:
g_value_set_double (value,
cc_editable_entry_get_scale (e));
break;
case PROP_SCALE_SET:
g_value_set_boolean (value, e->priv->scale_set);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
cc_editable_entry_finalize (GObject *object)
{
CcEditableEntry *e = (CcEditableEntry*)object;
g_free (e->priv->text);
G_OBJECT_CLASS (cc_editable_entry_parent_class)->finalize (object);
}
static void
cc_editable_entry_class_init (CcEditableEntryClass *class)
{
GObjectClass *object_class;
object_class = G_OBJECT_CLASS (class);
object_class->set_property = cc_editable_entry_set_property;
object_class->get_property = cc_editable_entry_get_property;
object_class->finalize = cc_editable_entry_finalize;
signals[EDITING_DONE] =
g_signal_new ("editing-done",
G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (CcEditableEntryClass, editing_done),
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
g_object_class_install_property (object_class, PROP_TEXT,
g_param_spec_string ("text",
"Text", "The text of the button",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_EDITABLE,
g_param_spec_boolean ("editable",
"Editable", "Whether the text can be edited",
FALSE,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_SELECTABLE,
g_param_spec_boolean ("selectable",
"Selectable", "Whether the text can be selected by mouse",
FALSE,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_WEIGHT,
g_param_spec_int ("weight",
"Font Weight", "The font weight to use",
0, G_MAXINT, PANGO_WEIGHT_NORMAL,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_WEIGHT_SET,
g_param_spec_boolean ("weight-set",
"Font Weight Set", "Whether a font weight is set",
FALSE,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_SCALE,
g_param_spec_double ("scale",
"Font Scale", "The font scale to use",
0.0, G_MAXDOUBLE, 1.0,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_SCALE_SET,
g_param_spec_boolean ("scale-set",
"Font Scale Set", "Whether a font scale is set",
FALSE,
G_PARAM_READWRITE));
g_type_class_add_private (class, sizeof (CcEditableEntryPrivate));
}
static void
start_editing (CcEditableEntry *e)
{
gtk_notebook_set_current_page (e->priv->notebook, PAGE_ENTRY);
}
static void
stop_editing (CcEditableEntry *e)
{
/* Avoid launching another "editing-done" signal
* caused by the notebook page change */
if (e->priv->in_stop_editing)
return;
e->priv->in_stop_editing = TRUE;
gtk_notebook_set_current_page (e->priv->notebook, PAGE_BUTTON);
cc_editable_entry_set_text (e, gtk_entry_get_text (e->priv->entry));
g_signal_emit (e, signals[EDITING_DONE], 0);
e->priv->in_stop_editing = FALSE;
}
static void
cancel_editing (CcEditableEntry *e)
{
gtk_entry_set_text (e->priv->entry, cc_editable_entry_get_text (e));
gtk_notebook_set_current_page (e->priv->notebook, PAGE_BUTTON);
}
static void
button_clicked (GtkWidget *widget,
CcEditableEntry *e)
{
start_editing (e);
}
static void
entry_activated (GtkWidget *widget,
CcEditableEntry *e)
{
stop_editing (e);
}
static gboolean
entry_focus_out (GtkWidget *widget,
GdkEventFocus *event,
CcEditableEntry *e)
{
stop_editing (e);
return FALSE;
}
static gboolean
entry_key_press (GtkWidget *widget,
GdkEventKey *event,
CcEditableEntry *e)
{
if (event->keyval == GDK_KEY_Escape) {
cancel_editing (e);
}
return FALSE;
}
static void
update_button_padding (GtkWidget *widget,
GtkAllocation *allocation,
CcEditableEntry *e)
{
CcEditableEntryPrivate *priv = e->priv;
GtkAllocation alloc;
gint offset;
gint pad;
gtk_widget_get_allocation (gtk_widget_get_parent (widget), &alloc);
offset = allocation->x - alloc.x;
gtk_misc_get_padding (GTK_MISC (priv->label), &pad, NULL);
if (offset != pad)
gtk_misc_set_padding (GTK_MISC (priv->label), offset, 0);
}
static void
cc_editable_entry_init (CcEditableEntry *e)
{
CcEditableEntryPrivate *priv;
priv = e->priv = CC_EDITABLE_ENTRY_GET_PRIVATE (e);
priv->weight = PANGO_WEIGHT_NORMAL;
priv->weight_set = FALSE;
priv->scale = 1.0;
priv->scale_set = FALSE;
priv->notebook = (GtkNotebook*)gtk_notebook_new ();
gtk_notebook_set_show_tabs (priv->notebook, FALSE);
gtk_notebook_set_show_border (priv->notebook, FALSE);
/* Label */
priv->label = (GtkLabel*)gtk_label_new (EMPTY_TEXT);
gtk_misc_set_alignment (GTK_MISC (priv->label), 0.0, 0.5);
gtk_notebook_append_page (priv->notebook, (GtkWidget*)priv->label, NULL);
/* Button */
priv->button = (GtkButton*)gtk_button_new_with_label (EMPTY_TEXT);
gtk_widget_set_receives_default ((GtkWidget*)priv->button, TRUE);
gtk_button_set_relief (priv->button, GTK_RELIEF_NONE);
gtk_button_set_alignment (priv->button, 0.0, 0.5);
gtk_notebook_append_page (priv->notebook, (GtkWidget*)priv->button, NULL);
g_signal_connect (priv->button, "clicked", G_CALLBACK (button_clicked), e);
/* Entry */
priv->entry = (GtkEntry*)gtk_entry_new ();
gtk_notebook_append_page (priv->notebook, (GtkWidget*)priv->entry, NULL);
g_signal_connect (priv->entry, "activate", G_CALLBACK (entry_activated), e);
g_signal_connect (priv->entry, "focus-out-event", G_CALLBACK (entry_focus_out), e);
g_signal_connect (priv->entry, "key-press-event", G_CALLBACK (entry_key_press), e);
g_signal_connect (gtk_bin_get_child (GTK_BIN (priv->button)), "size-allocate", G_CALLBACK (update_button_padding), e);
gtk_container_add (GTK_CONTAINER (e), (GtkWidget*)priv->notebook);
gtk_widget_show ((GtkWidget*)priv->notebook);
gtk_widget_show ((GtkWidget*)priv->label);
gtk_widget_show ((GtkWidget*)priv->button);
gtk_widget_show ((GtkWidget*)priv->entry);
gtk_notebook_set_current_page (priv->notebook, PAGE_LABEL);
}
GtkWidget *
cc_editable_entry_new (void)
{
return (GtkWidget *) g_object_new (CC_TYPE_EDITABLE_ENTRY, NULL);
}
|