~ubuntu-branches/ubuntu/intrepid/gucharmap/intrepid

« back to all changes in this revision

Viewing changes to gucharmap/gucharmap.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-23 16:06:03 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20080723160603-v1bhy95d83nushuz
Tags: 1:2.23.4-0ubuntu1
* New Upstream Release (LP: #251505)
* Added python bindings
* updated 01_lpi.dpatch, and 02_autoconf.patch for
  new upstream version
* updated control file for new soname gucharmap7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: gucharmap.h 682 2004-01-30 07:33:04Z nlevitt $ */
2
1
/*
3
 
 * Copyright (c) 2004 Noah Levitt
 
2
 * Copyright © 2004 Noah Levitt
 
3
 * Copyright © 2008 Christian Persch
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify it
6
6
 * under the terms of the GNU General Public License as published by the
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License along
16
16
 * with this program; if not, write to the Free Software Foundation, Inc.,
17
 
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 
17
 * 59 Temple Place, Suite 330, Boston, MA 02110-1301  USA
18
18
 */
19
19
 
20
20
#ifndef GUCHARMAP_H
21
21
#define GUCHARMAP_H
22
22
 
23
 
#include <gucharmap/gucharmap-table.h>
 
23
#define __GUCHARMAP_GUCHARMAP_H_INSIDE__
 
24
 
 
25
#define GUCHARMAP_VERSION_MAJOR (2)
 
26
#define GUCHARMAP_VERSION_MINOR (23)
 
27
#define GUCHARMAP_VERSION_MICRO (4)
 
28
 
 
29
#define GUCHARMAP_CHECK_VERSION(major,minor,micro) \
 
30
  (GUCHARMAP_VERSION_MAJOR > (major) || \
 
31
   (GUCHARMAP_VERSION_MAJOR == (major) && GUCHARMAP_VERSION_MINOR > (minor)) || \
 
32
   (GUCHARMAP_VERSION_MAJOR == (major) && GUCHARMAP_VERSION_MINOR == (minor) && GUCHARMAP_VERSION_MICRO >= (micro)))
 
33
 
 
34
#include <gucharmap/gucharmap-codepoint-list.h>
 
35
#include <gucharmap/gucharmap-block-codepoint-list.h>
 
36
#include <gucharmap/gucharmap-script-codepoint-list.h>
 
37
 
 
38
#include <gucharmap/gucharmap-chapters-model.h>
 
39
#include <gucharmap/gucharmap-block-chapters-model.h>
 
40
#include <gucharmap/gucharmap-script-chapters-model.h>
 
41
 
 
42
#include <gucharmap/gucharmap-chartable.h>
24
43
#include <gucharmap/gucharmap-charmap.h>
25
 
#include <gucharmap/gucharmap-window.h>
 
44
 
 
45
#include <gucharmap/gucharmap-type-builtins.h>
 
46
 
26
47
#include <gucharmap/gucharmap-unicode-info.h>
27
 
#include <gucharmap/gucharmap-mini-fontsel.h>
28
 
#include <gucharmap/gucharmap-codepoint-list.h>
29
 
#include <gucharmap/gucharmap-script-codepoint-list.h>
30
 
#include <gucharmap/gucharmap-chapters.h>
31
 
#include <gucharmap/gucharmap-block-chapters.h>
32
 
#include <gucharmap/gucharmap-script-chapters.h>
33
 
#include <gucharmap/gucharmap-search-dialog.h>
 
48
 
 
49
#undef __GUCHARMAP_GUCHARMAP_H_INSIDE__
34
50
 
35
51
#endif /* #ifndef GUCHARMAP_H */