Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KPimTextEdit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
KPimTextEdit
Commits
d133a06a
Commit
d133a06a
authored
Apr 30, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing file
parent
2f3df305
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
0 deletions
+67
-0
src/grantleebuilder/markupdirector_p.h
src/grantleebuilder/markupdirector_p.h
+67
-0
No files found.
src/grantleebuilder/markupdirector_p.h
0 → 100644
View file @
d133a06a
/*
This file is part of the Grantlee template system.
Copyright (c) 2008 Stephen Kelly <steveire@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either version
2.1 of the Licence, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GRANTLEE_MARKUPDIRECTOR_P_H
#define GRANTLEE_MARKUPDIRECTOR_P_H
#include "markupdirector.h"
#include <QSet>
//@cond PRIVATE
namespace
KPIMTextEdit
{
/**
@internal
Maintainability class for MarkupDirector
*/
class
MarkupDirectorPrivate
{
MarkupDirectorPrivate
(
MarkupDirector
*
md
)
:
q_ptr
(
md
)
{}
Q_DECLARE_PUBLIC
(
MarkupDirector
)
MarkupDirector
*
const
q_ptr
;
QString
m_openAnchorHref
;
QString
m_anchorHrefToOpen
;
QString
m_openAnchorName
;
QBrush
m_openForeground
;
QBrush
m_foregroundToOpen
;
QBrush
m_openBackground
;
QBrush
m_backgroundToOpen
;
int
m_openFontPointSize
;
int
m_fontPointSizeToOpen
;
QString
m_openFontFamily
;
QString
m_fontFamilyToOpen
;
// An ordered list containing the order elements were opened in.
QList
<
int
>
m_openElements
;
// Elements that have yet to be opened. Used while determine the order to
// open them.
QSet
<
int
>
m_elementsToOpen
;
};
}
#endif
//@endcond
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment