From e9ae80694875f869892f13f4fcaf1170a00dea41 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- quanta/components/framewizard/visualframeeditor.h | 66 +++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 quanta/components/framewizard/visualframeeditor.h (limited to 'quanta/components/framewizard/visualframeeditor.h') diff --git a/quanta/components/framewizard/visualframeeditor.h b/quanta/components/framewizard/visualframeeditor.h new file mode 100644 index 00000000..4924f3cb --- /dev/null +++ b/quanta/components/framewizard/visualframeeditor.h @@ -0,0 +1,66 @@ +/*************************************************************************** + visualframeeditor.h - description + ------------------- + begin : mar mar 25 2003 + copyright : (C) 2003 by gulmini luciano + email : gulmini.luciano@student.unife.it + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#ifndef VISUALFRAMEEDITOR_H +#define VISUALFRAMEEDITOR_H + +#include "treenode.h" +#include "selectablearea.h" +#include + +/** + *@author gulmini luciano + */ + + +class VisualFrameEditor : public QHBox { + Q_OBJECT + private: + enum MarkupLanguage{XHTML,HTML}; + tree *m_internalTree; + SelectableArea* m_firstInsertedSA; + QStringList m_existingStructure; + MarkupLanguage m_markupLanguage; + + void buildInternalTree(const QString &parent); + void setGeometries(const QString &l); + void drawGUI(treeNode *n, QWidget* parent); + QStringList convertAsterisks(const QString &s, int d); + + QString createFrameTag(areaAttribute *a); + QString formatStructure(); + QString RCvalue(treeNode *n); + void createStructure(treeNode* n); + + public: + VisualFrameEditor( QWidget * parent = 0, const char * name = 0); + ~VisualFrameEditor(); + void draw() { repaint(); } + void loadExistingStructure(const QStringList &list); + QString framesetStructure(); + void removeNode(const QString &l); + void split(const QString &l, int n, SplitType type); + void setMarkupLanguage(const QString& s); + tree* internalTree() { return m_internalTree;} + + protected: + virtual void paintEvent ( QPaintEvent * ); + signals: + void areaSelected(const QString &); +}; + +#endif -- cgit v1.2.1