Mercurial > pidgin
annotate src/gnome_applet_mgr.h @ 936:311b3f72e7b9
[gaim-migrate @ 946]
Sha la la la la la la, mmm, uh huh
Was down at the linux expo, starin' at this blue octane,
Mr. Flynn strikes up a conversation, with a black haired CS Major.
She codes in C while her father hacks, oh, she's suddenly geeky.
We all want something geeky, man I wish I was geeky.
So come hack in silence down through the morning,
sha la la la la la la la, yeah, uhh huh, yeah.
Cut up Mark Spencer, show me some of that free software, and pass
me a laptop, Mr. Flynn!
Believe in me! Help me believe in anything, cuz, I wanna be someone
geeky! Mr. Flynn and Me, tell each other linux tales, and we stare
at the beautiful penguins, it's lookin' at you, oh no no, it's looking
at me. Smiling in the CRT, Mp3's on the stero, when everyone's geeky,
you can never be lonely. Well I'm gonna hack a program, syntax highlighting
in blue and red and black and grey. All of the beautiful colours are very
very meaningingful.
Well you know C is my favorite language, I felt
so symbolic yesterday. If I knew R. Stallman, I'd buy myself a grey keyboard
and hack! Mr. Flynn and me look into the future! We stare at the beautiful
Penguins, it's lookin at me, I dont think so, It's looking at me. Hacking in
the CRT, I bought myself a grey keyboard, When everbody's geeky, I will never
be lonely. I will never be lonely. I'm never gonna be .. loonely.
I wanna be a penguin. Eeh -- everybody wanna pass as birds, they all wanna be
big big birds, but we got different reasons for that. Believe in me, cuz I
don't believe in anything. And I, wanna be someone, geeky, geeky, geeky,
yeaaaah! Mr. Flynn and me, storming through the expo, and we stare at the
beautiful penguin! It's coming for you, man there's got to be one for me!
I wanna be L. Torvalds, Mr. Flynn wishes he was someone just a little more
geeky, when everybody loves you, oh son! It's just about as geeky as you can
be! Mr. Flynn and me .. starin' at the penguins, when I look at slashdot I
wanna see me, staring right back at me. We all wanna be big geeks, but we
dont know why and we don't know how .. when everybody loves me I'll be just
about as geeky as I can be ... Mr. Flynn and me.. gonna be big geeks.
**bows and cheers**
Thank You, Thank You.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Sun, 24 Sep 2000 22:48:54 +0000 |
parents | 626975d79bff |
children | 38452403563b |
rev | line source |
---|---|
1 | 1 /************************************************************** |
2 ** | |
3 ** GaimGnomeAppletMgr | |
4 ** Author - Quinticent (John Palmieri: johnp@martianrock.com) | |
5 ** | |
6 ** Purpose - Takes over the task of managing the GNOME applet | |
7 ** code and provides a centralized codebase for | |
8 ** GNOME integration for Gaim. | |
9 ** | |
10 ** Legal Stuff - | |
11 ** | |
12 ** gaim | |
13 ** | |
14 ** Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
15 ** | |
16 ** This program is free software; you can redistribute it and/or modify | |
17 ** it under the terms of the GNU General Public License as published by | |
18 ** the Free Software Foundation; either version 2 of the License, or | |
19 ** (at your option) any later version. | |
20 ** | |
21 ** This program is distributed in the hope that it will be useful, | |
22 ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 ** GNU General Public License for more details. | |
25 ** | |
26 ** You should have received a copy of the GNU General Public License | |
27 ** along with this program; if not, write to the Free Software | |
28 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
29 ** | |
30 **************************************************************/ | |
31 #ifndef _GAIMGNOMEAPPLETMGR_H_ | |
32 #define _GAIMGNOMEAPPLETMGR_H_ | |
33 #ifdef USE_APPLET | |
34 | |
35 #include <gnome.h> | |
36 #include <gtk/gtk.h> | |
37 #include <stdio.h> | |
38 #include <string.h> | |
39 #include <stdarg.h> | |
40 #include <stdlib.h> | |
41 #include <applet-widget.h> | |
42 | |
43 enum gaim_user_states { | |
44 offline = 0, | |
45 signing_on, | |
46 online, | |
47 away | |
48 }; | |
49 | |
50 | |
51 #define _MSG_OFFLINE_ "Offline" | |
52 #define _MSG_CONNECT_ "Connecting" | |
53 #define _MSG_ONLINE_ "Online" | |
54 #define _MSG_FONT_ "-adobe-helvetica-medium-r-normal-*-*-80-*-*-p-*-iso8859-1" | |
55 | |
82 | 56 #define GAIM_GNOME_DEVIL_OFFLINE "gaim/gnome/devil-offline.png" |
57 #define GAIM_GNOME_DEVIL_CONNECT "gaim/gnome/devil-connect.png" | |
58 #define GAIM_GNOME_DEVIL_ONLINE "gaim/gnome/devil-online.png" | |
1 | 59 |
82 | 60 #define GAIM_GNOME_PENGUIN_OFFLINE "gaim/gnome/penguin-offline.png" |
61 #define GAIM_GNOME_PENGUIN_CONNECT "gaim/gnome/penguin-connect.png" | |
62 #define GAIM_GNOME_PENGUIN_ONLINE "gaim/gnome/penguin-online.png" | |
1 | 63 |
776
626975d79bff
[gaim-migrate @ 786]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
746
diff
changeset
|
64 #define GAIM_GNOME_OFFLINE_ICON "apple-red.png" |
626975d79bff
[gaim-migrate @ 786]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
746
diff
changeset
|
65 #define GAIM_GNOME_CONNECT_ICON "gnome-battery.png" |
626975d79bff
[gaim-migrate @ 786]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
746
diff
changeset
|
66 #define GAIM_GNOME_ONLINE_ICON "apple-green.png" |
626975d79bff
[gaim-migrate @ 786]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
746
diff
changeset
|
67 |
411
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
68 extern gint init_applet_mgr(); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
69 extern void applet_do_signon(AppletWidget *, gpointer); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
70 extern void make_buddy(); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
71 extern void cancel_logon(); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
72 extern gint applet_destroy_buddy(GtkWidget *, GdkEvent *, gpointer *); |
1 | 73 |
746
5a908dd5cfc4
[gaim-migrate @ 756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
411
diff
changeset
|
74 extern void set_user_state( enum gaim_user_states state ); |
1 | 75 |
411
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
76 extern void insert_applet_away(); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
77 extern void remove_applet_away(); |
1 | 78 |
411
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
79 extern void update_pixmaps(); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
80 extern void applet_set_tooltips(char *); |
a330017b3aa4
[gaim-migrate @ 421]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
342
diff
changeset
|
81 extern void dologin(GtkWidget *, GtkWidget *); |
1 | 82 |
746
5a908dd5cfc4
[gaim-migrate @ 756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
411
diff
changeset
|
83 extern gboolean applet_buddy_show; |
5a908dd5cfc4
[gaim-migrate @ 756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
411
diff
changeset
|
84 |
1 | 85 #endif /*USE_APPLET*/ |
86 #endif /*_GAIMGNOMEAPPLETMGR_H_*/ |