This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui_dialogs.h
52 lines (36 loc) · 2.04 KB
/
ui_dialogs.h
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
/*
Konnekt UI
Nag³ówek list dialogowych
*/
int CALLBACK PropClassProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK InfoDialogProc(HWND hwndDlg,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK MsgDialogProc(HWND hwndDlg,UINT message,WPARAM wParam,LPARAM lParam);
INT_PTR CALLBACK EditMsgControlProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
INT_PTR CALLBACK ConfigDialogProc(HWND hwndDlg,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK PassDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK EnterDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK ButtonsDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK LongDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK AboutDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK IgnoreDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK GroupsDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK SearchDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK ServerEventDialogProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
int CALLBACK TokenDialogProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
void onSizeMsg(HWND hwnd , int w , int h , bool bar=1);
void IgnoreDialogShow(bool show = true);
void GroupsDialogShow(bool show = true);
void ServerEventDialogFill();
void ServerEventDialogNext();
void SearchDialogAddCnt(HWND hwndDlg , int item);
void SearchDialogAdd(HWND hwndDlg , sCNTSEARCH * res);
void InfoDialogLoad(HWND hwndDlg , int pos);
void InfoDialogSave(int cntID , bool upload);
void InfoDialogCancel(int cntID , HWND hwnd=0);
void InfoDialogRefresh(int cntID );
void InfoDialogSummary(int cnt , bool local = false);
string InfoGetDisplay(int cntID);
void ConfigDialogOpen (int id);
void MsgCreateWindows(HWND hwndOwner , sUICnt * cnt);;
int StartLong(sDIALOG_long * sd);
void StopLong(sDIALOG_long * sd);