Mercurial > pidgin
annotate plugins/docklet/Makefile.am @ 12744:fcd9477e4476
[gaim-migrate @ 15091]
" Adds an emblem to a buddy if they have a queued message
(hidden conversation). In the large buddy list it is
added in the northwest corner, sliding the existing
northwest emblem (if specified) to the northeast
position and discarding the northeast emblem. In the
small buddy list, the emblem is added to the southeast.
Attached is a patch and an emblem image to be dropped
in pixmaps/status/default/. The emblem image is a
scaled down version of the send-im.png image." -- Casey Harkins
as I asked for this patch, and since there don't seem to be objections to
it (yet), I'm going ahead and applying it.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 06 Jan 2006 04:46:00 +0000 |
parents | cae2fb7e8594 |
children | 42e6c5e038d8 |
rev | line source |
---|---|
6198
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6077
diff
changeset
|
1 EXTRA_DIST = \ |
11709
cae2fb7e8594
[gaim-migrate @ 14000]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10889
diff
changeset
|
2 Makefile.mingw \ |
cae2fb7e8594
[gaim-migrate @ 14000]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10889
diff
changeset
|
3 docklet-win32.c \ |
cae2fb7e8594
[gaim-migrate @ 14000]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10889
diff
changeset
|
4 MinimizeToTray.c \ |
cae2fb7e8594
[gaim-migrate @ 14000]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10889
diff
changeset
|
5 MinimizeToTray.h |
6198
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6077
diff
changeset
|
6 |
3510 | 7 plugindir = $(libdir)/gaim |
8 | |
10889 | 9 docklet_la_LDFLAGS = -module -avoid-version $(GTK_LIBS) |
3510 | 10 |
11 if PLUGINS | |
12 | |
13 plugin_LTLIBRARIES = docklet.la | |
14 | |
15 docklet_la_SOURCES = \ | |
6208
3e3ee3cba192
[gaim-migrate @ 6694]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6198
diff
changeset
|
16 eggtrayicon.h \ |
3e3ee3cba192
[gaim-migrate @ 6694]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6198
diff
changeset
|
17 eggtrayicon.c \ |
6077
b2c8e08508af
[gaim-migrate @ 6536]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
18 docklet.h \ |
3510 | 19 docklet.c \ |
6208
3e3ee3cba192
[gaim-migrate @ 6694]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6198
diff
changeset
|
20 docklet-x11.c |
3510 | 21 |
22 endif | |
23 | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
24 AM_CPPFLAGS = \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
25 -DDATADIR=\"$(datadir)\" \ |
3510 | 26 -DVERSION=\"$(VERSION)\" \ |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
27 -I$(top_srcdir)/src \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
28 $(DEBUG_CFLAGS) \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
29 $(GTK_CFLAGS) |