MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / net / wireless / rtlink / Utility / countryform.h
blob95a2458d4962dd95af72e0983de6896abeffd71b
1 /*
2 ***************************************************************************
3 * Ralink Tech Inc.
4 * 4F, No. 2 Technology 5th Rd.
5 * Science-based Industrial Park
6 * Hsin-chu, Taiwan, R.O.C.
8 * (c) Copyright 2002, Ralink Technology, Inc.
10 * All rights reserved. Ralink's source code is an unpublished work and the
11 * use of a copyright notice does not imply otherwise. This source code
12 * contains confidential trade secret material of Ralink Tech. Any attemp
13 * or participation in deciphering, decoding, reverse engineering or in any
14 * way altering the source code is stricitly prohibited, unless the prior
15 * written consent of Ralink Technology, Inc. is obtained.
16 ***************************************************************************
18 Module Name:
19 countryform.h
21 Abstract:
22 Implement Country Region Select Dialog.
24 Revision History:
25 Who When What
26 -------- ---------- ----------------------------------------------
27 Paul Wu 01-22-2003 created
32 #ifndef _COUNTRYFROM_H
33 #define _COUNTRYFROM_H
35 #include <qvariant.h>
36 #include <qdialog.h>
37 class QVBoxLayout;
38 class QHBoxLayout;
39 class QGridLayout;
40 class QButtonGroup;
41 class QLabel;
42 class QPushButton;
43 class QRadioButton;
45 class CountryForm : public QDialog
47 Q_OBJECT
49 public:
50 CountryForm( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
51 ~CountryForm();
53 QLabel* InfoTextLabel;
54 QPushButton* OkPushButton;
55 QPushButton* CancelPushButton;
56 QButtonGroup* SelectButtonGroup;
57 QRadioButton* ISRAELRadioButton;
58 QRadioButton* ICRadioButton;
59 QRadioButton* ETSIRadioButton;
60 QRadioButton* MKKRadioButton;
61 QRadioButton* MKK1RadioButton;
62 QRadioButton* FRANCERadioButton;
63 QRadioButton* SPAINRadioButton;
64 QRadioButton* FCCRadioButton;
66 int GetRegionID();
69 #endif //_COUNTRYFROM_H