~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/gtkmm2ext/gtkapplication.c

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GTK+ Integration with platform-specific application-wide features 
 
2
 * such as the OS X menubar and application delegate concepts.
 
3
 *
 
4
 * Copyright (C) 2007 Pioneer Research Center USA, Inc.
 
5
 * Copyright (C) 2007 Imendio AB
 
6
 * Copyright (C) 2009 Paul Davis
 
7
 *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public
 
10
 * License as published by the Free Software Foundation; version 2.1
 
11
 * of the License.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library; if not, write to the
 
20
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
21
 * Boston, MA 02111-1307, USA.
 
22
 */
 
23
 
 
24
#include <gtkmm2ext/gtkapplication.h>
 
25
#include <gtkmm2ext/gtkapplication-private.h>
 
26
 
 
27
GList *_gtk_application_menu_groups = NULL;
 
28
 
 
29
GtkApplicationMenuGroup *
 
30
gtk_application_add_app_menu_group (void)
 
31
{
 
32
  GtkApplicationMenuGroup *group = g_slice_new0 (GtkApplicationMenuGroup);
 
33
  _gtk_application_menu_groups = g_list_append (_gtk_application_menu_groups, group);
 
34
  return group;
 
35
}
 
36