]> cygwin.com Git - cygwin-apps/setup.git/blame - choose.h
2003-10-23 Jerry D. Hedden <jerry@hedden.us>
[cygwin-apps/setup.git] / choose.h
CommitLineData
8f53e82a
RC
1/*
2 * Copyright (c) 2000, Red Hat, Inc.
d55e14fe 3 * Copyright (c) 2003 Robert Collins <rbtcollins@hotmail.com>
8f53e82a
RC
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
c93bc6d0
MB
17#ifndef SETUP_CHOOSE_H
18#define SETUP_CHOOSE_H
8f53e82a 19
ab57ceaa 20#include "proppage.h"
12f8ac69 21#include "package_meta.h"
724c2956 22#include "PickView.h"
ab57ceaa 23
8f53e82a 24
ab57ceaa
RC
25class ChooserPage:public PropertyPage
26{
27public:
28 ChooserPage ()
29 {
30 };
31 virtual ~ ChooserPage ()
32 {
33 };
34
f6a81f69 35 virtual bool OnMessageCmd (int id, HWND hwndctl, UINT code);
ab57ceaa
RC
36
37 bool Create ();
f6a81f69
RC
38 virtual void OnInit ();
39 virtual long OnNext ();
40 virtual long OnBack ();
52620058 41 virtual void OnActivate ();
f2ff9838
RC
42 virtual long OnUnattended ()
43 {
44 return OnNext ();
45 };
12f8ac69 46 private:
bc16bb7d
RC
47 void createListview ();
48 RECT getDefaultListViewSize();
cda26207 49 void getParentRect (HWND parent, HWND child, RECT * r);
724c2956 50 void keepClicked();
d55e14fe
RC
51 void logOnePackageResult(packagemeta const *aPkg);
52 void logResults();
edc3c6fc 53 void setPrompt(char const *aPrompt);
12f8ac69 54 template<class C> bool ifChecked(int const &id, void (C::*fn)()) {
22120c90 55 if (IsButtonChecked (id)) {
12f8ac69
RC
56 (this->*fn)();
57 return true;
58 }
59 else
60 return false;
61 }
62 template <trusts aTrust> void changeTrust();
693916f8 63 PickView *chooser;
ab57ceaa 64};
69711722 65
c93bc6d0 66#endif /* SETUP_CHOOSE_H */
This page took 0.042117 seconds and 5 git commands to generate.