Refactoring window types, removing recipient and from references - wip
This commit is contained in:
@@ -44,14 +44,28 @@ ProfWin * wins_new_muc_config(const char * const title, DataForm *form);
|
||||
ProfWin * wins_new_private(const char * const fulljid);
|
||||
|
||||
ProfWin * wins_get_console(void);
|
||||
ProfChatWin *wins_get_chat(const char * const barejid);
|
||||
ProfMucWin * wins_get_muc_win(const char * const roomjid);
|
||||
ProfMucConfWin * wins_get_muc_conf_win(const char * const title);
|
||||
ProfPrivateWin *wins_get_private(const char * const fulljid);
|
||||
|
||||
// TODO remove
|
||||
//ProfWin * wins_get_by_recipient(const char * const recipient);
|
||||
|
||||
ProfWin * wins_get_current(void);
|
||||
ProfChatWin * wins_get_current_chat(void);
|
||||
ProfMucWin * wins_get_current_muc(void);
|
||||
ProfPrivateWin * wins_get_current_private(void);
|
||||
ProfMucConfWin * wins_get_current_muc_conf(void);
|
||||
|
||||
void wins_set_current_by_num(int i);
|
||||
|
||||
ProfWin * wins_get_by_num(int i);
|
||||
ProfChatWin * wins_get_chat_by_num(int i);
|
||||
ProfMucWin * wins_get_muc_by_num(int i);
|
||||
|
||||
ProfWin * wins_get_next(void);
|
||||
ProfWin * wins_get_previous(void);
|
||||
ProfWin * wins_get_by_recipient(const char * const recipient);
|
||||
int wins_get_num(ProfWin *window);
|
||||
int wins_get_current_num(void);
|
||||
void wins_close_current(void);
|
||||
|
||||
Reference in New Issue
Block a user