/*************************************************************************** * This file is distributed under the following license: * * Copyright (c) 2006-2010 RetroShare Team * * Copyright (C) 2008-2009 Mehrdad Momeny * * Copyright (C) 2008-2009 Golnaz Nilieh * * * * It is a modified version of "bilbotextformat.h", which was part * * of the Bilbo Blogger. It has been customized for * * use in RetroShare, at January 2010. * * * * 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 3 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., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef TEXTFORMAT_H #define TEXTFORMAT_H #include /** * Adds some textformat attributes which don't exist in QTextFormat class. * this class may be removed in future, if all editor related staff be ordered as a lib. * @author Mehrdad Momeny @author Golnaz Nilieh */ // class TextCharFormat : public QTextCharFormat class TextFormat { public: enum Property { /// Anchor properties AnchorTitle = 0x100010, AnchorTarget = 0x100011, /// Image properties ImageTitle = 0x100020, ImageAlternateText = 0x100021, HasCodeStyle = 0x100030, /// Block Properties HtmlHeading = 0x100040, //zero if block is not in heading format, 1 for Heading 1, and so on. IsBlockQuote = 0x100041, IsHtmlTagSign = 0x100042, }; }; #endif