Sun, 26 Dec 2004 23:37:55 +0000
[gaim-migrate @ 11679]
Shuffle some stuff around for uniformity, and call the accounts.xml
loading function from gaim_accounts_init()
| 10418 | 1 | /** |
| 2 | * @file gtksavedstatus.h GTK+ Saved Status Editor UI | |
| 3 | * @ingroup gtkui | |
| 4 | * | |
| 5 | * gaim | |
| 6 | * | |
| 7 | * Gaim is the legal property of its developers, whose names are too numerous | |
| 8 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 | * source distribution. | |
| 10 | * | |
| 11 | * This program is free software; you can redistribute it and/or modify | |
| 12 | * it under the terms of the GNU General Public License as published by | |
| 13 | * the Free Software Foundation; either version 2 of the License, or | |
| 14 | * (at your option) any later version. | |
| 15 | * | |
| 16 | * This program is distributed in the hope that it will be useful, | |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 | * GNU General Public License for more details. | |
| 20 | * | |
| 21 | * You should have received a copy of the GNU General Public License | |
| 22 | * along with this program; if not, write to the Free Software | |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 | */ | |
| 25 | #ifndef _GAIM_GTKSAVEDSTATUSES_H_ | |
| 26 | #define _GAIM_GTKSAVEDSTATUSES_H_ | |
| 27 | ||
|
10421
34797f8b5742
[gaim-migrate @ 11672]
Mark Doliner <markdoliner@pidgin.im>
parents:
10418
diff
changeset
|
28 | #include "savedstatuses.h" |
| 10418 | 29 | #include "status.h" |
| 30 | ||
| 31 | /** | |
| 32 | * Shows the status window. | |
| 33 | */ | |
| 34 | void gaim_gtk_status_window_show(void); | |
| 35 | ||
| 36 | /** | |
| 37 | * Hides the status window. | |
| 38 | */ | |
| 39 | void gaim_gtk_status_window_hide(void); | |
| 40 | ||
| 41 | /** | |
|
10421
34797f8b5742
[gaim-migrate @ 11672]
Mark Doliner <markdoliner@pidgin.im>
parents:
10418
diff
changeset
|
42 | * Shows a status editor (used for editing a single saved status). |
|
34797f8b5742
[gaim-migrate @ 11672]
Mark Doliner <markdoliner@pidgin.im>
parents:
10418
diff
changeset
|
43 | */ |
|
34797f8b5742
[gaim-migrate @ 11672]
Mark Doliner <markdoliner@pidgin.im>
parents:
10418
diff
changeset
|
44 | void gaim_gtk_status_editor_show(GaimSavedStatus *status); |
|
34797f8b5742
[gaim-migrate @ 11672]
Mark Doliner <markdoliner@pidgin.im>
parents:
10418
diff
changeset
|
45 | |
|
34797f8b5742
[gaim-migrate @ 11672]
Mark Doliner <markdoliner@pidgin.im>
parents:
10418
diff
changeset
|
46 | /** |
| 10418 | 47 | * Returns the gtkstatus handle. |
| 48 | * | |
| 49 | * @return The handle to the GTK+ status system. | |
| 50 | */ | |
| 51 | void *gaim_gtk_status_get_handle(void); | |
| 52 | ||
| 53 | /** | |
| 54 | * Initializes the GTK+ status system. | |
| 55 | */ | |
| 56 | void gaim_gtk_status_init(void); | |
| 57 | ||
| 58 | /** | |
| 59 | * Uninitializes the GTK+ status system. | |
| 60 | */ | |
| 61 | void gaim_gtk_status_uninit(void); | |
| 62 | ||
| 63 | #endif /* _GAIM_GTKSAVEDSTATUSES_H_ */ |