summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/dialogs/codevieweroptionspage.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbd9e6617827818fd043452c08c606f07b78014a0 (patch)
tree425bb4c3168f9c02f10150f235d2cb998dcc6108 /umbrello/umbrello/dialogs/codevieweroptionspage.cpp
downloadtdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz
tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.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/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'umbrello/umbrello/dialogs/codevieweroptionspage.cpp')
-rw-r--r--umbrello/umbrello/dialogs/codevieweroptionspage.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/umbrello/umbrello/dialogs/codevieweroptionspage.cpp b/umbrello/umbrello/dialogs/codevieweroptionspage.cpp
new file mode 100644
index 00000000..dd120569
--- /dev/null
+++ b/umbrello/umbrello/dialogs/codevieweroptionspage.cpp
@@ -0,0 +1,70 @@
+/***************************************************************************
+ codegenerationoptionspage.cpp - description
+ -------------------
+ begin : Thu Jul 25 2002
+ copyright : (C) 2002 by Luis De la Parra
+ email : luis@delaparra.org
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ * copyright (C) 2003-2007 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+// own header
+#include "codevieweroptionspage.h"
+
+// qt/kde includes
+#include <kdebug.h>
+#include <kfontdialog.h>
+#include <kcolorbutton.h>
+
+
+CodeViewerOptionsPage::CodeViewerOptionsPage( Settings::CodeViewerState options, QWidget *parent, const char *name )
+ :CodeViewerOptionsBase(parent,name)
+{
+ init (options);
+}
+
+CodeViewerOptionsPage::~CodeViewerOptionsPage() { }
+
+void CodeViewerOptionsPage::init( Settings::CodeViewerState options )
+{
+ m_options = options;
+
+ // set widget stuff
+ /*
+ fontChooser->setFont( options.font );
+ selectColorButton -> setColor (options.selectedColor);
+ fontColorButton -> setColor (options.fontColor);
+ paperColorButton -> setColor (options.paperColor);
+ editBlockColorButton -> setColor (options.editBlockColor);
+ nonEditBlockColorButton -> setColor (options.nonEditBlockColor);
+ umlObjectColorButton -> setColor (options.umlObjectColor);
+ */
+}
+
+void CodeViewerOptionsPage::apply() {
+ /*
+ m_options.umlObjectColor = umlObjectColorButton->color();
+ m_options.editBlockColor = editBlockColorButton->color();
+ m_options.nonEditBlockColor = nonEditBlockColorButton->color();
+ m_options.selectedColor = selectColorButton->color();
+ m_options.paperColor = paperColorButton->color();
+ m_options.fontColor = fontColorButton->color();
+ m_options.font = fontChooser->font();
+ */
+ emit applyClicked();
+}
+
+Settings::CodeViewerState CodeViewerOptionsPage::getOptions() {
+ return m_options;
+}
+
+#include "codevieweroptionspage.moc"