mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Tidied new headers, added defines
This commit is contained in:
parent
f0f0dbfdac
commit
e2443511b6
@ -19,15 +19,21 @@
|
|||||||
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void create_status_bar(void);
|
|
||||||
void status_bar_update_virtual(void);
|
#ifndef UI_STATUSBAR_H
|
||||||
void status_bar_resize(void);
|
#define UI_STATUSBAR_H
|
||||||
void status_bar_clear(void);
|
|
||||||
void status_bar_clear_message(void);
|
void create_status_bar(void);
|
||||||
void status_bar_get_password(void);
|
void status_bar_update_virtual(void);
|
||||||
void status_bar_print_message(const char * const msg);
|
void status_bar_resize(void);
|
||||||
void status_bar_inactive(const int win);
|
void status_bar_clear(void);
|
||||||
void status_bar_active(const int win);
|
void status_bar_clear_message(void);
|
||||||
void status_bar_new(const int win);
|
void status_bar_get_password(void);
|
||||||
void status_bar_set_all_inactive(void);
|
void status_bar_print_message(const char * const msg);
|
||||||
void status_bar_current(int i);
|
void status_bar_inactive(const int win);
|
||||||
|
void status_bar_active(const int win);
|
||||||
|
void status_bar_new(const int win);
|
||||||
|
void status_bar_set_all_inactive(void);
|
||||||
|
void status_bar_current(int i);
|
||||||
|
|
||||||
|
#endif
|
@ -20,6 +20,9 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef UI_TITLEBAR_H
|
||||||
|
#define UI_TITLEBAR_H
|
||||||
|
|
||||||
void create_title_bar(void);
|
void create_title_bar(void);
|
||||||
void title_bar_update_virtual(void);
|
void title_bar_update_virtual(void);
|
||||||
void title_bar_resize(void);
|
void title_bar_resize(void);
|
||||||
@ -27,3 +30,5 @@ void title_bar_console(void);
|
|||||||
void title_bar_set_presence(contact_presence_t presence);
|
void title_bar_set_presence(contact_presence_t presence);
|
||||||
void title_bar_set_recipient(const char * const from);
|
void title_bar_set_recipient(const char * const from);
|
||||||
void title_bar_set_typing(gboolean is_typing);
|
void title_bar_set_typing(gboolean is_typing);
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user