Tue, 14 Mar 2006 06:15:31 +0000
[gaim-migrate @ 15881]
On Mon, 2006-03-13 at 15:10 -0500, Adil wrote:
> Would it be `better' to not print an error message for the event
> (because it is possible to have a chat-window for a disconnected
> account), and popup a menu with disabled entries instead?
This commit implements that. I've also removed some code duplication by having create_chat_menu() look up the prpl_info from the gc.
Also, I think we should grey out the Send File menu item when a particular user doesn't have the ability to receive files, rather than not show it. It's more consistent with what we do elsewhere. I've made that change as well.
| 13201 | 1 | /* |
| 2 | * @file gaim_buffer.h Buffer Utility Functions | |
| 3 | * @ingroup core | |
| 4 | * | |
| 5 | * Gaim is the legal property of its developers, whose names are too numerous | |
| 6 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 7 | * source distribution. | |
| 8 | * | |
| 9 | * This program is free software; you can redistribute it and/or modify | |
| 10 | * it under the terms of the GNU General Public License as published by | |
| 11 | * the Free Software Foundation; either version 2 of the License, or | |
| 12 | * (at your option) any later version. | |
| 13 | * | |
| 14 | * This program is distributed in the hope that it will be useful, | |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 | * GNU General Public License for more details. | |
| 18 | * | |
| 19 | * You should have received a copy of the GNU General Public License | |
| 20 | * along with this program; if not, write to the Free Software | |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 22 | */ | |
| 23 | #ifndef _GAIM_BUFFER_H | |
| 24 | #define _GAIM_BUFFER_H | |
| 25 | ||
| 26 | #ifdef __cplusplus | |
| 27 | extern "C" { | |
| 28 | #endif | |
| 29 | ||
| 30 | typedef struct _GaimCircBuffer { | |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
31 | |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
32 | /** A pointer to the starting address of our chunk of memory. */ |
| 13201 | 33 | gchar *buffer; |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
34 | |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
35 | /** The incremental amount to increase this buffer by when |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
36 | * the buffer is not big enough to hold incoming data, in bytes. */ |
| 13201 | 37 | gsize growsize; |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
38 | |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
39 | /** The length of this buffer, in bytes. */ |
| 13201 | 40 | gsize buflen; |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
41 | |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
42 | /** The number of bytes of this buffer that contain unread data. */ |
| 13201 | 43 | gsize bufused; |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
44 | |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
45 | /** A pointer to the next byte where new incoming data is |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
46 | * buffered to. */ |
| 13201 | 47 | gchar *inptr; |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
48 | |
|
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
49 | /** A pointer to the next byte of buffered data that should be |
|
13233
1a55c46f0a24
[gaim-migrate @ 15597]
Mark Doliner <markdoliner@pidgin.im>
parents:
13230
diff
changeset
|
50 | * read by the consumer. */ |
| 13201 | 51 | gchar *outptr; |
|
13230
44b216532ea2
[gaim-migrate @ 15594]
Mark Doliner <markdoliner@pidgin.im>
parents:
13213
diff
changeset
|
52 | |
| 13201 | 53 | } GaimCircBuffer; |
| 54 | ||
| 55 | /** | |
| 56 | * Creates a new circular buffer. This will not allocate any memory for the | |
| 57 | * actual buffer until data is appended to it. | |
| 58 | * | |
|
13213
8dcf2385a862
[gaim-migrate @ 15576]
Mark Doliner <markdoliner@pidgin.im>
parents:
13201
diff
changeset
|
59 | * @param growsize The amount that the buffer should grow the first time data |
|
8dcf2385a862
[gaim-migrate @ 15576]
Mark Doliner <markdoliner@pidgin.im>
parents:
13201
diff
changeset
|
60 | * is appended and every time more space is needed. Pass in |
|
8dcf2385a862
[gaim-migrate @ 15576]
Mark Doliner <markdoliner@pidgin.im>
parents:
13201
diff
changeset
|
61 | * "0" to use the default of 256 bytes. |
| 13201 | 62 | * |
| 63 | * @return The new GaimCircBuffer. This should be freed with | |
| 64 | * gaim_circ_buffer_destroy when you are done with it | |
| 65 | */ | |
| 66 | GaimCircBuffer *gaim_circ_buffer_new(gsize growsize); | |
| 67 | ||
| 68 | /** | |
| 69 | * Dispose of the GaimCircBuffer and free any memory used by it (including any | |
| 70 | * memory used by the internal buffer). | |
| 71 | * | |
| 72 | * @param buf The GaimCircBuffer to free | |
| 73 | */ | |
| 74 | void gaim_circ_buffer_destroy(GaimCircBuffer *buf); | |
| 75 | ||
| 76 | /** | |
|
13213
8dcf2385a862
[gaim-migrate @ 15576]
Mark Doliner <markdoliner@pidgin.im>
parents:
13201
diff
changeset
|
77 | * Append data to the GaimCircBuffer. This will grow the internal |
|
8dcf2385a862
[gaim-migrate @ 15576]
Mark Doliner <markdoliner@pidgin.im>
parents:
13201
diff
changeset
|
78 | * buffer to fit the added data, if needed. |
| 13201 | 79 | * |
| 80 | * @param buf The GaimCircBuffer to which to append the data | |
| 81 | * @param src pointer to the data to copy into the buffer | |
| 82 | * @param len number of bytes to copy into the buffer | |
| 83 | */ | |
| 84 | void gaim_circ_buffer_append(GaimCircBuffer *buf, gconstpointer src, gsize len); | |
| 85 | ||
| 86 | /** | |
| 87 | * Determine the maximum number of contiguous bytes that can be read from the | |
| 88 | * GaimCircBuffer. | |
| 89 | * Note: This may not be the total number of bytes that are buffered - a | |
| 90 | * subsequent call after calling gaim_circ_buffer_mark_read() may indicate more | |
| 91 | * data is available to read. | |
| 92 | * | |
| 93 | * @param buf the GaimCircBuffer for which to determine the maximum contiguous | |
| 94 | * bytes that can be read. | |
| 95 | * | |
| 96 | * @return the number of bytes that can be read from the GaimCircBuffer | |
| 97 | */ | |
| 98 | gsize gaim_circ_buffer_get_max_read(GaimCircBuffer *buf); | |
| 99 | ||
| 100 | /** | |
| 101 | * Mark the number of bytes that have been read from the buffer. | |
| 102 | * | |
| 103 | * @param buf The GaimCircBuffer to mark bytes read from | |
| 104 | * @param len The number of bytes to mark as read | |
| 105 | * | |
| 106 | * @return TRUE if we successfully marked the bytes as having been read, FALSE | |
| 107 | * otherwise. | |
| 108 | */ | |
| 109 | gboolean gaim_circ_buffer_mark_read(GaimCircBuffer *buf, gsize len); | |
| 110 | ||
| 111 | #ifdef __cplusplus | |
| 112 | } | |
| 113 | #endif | |
| 114 | ||
| 115 | #endif /* _GAIM_BUFFER_H */ |