00001 /* 00002 =. This file is part of the OPIE Project 00003 .=l. Copyright (c) 2002 Robert Griebl <sandman@handhelds.org> 00004 .>+-= 00005 _;:, .> :=|. This file is free software; you can 00006 .> <`_, > . <= redistribute it and/or modify it under 00007 :`=1 )Y*s>-.-- : the terms of the GNU General Public 00008 .="- .-=="i, .._ License as published by the Free Software 00009 - . .-<_> .<> Foundation; either version 2 of the License, 00010 ._= =} : or (at your option) any later version. 00011 .%`+i> _;_. 00012 .i_,=:_. -<s. This file is distributed in the hope that 00013 + . -:. = it will be useful, but WITHOUT ANY WARRANTY; 00014 : .. .:, . . . without even the implied warranty of 00015 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A 00016 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General 00017 ..}^=.= = ; Public License for more details. 00018 ++= -. .` .: 00019 : = ...= . :.=- You should have received a copy of the GNU 00020 -. .:....=;==+<; General Public License along with this file; 00021 -_. . . )=. = see the file COPYING. If not, write to the 00022 -- :-=` Free Software Foundation, Inc., 00023 59 Temple Place - Suite 330, 00024 Boston, MA 02111-1307, USA. 00025 00026 */ 00027 #ifndef __TABS_SETTINGS_H__ 00028 #define __TABS_SETTINGS_H__ 00029 00030 #include <qwidget.h> 00031 #include <qmap.h> 00032 00033 #include "tabconfig.h" 00034 00035 class QListBox; 00036 class QCheckBox; 00037 class Config; 00038 00039 00040 class TabsSettings : public QWidget { 00041 Q_OBJECT 00042 00043 public: 00044 TabsSettings ( QWidget *parent = 0, const char *name = 0 ); 00045 00046 void accept ( ); 00047 00048 protected slots: 00049 void newClicked ( ); 00050 void deleteClicked ( ); 00051 void editClicked ( ); 00052 00053 protected: 00054 void init ( ); 00055 void readTabSettings ( Config & ); 00056 00057 private: 00058 QListBox *m_list; 00059 // QString currentTab; 00060 QStringList m_ids; 00061 QMap <QString, TabConfig> m_tabs; 00062 QCheckBox *m_busyani, *m_bigbusy, *m_staticbackground; 00063 }; 00064 00065 00066 00067 00068 #endif
1.4.2