~ubuntu-branches/ubuntu/vivid/file-browser-applet/vivid

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2010-01-24 14:27:25 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100124142725-g9yiibyk7zpbqcrs
Tags: 0.6.5-0ubuntu1
* New upstream bug-fix release.
 - Correct file order when on lower panel. (Closes: #557510)
* debian/control:
 - Fix typo in Vcs-Bzr field.
 - Add ${misc:Depends}
* debian/{control, rules, compat}:
 - Move to simplified dh rules.
* debian/copyright: Clean up to respect current Dep5
* debian/source/format: Moved to DebSrc version 3.0 (quilt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * File:                config.h
3
 
 * Created:             March 2008
4
 
 * Created by:          Axel von Bertoldi
5
 
 * Last Modified:       April 2009
6
 
 * Last Modified by:    Axel von Bertoldi
7
 
 * (C) 2005-2008        Axel von Bertoldi
8
 
 *
9
 
 * This program is free software; you can redistribute it and/or modify it
10
 
 * under the terms of the GNU General Public License as published by the Free
11
 
 * Software Foundation; either version 2 of the License, or (at your option)
12
 
 * any later version.
13
 
 *
14
 
 * This program is distributed in the hope that it will be useful, but WITHOUT
15
 
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
 
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17
 
 * more details.
18
 
 *
19
 
 * You should have received a copy of the GNU General Public License along with
20
 
 * this program; if not, write to:
21
 
 * The Free Software Foundation, Inc.,
22
 
 * 51 Franklin Street, Fifth Floor
23
 
 * Boston, MA 02110-1301, USA.
24
 
 */
25
 
 
26
 
#ifndef __CONFIG_H__
27
 
#define __CONFIG_H__
28
 
 
29
 
#include <glib/gi18n.h>
30
 
 
31
 
#define APP_NAME         "file-browser-applet"
32
 
#define ICON_BUTTON_SIZE 24 /* Damn! Hard-coded pixels! */
33
 
#define BUILDER_UI_PATH  "/usr/share/file-browser-applet/builder/file-browser-applet.ui"
34
 
#define PIXMAP_PATH      "/usr/share/pixmaps/"
35
 
#define LOCALEDIR        "/usr/share/locale/"
36
 
 
37
 
#define DEBUG 0
38
 
/* #undef ENABLE_HELP_DOC */
39
 
#define ENABLE_CONTEXT_MENU
40
 
#define LIBGTKHOTKEY_FOUND
41
 
 
42
 
#endif