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 / cardselect.h
blobe5587af1b0a7dcb15e2146208d97a9d98353b115
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 cardselect.h
21 Abstract:
22 Implement card select Dialog.
24 Revision History:
25 Who When What
26 -------- ---------- ----------------------------------------------
27 Paul Wu 01-22-2003 created
31 #ifndef CARDSELECT_H
32 #define CARDSELECT_H
34 #include <qvariant.h>
35 #include <qdialog.h>
36 #include <rt_tool.h>
38 class QVBoxLayout;
39 class QHBoxLayout;
40 class QGridLayout;
41 class QLabel;
42 class QListView;
43 class QListViewItem;
44 class QPushButton;
47 class CardSelect : public QDialog
49 Q_OBJECT
51 public:
52 CardSelect( int Socket_Id = 0, PRT_DEVICE_ADAPTER prtAdapter = NULL, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
53 ~CardSelect();
55 QPushButton* OkPushButton;
56 QListView* AdapterListView;
57 QLabel* TextLabel1;
58 QString device;
59 const char *Get_Device_Name();
60 bool bClickOk;
61 bool isClickOk();
62 public slots:
64 virtual void AdapterListView_doubleClicked();
65 virtual void OkPushButton_Clicked();
68 #endif // CARDSELECT_H