~ubuntu-branches/ubuntu/karmic/gtkmm2.4/karmic

« back to all changes in this revision

Viewing changes to gtk/gtkmm/aboutdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-22 10:14:59 UTC
  • mfrom: (1.2.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20090922101459-pespb00fbm1mlqbd
Tags: 1:2.18.1-0ubuntu1
* New upstream release: (LP: #434355)
  - RecentManager: Undeprecate get_default().
  - Clipboard: wait_for_targets): Fix a crash.
  - Window: Added set_icon_name().
  - Require a recent pangomm.
  - Style: Fix a compiler error with the Intel C++ compiler.
  - Fix recently-introduced problems with disable-deprecated options.
* debian/control.in:
  - Bump libpangomm-1.4-dev depends and build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#ifndef _GTKMM_ABOUTDIALOG_H
4
4
#define _GTKMM_ABOUTDIALOG_H
5
5
 
 
6
#include <gtkmmconfig.h>
 
7
 
6
8
 
7
9
#include <glibmm.h>
8
10
 
9
 
/* $Id: aboutdialog.hg,v 1.10 2006/07/18 19:49:30 murrayc Exp $ */
10
 
 
11
 
/* aboutdialog.h
12
 
 *
 
11
/*
13
12
 * Copyright (C) 2004 The gtkmm Development Team
14
13
 *
15
14
 * This library is free software; you can redistribute it and/or
27
26
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28
27
 */
29
28
 
 
29
 
30
30
#include <gtkmm/dialog.h>
31
31
//#include <glibmm/listhandle.h>
32
32
 
42
42
namespace Gtk
43
43
{
44
44
 
45
 
/** The AboutDialog offers a simple way to display information about a program like its logo, name, copyright, 
46
 
 * website and license. It is also possible to give credits to the authors, documenters, translators and artists 
47
 
 * who have worked on the program. An about dialog is typically opened when the user selects the About option 
 
45
/** The AboutDialog offers a simple way to display information about a program like its logo, name, copyright,
 
46
 * website and license. It is also possible to give credits to the authors, documenters, translators and artists
 
47
 * who have worked on the program. An about dialog is typically opened when the user selects the About option
48
48
 * from the Help menu. All parts of the dialog are optional.
49
49
 *
50
 
 * About dialogs often contain links and email addresses. Gtk::AboutDialog supports this by offering global 
51
 
 * hooks, which are called when the user clicks on a link or email address, see set_email_hook() and 
52
 
 * set_url_hook(). Email addresses in the authors, documenters and artists properties are recognized by looking 
53
 
 * for <user@host>, URLs are recognized by looking for http://url, with the URL extending to the next space, 
 
50
 * About dialogs often contain links and email addresses. Gtk::AboutDialog supports this by offering global
 
51
 * hooks, which are called when the user clicks on a link or email address, see set_email_hook() and
 
52
 * set_url_hook(). Email addresses in the authors, documenters and artists properties are recognized by looking
 
53
 * for <user@host>, URLs are recognized by looking for http://url, with the URL extending to the next space,
54
54
 * tab or line break.
55
55
 *
56
56
 * An AboutDialog looks like this:
715
715
   */
716
716
  Glib::PropertyProxy_ReadOnly<Glib::ustring> property_logo_icon_name() const;
717
717
#endif //#GLIBMM_PROPERTIES_ENABLED
718
 
  
 
718
 
719
719
  #ifdef GLIBMM_PROPERTIES_ENABLED
720
720
/** Whether to wrap the license text.
721
721
   *
735
735
   */
736
736
  Glib::PropertyProxy_ReadOnly<bool> property_wrap_license() const;
737
737
#endif //#GLIBMM_PROPERTIES_ENABLED
738
 
  
 
738
 
739
739
 
740
740
};
741
741