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

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2009-02-13 21:33:45 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090213213345-gowiib2ifj0hmjb3
Tags: 0.6.1-0ubuntu1
* New upstream release. (LP: #329282)
 - Added mnemonic keyboard shortcut to menus for 
   faster keyboard navigation.
 - Added recent documents' support.
 - Improved menu browser focus after context menu close.
 - Fixed bugs #43, 44, 45, 49, 51, 56, 59, 60, 62.
* debian/control:
 - Update Vcs-Bzr field.

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:               August 2008
 
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 GLADEUI_PATH     "/usr/share/file-browser-applet/glade/file-browser-applet.glade"
 
34
#define PIXMAP_PATH          "/usr/share/pixmaps/"
 
35
#define LOCALEDIR                "/usr/share/locale/"
 
36
 
 
37
#define DEBUG 0
 
38
#define ENABLE_HELP_DOC
 
39
#define ENABLE_CONTEXT_MENU
 
40
#define LIBGTKHOTKEY_FOUND
 
41
 
 
42
#endif