00001 #ifndef DATAWIDGETUI_H 00002 #define DATAWIDGETUI_H 00003 00004 00005 /*************************************************************************** 00006 application: : Oxygen 00007 00008 begin : September 2002 00009 copyright : ( C ) 2002 by Carsten Niehaus 00010 email : cniehaus@handhelds.org 00011 **************************************************************************/ 00012 00013 /*************************************************************************** 00014 * * 00015 * This program is free software; you can redistribute it and/or modify * 00016 * it under the terms of the GNU General Public License as published by * 00017 * the Free Software Foundation; either version 2 of the License, or * 00018 * ( at your option ) any later version. * 00019 * * 00020 **************************************************************************/ 00021 00022 00023 class OxydataWidget; 00024 class OxydataTable; 00025 00026 class QComboBox; 00027 class QStringList; 00028 00029 #include <qwidget.h> 00030 00031 class dataWidgetUI : public QWidget 00032 { 00033 Q_OBJECT 00034 00035 public: 00036 dataWidgetUI(const QStringList &list=0); 00037 00038 private: 00039 OxydataTable *DataTable; 00040 QComboBox *dataCombo; 00041 OxydataWidget *oxyDW; 00042 QStringList names; 00043 }; 00044 #endif
1.4.2