diff options
author | albator <[email protected]> | 2011-10-21 20:16:07 +0200 |
---|---|---|
committer | albator <[email protected]> | 2011-10-21 20:16:07 +0200 |
commit | 7a0adf35896618a7570e425941fc1b74c54def47 (patch) | |
tree | 16dab9d8bfbd93575440f357c70907cbb5480980 /mandriva/2010.2/kdepim/configguibarry.h | |
parent | cd71be65dc30c8007ec54becdf6c50260ed8e908 (diff) | |
parent | a8707e2a9f22d082cecb8ea6079175076f983c55 (diff) | |
download | tde-packaging-7a0adf35896618a7570e425941fc1b74c54def47.tar.gz tde-packaging-7a0adf35896618a7570e425941fc1b74c54def47.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'mandriva/2010.2/kdepim/configguibarry.h')
-rw-r--r-- | mandriva/2010.2/kdepim/configguibarry.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mandriva/2010.2/kdepim/configguibarry.h b/mandriva/2010.2/kdepim/configguibarry.h new file mode 100644 index 000000000..887d5cc33 --- /dev/null +++ b/mandriva/2010.2/kdepim/configguibarry.h @@ -0,0 +1,43 @@ +/* + This file is part of KitchenSync. + + Copyright (c) 2005 Cornelius Schumacher <[email protected]> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + USA. +*/ +#ifndef CONFIGGUIBARRY_H +#define CONFIGGUIBARRY_H + +#include "configgui.h" + +class QLineEdit; +class QCheckBox; + +class ConfigGuiBarry : public ConfigGui +{ + public: + ConfigGuiBarry( const QSync::Member &, QWidget *parent ); + + void load( const QString &cfg ); + QString save() const; + + private: + QLineEdit *mPin; + QCheckBox *mCalendar; + QCheckBox *mContacts; +}; + +#endif |