]> cygwin.com Git - cygwin-apps/setup.git/blob - root.h
Use solver to check for problems and produce a list of package transactions
[cygwin-apps/setup.git] / root.h
1 #ifndef SETUP_ROOT_H
2 #define SETUP_ROOT_H
3
4 #include "proppage.h"
5
6 class RootPage:public PropertyPage
7 {
8 public:
9 RootPage ();
10 virtual ~ RootPage ()
11 {
12 };
13
14 bool Create ();
15
16 virtual bool OnMessageCmd (int id, HWND hwndctl, UINT code);
17 virtual void OnInit ();
18 virtual bool wantsActivation() const;
19 virtual void OnActivate ();
20 virtual long OnNext ();
21 virtual long OnBack ();
22 virtual long OnUnattended ();
23
24 private:
25 void check_if_enable_next (HWND h);
26 };
27
28 #endif /* SETUP_ROOT_H */
This page took 0.03482 seconds and 5 git commands to generate.