]> cygwin.com Git - cygwin-apps/setup.git/blob - choose.h
* prereq.cc (PrereqChecker::getUnmetString): Improve dependency list
[cygwin-apps/setup.git] / choose.h
1 /*
2 * Copyright (c) 2000, Red Hat, Inc.
3 * Copyright (c) 2003 Robert Collins <rbtcollins@hotmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * A copy of the GNU General Public License can be found at
11 * http://www.gnu.org/
12 *
13 * Written by Robert Collins <rbtcollins@hotmail.com>
14 *
15 */
16
17 #ifndef SETUP_CHOOSE_H
18 #define SETUP_CHOOSE_H
19
20 #include "proppage.h"
21 #include "package_meta.h"
22 #include "PickView.h"
23
24
25 class ChooserPage:public PropertyPage
26 {
27 public:
28 ChooserPage ();
29 ~ChooserPage ();
30
31 virtual bool OnMessageCmd (int id, HWND hwndctl, UINT code);
32 virtual BOOL CALLBACK OnMouseWheel (UINT message, WPARAM wParam,
33 LPARAM lParam);
34
35 bool Create ();
36 virtual void OnInit ();
37 virtual long OnNext ();
38 virtual long OnBack ();
39 virtual void OnActivate ();
40 virtual long OnUnattended ();
41
42 static void SetHwndDialog (HWND h)
43 {
44 ins_dialog = h;
45 }
46 private:
47 void createListview ();
48 RECT getDefaultListViewSize();
49 void getParentRect (HWND parent, HWND child, RECT * r);
50 void keepClicked();
51 void changeTrust(trusts aTrust);
52 void logOnePackageResult(packagemeta const *aPkg);
53 void logResults();
54 void setPrompt(char const *aPrompt);
55 PickView *chooser;
56
57 static HWND ins_dialog;
58 bool cmd_show_set;
59 bool saved_geom;
60 bool saw_geom_change;
61 WINDOWPLACEMENT window_placement;
62 WINDOWPLACEMENT pre_chooser_placement;
63 union writer
64 {
65 WINDOWPLACEMENT wp;
66 UINT wpi[sizeof (WINDOWPLACEMENT) / sizeof (UINT)];
67 };
68 void PlaceDialog (bool);
69 };
70
71 #endif /* SETUP_CHOOSE_H */
This page took 0.035632 seconds and 5 git commands to generate.