~bratsche/ubuntu/maverick/gtk+2.0/menu-activation-fix

« back to all changes in this revision

Viewing changes to gdk-pixbuf/gdk-pixbuf-csource.1

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-07-22 21:41:30 UTC
  • mfrom: (1.11.7 upstream) (72.1.16 experimental)
  • Revision ID: james.westby@ubuntu.com-20100722214130-5uzyvpb9g4m0ts2c
Tags: 2.21.5-1ubuntu1
* Merge with Debian experimental, Ubuntu changes:
* debian/control.in:
  - Add introspection build-depends
  - Add Vcs-Bzr link
  - Add gir1.0-gtk-2.0 package
  - libgtk2.0-dev replaces gir-repository-dev
  - Conflict with appmenu-gtk (<< 0.1.3) to prevent menu proxy breakage
* debian/rules:
  - Build with --enable-introspection
  - Add gir1.0-gtk-2.0 package to BINARY_ARCH_PKGS
  - Add dh_girepository call
  - Disable devhelp files
* debian/dh_gtkmodules.in:
  - Remove obsolete script content
* debian/libgtk2.0-0.symbols:
  - Add Ubuntu specific symbols
* debian/libgtk2.0-dev.install.in:
  - Add gir files
* debian/libgtk2.0-doc.install.in
  - Disable devhelp files
* debian/gir1.0-gtk-2.0.install.in
  - Introspection package
* debian/patches/043_menu_proxy.patch
  - Add GtkMenuProxy support for remoting menus.
* debian/patches/062_dnd_menubar.patch:
  - Allow click on menubars for dnd
* debian/patches/063_treeview_almost_fixed.patch:
  - Add an ubuntu-almost-fixed-height-mode property, (required for
    software-center)
* debian/patches/071_no_offscreen_widgets_grabbing.patch:
  - Don't let offscreen widgets do grabbing
* debian/patches/072_indicator_menu_update.patch:
  - change by Cody Russell to send an update event on menu changes,
    should make the bluetooth indicator refresh correctly
* debian/patches/091_bugzilla_tooltip_refresh.patch:
  - Upstream bugzilla change to have better looking tooltips the gtk theme
    need to set "new-tooltip-style" to use those
* debian/watch:
  - Watch for unstable versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH GDK-PIXBUF-CSOURCE 1 "04 Sep 2001"
2
 
.SH NAME
3
 
gdk-pixbuf-csource \- C code generation utility for GdkPixbuf images
4
 
.SH SYNOPSIS
5
 
 
6
 
\fBgdk-pixbuf-csource\fP [\fIoptions\fP] [\fIimage\fP]
7
 
.br
8
 
\fBgdk-pixbuf-csource\fP [\fIoptions\fP] \fI--build-list\fP [[\fIname image\fP]...]
9
 
 
10
 
.SH DESCRIPTION
11
 
\fBgdk-pixbuf-csource\fP is a small utility that generates C code containing
12
 
images, useful for compiling images directly into programs.
13
 
 
14
 
.SH INVOCATION
15
 
 
16
 
\fBgdk-pixbuf-csource\fP either takes as input one image file name to generate code
17
 
for, or, using the \fI--build-list\fP option, a list of (\fIname\fP, \fIimage\fP)
18
 
pairs to generate code for a list of images into named variables.
19
 
 
20
 
.SS Options
21
 
.TP
22
 
\fI--stream
23
 
Generate pixbuf data stream (a single string containing a serialized
24
 
GdkPixdata structure in network byte order).
25
 
 
26
 
.TP
27
 
\fI--struct
28
 
Generate GdkPixdata structure (needs the GdkPixdata structure definition from
29
 
gdk-pixdata.h).
30
 
 
31
 
.TP
32
 
\fI--macros
33
 
Generate *_ROWSTRIDE, *_WIDTH, *_HEIGHT, *_BYTES_PER_PIXEL and
34
 
*_RLE_PIXEL_DATA or *_PIXEL_DATA macro definitions for the image.
35
 
 
36
 
.TP
37
 
\fI--rle
38
 
Enables run-length encoding for the generated pixel data (default).
39
 
 
40
 
.TP
41
 
\fI--raw
42
 
Disables run-length encoding for the generated pixel data.
43
 
 
44
 
.TP
45
 
\fI--extern
46
 
Generate extern symbols.
47
 
 
48
 
.TP
49
 
\fI--static
50
 
Generate static symbols (default).
51
 
 
52
 
.TP
53
 
\fI--decoder
54
 
Provide a *_RUN_LENGTH_DECODE(image_buf, rle_data, size, bpp) macro definition
55
 
to decode run-length encoded image data.
56
 
 
57
 
.TP
58
 
\fI--name=identifier
59
 
Specifies the identifier name (prefix) for the generated variables or
60
 
macros (useful only if \fI--build-list\fP was not specified).
61
 
 
62
 
.TP
63
 
\fI--build-list
64
 
Enables (\fIname\fP, \fIimage\fP) pair parsing mode.
65
 
 
66
 
.TP
67
 
\fI-h, --help\fP 
68
 
Print brief help and exit.
69
 
 
70
 
.TP
71
 
\fI-v, --version\fP
72
 
Print version and exit.
73
 
 
74
 
.TP
75
 
\fI--g-fatal-warnings
76
 
Make warnings fatal (causes the program to abort).
77
 
 
78
 
.PP
79
 
 
80
 
.SH SEE ALSO
81
 
The \fIGdkPixbuf\fP documentation, shipped with the \fIGtk+\fP distribution,
82
 
available from \fIhttp://www.gtk.org\fP.
83
 
 
84
 
.SH BUGS 
85
 
None known yet.
86
 
 
87
 
.SH AUTHOR
88
 
.B gdk-pixbuf-csource
89
 
was written by Tim Janik <timj@gtk.org>.
90
 
.PP
91
 
This manual page was provided by Tim Janik <timj@gtk.org>.