diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 114a878c64ce6f8223cfd22d76a20eb16d177e5e (patch) | |
tree | acaf47eb0fa12142d3896416a69e74cbf5a72242 /parts/snippet/snippetsettings.cpp | |
download | tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.tar.gz tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'parts/snippet/snippetsettings.cpp')
-rw-r--r-- | parts/snippet/snippetsettings.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/parts/snippet/snippetsettings.cpp b/parts/snippet/snippetsettings.cpp new file mode 100644 index 00000000..f0f9348b --- /dev/null +++ b/parts/snippet/snippetsettings.cpp @@ -0,0 +1,52 @@ +/* + * File : snippetsettings.cpp + * + * Author: Robert Gruber <rgruber@users.sourceforge.net> + * + * Copyright: See COPYING file that comes with this distribution + */ + +#include <qstring.h> +#include <klineedit.h> +#include <qcheckbox.h> +#include <qbuttongroup.h> + +#include "snippetsettings.h" +#include "snippet_widget.h" + + +SnippetSettings::SnippetSettings(QWidget *parent, const char *name) + : SnippetSettingsBase(parent, name) +{ + _widget = NULL; +} + +SnippetSettings::SnippetSettings(SnippetWidget * w, QWidget *parent, const char *name) + : SnippetSettingsBase(parent, name) +{ + _cfg = w->getSnippetConfig(); + _widget = w; +} + + +SnippetSettings::~SnippetSettings() +{ +} + + +/*! + \fn SnippetSettings::slotOKClicked() + */ +void SnippetSettings::slotOKClicked() +{ + _cfg->setToolTips(cbToolTip->isChecked()); + _cfg->setDelimiter(leDelimiter->text()); + _cfg->setInputMethod(btnGroup->selectedId()); + _cfg->setAutoOpenGroups(btnGroupAutoOpen->selectedId()); + + if (_widget) + _widget->languageChanged(); +} + + +#include "snippetsettings.moc" |