]> cygwin.com Git - cygwin-apps/setup.git/blob - site.h
2002-11-10 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / site.h
1 /*
2 * Copyright (c) 2001, Robert Collins.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by Robert Collins <rbtcollins@hotmail.com>
13 *
14 */
15
16 #ifndef _SITE_H_
17 #define _SITE_H_
18
19 /* required to parse this file */
20 #include <string.h>
21 #include <stdlib.h>
22 #include <vector>
23 #include "String++.h"
24
25 #include "proppage.h"
26
27 class SitePage:public PropertyPage
28 {
29 public:
30 SitePage ()
31 {
32 };
33 virtual ~ SitePage ()
34 {
35 };
36
37 bool Create ();
38
39 virtual void OnInit ();
40 virtual void OnActivate ();
41 virtual long OnNext ();
42 virtual long OnBack ();
43 virtual long OnUnattended ();
44
45 virtual bool OnMessageCmd (int id, HWND hwndctl, UINT code);
46
47 void PopulateListBox();
48 void CheckControlsAndDisableAccordingly () const;
49 };
50
51 void do_download_site_info (HINSTANCE h, HWND owner);
52
53 class site_list_type
54 {
55 public:
56 site_list_type ():url (), displayed_url (), key()
57 {
58 };
59 site_list_type (site_list_type const &);
60 site_list_type (String const &);
61 /* workaround for missing placement new in gcc 2.95 */
62 void init (String const &);
63 ~site_list_type () {};
64 site_list_type &operator= (site_list_type const &);
65 String url;
66 String displayed_url;
67 String key;
68 bool operator == (site_list_type const &) const;
69 bool operator != (site_list_type const &) const;
70 bool operator < (site_list_type const &) const;
71 bool operator <= (site_list_type const &) const;
72 bool operator > (site_list_type const &) const;
73 bool operator >= (site_list_type const &) const;
74 };
75
76 typedef vector <site_list_type> SiteList;
77
78 /* user chosen sites */
79 extern SiteList site_list;
80 /* potential sites */
81 extern SiteList all_site_list;
82
83 void save_site_url ();
84
85 #endif /* _SITE_H_ */
This page took 0.041616 seconds and 6 git commands to generate.