mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
6cb925016a
added Blockquote,Increase font size,Decrease font size,text font to code style Buttons added when reply to a message set TextCursor to End. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2123 b45a01b8-16f6-495d-af2f-9b41ad6348cc
65 lines
2.8 KiB
C++
65 lines
2.8 KiB
C++
/***************************************************************************
|
|
* This file is distributed under the following license: *
|
|
* Copyright (c) 2006-2010 RetroShare Team *
|
|
* Copyright (C) 2008-2009 Mehrdad Momeny <mehrdad.momeny@gmail.com> *
|
|
* Copyright (C) 2008-2009 Golnaz Nilieh <g382nilieh@gmail.com> *
|
|
* *
|
|
* 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 <QTextFormat>
|
|
|
|
/**
|
|
* 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 <mehrdad.momeny@gmail.com>
|
|
@author Golnaz Nilieh <g382nilieh@gmail.com>
|
|
*/
|
|
// 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
|