summary refs log tree commit diff stats
path: root/.gitignore
diff options
context:
space:
mode:
authorWojciech Siewierski <wojciech.siewierski@onet.pl>2018-08-19 21:43:08 +0200
committerGitHub <noreply@github.com>2018-08-19 21:43:08 +0200
commitc940298fa67c2d97b46caebcacc46b0cd699fbb9 (patch)
tree415d033119ca6d0e5fd67a336abcf8f0a503cce7 /.gitignore
parent5f33450debfdb21477b7a9068c4b8a84ffd6c355 (diff)
parent5edd2c0f59d7f73c38b49f528d3578dca9e5162b (diff)
downloadranger-c940298fa67c2d97b46caebcacc46b0cd699fbb9.tar.gz
Merge pull request #1235 from hektr/patch-1
Update PYTHON variable
Diffstat (limited to '.gitignore')
0 files changed, 0 insertions, 0 deletions
18 00:07:15 +0100 committer James Booth <boothj5@gmail.com> 2016-04-18 00:07:15 +0100 Moved gtk specific code to tray.c' href='/danisanti/profani-tty/commit/src/tray.h?id=de65f505a80ab2cee79fbcc01d24c9eed01691e1'>de65f505 ^
12727744 ^
de65f505 ^
520eee23 ^





12727744 ^
520eee23 ^


12727744 ^
dc0c3cc6 ^
c6a6e3a5 ^

dc0c3cc6 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56


         
                                                            













                                                                       
                                                                      














                                                                                

                 
 

                       
                         
 





                                                                                  
                       


                    
                        
 

                                  
      
/*
 * tray.h
 *
 * Copyright (C) 2012 - 2016 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

void tray_init(void);
void tray_update(void);
void tray_shutdown(void);

/*
 * Create tray icon
 *
 * This will initialize the timer that will be called in order to change the icons
 * and will search the icons in the defaults paths
 */
void tray_enable(void);
/*
 * Destroy tray icon
 */
void tray_disable(void);

void tray_set_timer(int interval);

#endif