about summary refs log tree commit diff stats
path: root/src/xmpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Log errors on caps responsesJames Booth2014-09-212-6/+20
|
* Handle capabilities for room participantsJames Booth2014-09-211-31/+46
|
* Fixed muc presence check, remove logging from presence handlerJames Booth2014-09-212-22/+11
|
* Removed _get_caps_key functionJames Booth2014-09-211-61/+5
|
* Added jid->hash lookup for capabilitiesJames Booth2014-09-205-19/+48
|
* Do not send caps request on self presenceJames Booth2014-09-191-1/+1
|
* wip - refactoring capabilitiesJames Booth2014-09-197-219/+309
|
* Tidied available presence handlerJames Booth2014-09-181-34/+55
|
* Added autocompletion for jid-multi form fieldsJames Booth2014-09-171-1/+11
|
* Added autocompletion for form text-multi valuesJames Booth2014-09-171-0/+19
|
* Added autocompletion for form list-multi valuesJames Booth2014-09-171-1/+1
|
* Added autocompletion for form list-single valuesJames Booth2014-09-172-0/+40
|
* Handle result of room configuration submitJames Booth2014-09-171-3/+13
|
* Show form fields after updatingJames Booth2014-09-152-0/+19
|
* Dont allow unsaved form windows to be closedJames Booth2014-09-152-0/+8
|
* Added form testsJames Booth2014-09-141-0/+2
|
* Allow removing data from text-multi form fieldsJames Booth2014-09-142-3/+76
|
* Added setting of unique form list valuesJames Booth2014-09-142-7/+25
|
* Added /room remove command, reformetted form outputJames Booth2014-09-142-0/+8
|
* Added /room add for *-multiJames Booth2014-09-142-12/+43
|
* Added form validation for list-single typeJames Booth2014-09-132-0/+27
|
* Added form type check on setJames Booth2014-09-132-2/+21
|
* form_get_field_by_var->form_get_form_type_fieldJames Booth2014-09-134-7/+7
|
* Do not tag hidden form fieldsJames Booth2014-09-131-6/+9
|
* Do not set hidden for fixed form fieldsJames Booth2014-09-131-3/+2
|
* Initialise form field tag autocompleteJames Booth2014-09-131-0/+1
|
* Added autocomplete for setting room config form tagsJames Booth2014-09-122-0/+5
|
* Check room config tag exists before settingJames Booth2014-09-122-0/+16
|
* Added setting of *-single room config valuesJames Booth2014-09-122-0/+24
|
* Added tags to form fieldsJames Booth2014-09-112-0/+17
|
* Implemented /room config submit for saving room configurationJames Booth2014-09-106-0/+144
|
* Added form field type enumJames Booth2014-09-102-0/+52
|
*
/*
 * tray.h
 * vim: expandtab:ts=4:sts=4:sw=4
 *
 * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
 *
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <https://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give permission to
 * link the code of portions of this program with the OpenSSL library under
 * certain conditions as described in each individual source file, and
 * distribute linked combinations including the two.
 *
 * You must obey the GNU General Public License in all respects for all of the
 * code used other than OpenSSL. If you modify file(s) with this exception, you
 * may extend this exception to your version of the file(s), but you are not
 * obligated to do so. If you do not wish to do so, delete this exception
 * statement from your version. If you delete this exception statement from all
 * source files in the program, then also delete it here.
 *
 */

#ifndef UI_TRAY_H
#define UI_TRAY_H

#ifdef HAVE_GTK
void tray_init(void);
void tray_update(void);
void tray_shutdown(void);

void tray_enable(void);
void tray_disable(void);

void tray_set_timer(int interval);
#endif

#endif
James Booth
2014-09-061-1/+2
| |
* | Reassign stanza name when looking for field valuesJames Booth2014-09-061-1/+2
| |
* | Rewrite form parserJames Booth2014-09-064-69/+224
| |
* | Created form moduleJames Booth2014-09-056-102/+193
| |
* | Debug room config form fieldsJames Booth2014-09-052-5/+23
| |
* | Parse data form for room configurationJames Booth2014-09-043-11/+31
| |
* | Added ID handler for room config formJames Booth2014-09-041-2/+32
| |
* | Added /room config edit and /room config cancelJames Booth2014-09-044-2/+80
|/
* Fix room config check for servers that don't send 110 statusJames Booth2014-09-041-11/+2
|
* Added /ping commandJames Booth2014-09-044-3/+45
|