~l3on/ubuntu/precise/rawstudio/fix-ftbfs

« back to all changes in this revision

Viewing changes to src/gtk-helper.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-04-15 12:28:00 UTC
  • mfrom: (1.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415122800-ouc59926jlglfv0u
Tags: 1.2-1
* Replacing obsolete dh_clean -k with dh_prep.
* Merging upstream version 1.2:
  - Fixes segfault if source images are missing during batch process
    (Closes: #510451).
* Upgrading to standards 3.8.1.
* Updating section for debug packages.
* Updating year in copyright file.
* Prefixing debhelper files with package name.
* Adding description to menu file.
* Updating rules file to current state of the art.
* Using debhelper install file to install pixmaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2006-2008 Anders Brander <anders@brander.dk> and 
 
2
 * Copyright (C) 2006-2009 Anders Brander <anders@brander.dk> and 
3
3
 * Anders Kvist <akv@lnxbx.dk>
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or
70
70
 * @return a new GtkButton
71
71
 */
72
72
extern GtkWidget *gui_button_new_from_stock_with_label(const gchar *stock_id, const gchar *label);
 
73
 
 
74
/**
 
75
 * This will create a new GtkLabel that can alternate text when the pointer is
 
76
 * hovering above it.
 
77
 * @param normal_text The text to display when pointer is not hovering above
 
78
 * @param hover_text The text to display when pointer is hovering above the label
 
79
 * @return A new GtkLabel
 
80
 */
 
81
extern GtkWidget *gui_label_new_with_mouseover(const gchar *normal_text, const gchar *hover_text);