~ubuntu-branches/ubuntu/trusty/xfce4-panel/trusty-proposed

« back to all changes in this revision

Viewing changes to NOTES

  • Committer: Bazaar Package Importer
  • Author(s): Simon Huggins
  • Date: 2004-06-08 10:44:21 UTC
  • Revision ID: james.westby@ubuntu.com-20040608104421-b0b77kis8o0uoi6q
Tags: upstream-4.0.5
ImportĀ upstreamĀ versionĀ 4.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Developer notes:
 
2
----------------
 
3
 
 
4
        * I18n: Do NOT ever edit the po/Makefile.in.in or run glib-gettextize
 
5
          or gettextize in this directory, as it'll break the locales
 
6
          install stuff. If you think you need to change something,
 
7
          ask Benedikt Meurer first (benedikt.meurer@unix-ag.uni-siegen.de).
 
8
 
 
9
        * Theres now a xfce4-panel-1.0.pc file for use with external panel
 
10
          plugins. In addition the panel header files are now installed into
 
11
          $(includedir)/xfce4/panel, so if you want to use them in your
 
12
          code, refer to them as <panel/whatever.h>.
 
13
          To compile a panel plugin add the output of
 
14
          
 
15
                pkg-config --cflags xfce4-panel-1.0
 
16
        
 
17
          to your CFLAGS and the output of
 
18
          
 
19
                pkg-config --libs xfce4-panel-1.0
 
20
        
 
21
          to your LIBS. The plugin needs to be installed into the panels
 
22
          plugin in order to be found by the panel. To get the path to
 
23
          the plugins directory use the following command:
 
24
 
 
25
                pkg-config --variable=pluginsdir xfce4-panel-1.0
 
26
 
 
27
          Have fun with writing new panel plugins.