PackageManager: Ported GUI to C
[reactos.git] / rosapps / packmgr / gui / main.h
1 ///////////////////////////////////////////////////
2 //
3 // main.h
4 // main.cpp's lumber room :)
5 ///////////////////////////////////////////////////
6
7 #include <windows.h>
8 #include <commctrl.h>
9 #include <stdio.h>
10
11 #include <package.h>
12 #include "resource.h"
13
14 /* Some Variables */
15
16 int selected, splitter_pos = 50;
17
18 pTree tree;
19 HMENU hPopup;
20 HACCEL hHotKeys;
21 HWND hTBar, hTree, hEdit, hStatus;
22 HTREEITEM nodes [MAXNODES];
23
24 /* Window Callbacks */
25
26 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
27 INT_PTR CALLBACK StatusProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
28 INT_PTR CALLBACK OptionsProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
29
30 /* Prototypes */
31
32 void Help (void);
33
34 int AddItem (int id, const char* name, int parent, int icon);
35 int SetText (const char* text);
36 int SetStatus (int status1, int status2, WCHAR* text);
37 int Ask (const WCHAR* message);
38
39 /* Toolbar Releated */
40
41 #define TBSTYLE_FLAT 2048
42
43 // This is the struct where the toolbar is defined
44 TBBUTTON Buttons [] =
45 {
46 {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0L, 0},
47
48 {0, 1, TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, 0L, 0}, // No Action
49 {1, 2, TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, 0L, 0}, // Install
50 {2, 3, TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, 0L, 0}, // Install from source
51 {3, 4, TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, 0L, 0}, // Update
52 {4, 5, TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, 0L, 0}, // Unistall
53
54 {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0L, 0},
55 {5, 6, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0L, 0}, // DoIt (tm)
56 {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0L, 0},
57
58 {6, 7, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0L, 0}, // Help
59 {7, 8, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0L, 0}, // Options
60
61 {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0L, 0},
62 };