You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.1 KiB
93 lines
3.1 KiB
/***************************************************************************
|
|
htmldocumentproperties.h
|
|
-------------------
|
|
|
|
copyright : (C) 2003, 2004 - Nicolas Deschildre
|
|
email : ndeschildre@tdewebdev.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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef HTMLDOCUMENTPROPERTIES_H
|
|
#define HTMLDOCUMENTPROPERTIES_H
|
|
|
|
class Node;
|
|
class NodeModifsSet;
|
|
class AttributeItem;
|
|
class EditableTree;
|
|
|
|
#include <tqptrlist.h>
|
|
|
|
#include "tagattributeitems.h"
|
|
#include "htmldocumentpropertiesui.h"
|
|
|
|
class NodeLinkedViewItem : public AttributeItem
|
|
{
|
|
public:
|
|
NodeLinkedViewItem(EditableTree *listView, const TQString& title, const TQString& title2);
|
|
virtual ~NodeLinkedViewItem();
|
|
|
|
Node *node;
|
|
bool dirty, deleted;
|
|
};
|
|
|
|
/**
|
|
* The HTML Document properties dialog.
|
|
* TODO: Use KDialogBase so it looks more consistent with the rest of the dialogs
|
|
*/
|
|
class htmlDocumentProperties : public htmlDocumentPropertiesui
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* @param forceInsertionOfBasicNodes Force the insertion of the basic Nodes (HTML, BODY, HEAD, ...) if pressing OK
|
|
* without having made any changes.
|
|
*/
|
|
htmlDocumentProperties( TQWidget* parent = 0, bool forceInsertionOfBasicNodes = false,
|
|
const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
|
|
~htmlDocumentProperties();
|
|
|
|
protected slots:
|
|
virtual void aboutToClose() {}
|
|
|
|
private slots:
|
|
virtual void accept();
|
|
virtual void reject();
|
|
virtual void newMetaItem();
|
|
virtual void deleteCurrentMetaItem();
|
|
virtual void newCSSRule();
|
|
virtual void editCSSRule();
|
|
virtual void deleteCurrentCSSRule();
|
|
|
|
virtual void titleChanged(const TQString &);
|
|
virtual void metaChanged(TQListViewItem * );
|
|
virtual void CSSChanged(TQListViewItem * );
|
|
virtual void linkChanged( const TQString& );
|
|
|
|
private:
|
|
/**
|
|
* If we want to add a new Node, we must first create the basics (if necessary) i.e. html, body
|
|
* head nodes, and moving if necessary all the existing Nodes.
|
|
* @param modifs The changes are logged for the undo/redo system.
|
|
*/
|
|
void addBasicNodes(NodeModifsSet *modifs);
|
|
//must be called after addBasicnodes
|
|
void addBasicCssNodes(NodeModifsSet *modifs);
|
|
void loadMetaNode(Node *node);
|
|
void loadCSS(Node *node);
|
|
|
|
TQPtrList<NodeLinkedViewItem> CSSList, metaList;
|
|
Node *titleNode, *htmlNode, *headNode, *linkNode, *bodyNode, *doctypeNode, *CSSNode, *xmlNode;
|
|
bool titleDirty, linkDirty, m_forceInsertionOfBasicNodes;
|
|
};
|
|
|
|
#endif
|