about summary refs log tree commit diff stats
path: root/src/makefile.wsl
Commit message (Expand)AuthorAgeFilesLines
* snapshot of project "lynx", label v2-8-2dev_23Thomas E. Dickey1999-04-231-0/+1
* snapshot of project "lynx", label v2-8-2dev_22Thomas E. Dickey1999-04-131-1/+1
* snapshot of project "lynx", label v2-8-2dev_13Thomas E. Dickey1999-01-131-1/+1
* snapshot of project "lynx", label v2-8-2dev_4Thomas E. Dickey1998-11-181-20/+21
* snapshot of project "lynx", label v2-8-2dev_2Thomas E. Dickey1998-11-101-0/+62
* snapshot of project "lynx", label v2-8-1dev_4Thomas E. Dickey1998-11-061-62/+0
* snapshot of project "lynx", label v2-8-1dev_21Thomas E. Dickey1998-08-151-1/+1
* snapshot of project "lynx", label v2-8-1dev_20Thomas E. Dickey1998-08-061-1/+1
* snapshot of project "lynx", label v2-8-1dev_11Thomas E. Dickey1998-05-141-2/+2
* snapshot of project "lynx", label v2-8-1dev_10Thomas E. Dickey1998-05-111-0/+62
n' href='/danisanti/profani-tty/blame/src/ui/statusbar.h?id=0b47bba6cc8ab5267aebb7eeb8f691f87140184d'>^
f0f0dbfd ^
e2443511 ^



105c9c29 ^
95b639a2 ^
105c9c29 ^
e2443511 ^
95b639a2 ^
4bf67fb3 ^


e2443511 ^

5cdd69f4 ^
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

              
                                 
  
                                                            













                                                                       
                                                                      
  











                                                                                
   



                      
                           
                           
                            
                             
                                                     


                                                       

                               
      
/*
 * statusbar.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_STATUSBAR_H
#define UI_STATUSBAR_H

void status_bar_init(void);
void status_bar_draw(void);
void status_bar_close(void);
void status_bar_resize(void);
void status_bar_set_prompt(const char *const prompt);
void status_bar_clear_prompt(void);
void status_bar_set_fulljid(const char *const fulljid);
void status_bar_clear_fulljid(void);
void status_bar_current(int i);

#endif