Mercurial > pidgin
annotate plugins/docklet/Makefile.am @ 12174:c7652a910308
[gaim-migrate @ 14476]
KingAnt said:
"And if double-clicking loads a plugin, then double-clicking
again must unload the plugin. However, I think it's better
if double-clicking either opens the preferences or does nothing."
I disagree that double-clicking again must undo what happened from the first time, and in this case, that would totally defeat the goal. Given that this is possibly confusing no matter how we do it, let's take the safest route and not enable the plugin if it's not already. This still accomplishes my main goal of being able to double-click on a plugin I'm using to see its prefs.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 20 Nov 2005 22:09:24 +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) |