]> cygwin.com Git - cygwin-apps/setup.git/blob - site.h
2002-05-04 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 "list.h"
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
44 virtual bool OnMessageCmd (int id, HWND hwndctl, UINT code);
45
46 void PopulateListBox();
47 void CheckControlsAndDisableAccordingly () const;
48 };
49
50 void do_download_site_info (HINSTANCE h, HWND owner);
51
52 class site_list_type
53 {
54 public:
55 site_list_type ():url (), displayed_url (), key ()
56 {
57 };
58 site_list_type (String const &);
59 /* workaround for missing placement new in gcc 2.95 */
60 void init (String const &);
61 ~site_list_type () {};
62 String url;
63 String displayed_url;
64 String key;
65 };
66
67 /* user chosen sites */
68 extern list < site_list_type, String, String::casecompare > site_list;
69 /* potential sites */
70 extern list < site_list_type, String, String::casecompare > all_site_list;
71
72 void save_site_url ();
73
74 #endif /* _SITE_H_ */
This page took 0.037821 seconds and 5 git commands to generate.