Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
KDevelop
KDevelop
Commits
630be51e
Commit
630be51e
authored
Sep 25, 2022
by
Igor Kushnir
Browse files
Reformat isourceformattercontroller.h using clang-format
parent
2eca1246
Changes
1
Hide whitespace changes
Inline
Side-by-side
kdevplatform/interfaces/isourceformattercontroller.h
View file @
630be51e
...
...
@@ -15,8 +15,7 @@
class
QUrl
;
class
QMimeType
;
namespace
KDevelop
{
namespace
KDevelop
{
class
ISourceFormatter
;
class
SourceFormatterStyle
;
...
...
@@ -24,39 +23,39 @@ class SourceFormatterStyle;
*/
class
KDEVPLATFORMINTERFACES_EXPORT
ISourceFormatterController
:
public
QObject
{
Q_OBJECT
public:
explicit
ISourceFormatterController
(
QObject
*
parent
=
nullptr
);
~
ISourceFormatterController
()
override
;
/** \return The formatter corresponding to the language
* of the document corresponding to the \p url.
* The language is then activated and the style is loaded.
* The source formatter is then ready to use.
* If mimetype of url is known already, use
* formatterForUrl(const QUrl& url, const QMimeType& mime) instead.
*/
virtual
ISourceFormatter
*
formatterForUrl
(
const
QUrl
&
url
)
=
0
;
/** \return The formatter corresponding to the language
* of the document corresponding to the \p url.
* The language is then activated and the style is loaded.
* The source formatter is then ready to use.
* @param mime known mimetype of the url
*/
virtual
ISourceFormatter
*
formatterForUrl
(
const
QUrl
&
url
,
const
QMimeType
&
mime
)
=
0
;
///\return @c true if there are formatters at all, @c false otherwise
virtual
bool
hasFormatters
()
const
=
0
;
virtual
KDevelop
::
SourceFormatterStyle
styleForUrl
(
const
QUrl
&
url
,
const
QMimeType
&
mime
)
=
0
;
///Set whether or not source formatting is disabled with \arg disable
virtual
void
disableSourceFormatting
(
bool
disable
)
=
0
;
///\return Whether or not source formatting is enabled
virtual
bool
sourceFormattingEnabled
()
=
0
;
Q_SIGNALS:
void
hasFormattersChanged
(
bool
hasFormatters
);
Q_OBJECT
public:
explicit
ISourceFormatterController
(
QObject
*
parent
=
nullptr
);
~
ISourceFormatterController
()
override
;
/** \return The formatter corresponding to the language
* of the document corresponding to the \p url.
* The language is then activated and the style is loaded.
* The source formatter is then ready to use.
* If mimetype of url is known already, use
* formatterForUrl(const QUrl& url, const QMimeType& mime) instead.
*/
virtual
ISourceFormatter
*
formatterForUrl
(
const
QUrl
&
url
)
=
0
;
/** \return The formatter corresponding to the language
* of the document corresponding to the \p url.
* The language is then activated and the style is loaded.
* The source formatter is then ready to use.
* @param mime known mimetype of the url
*/
virtual
ISourceFormatter
*
formatterForUrl
(
const
QUrl
&
url
,
const
QMimeType
&
mime
)
=
0
;
///\return @c true if there are formatters at all, @c false otherwise
virtual
bool
hasFormatters
()
const
=
0
;
virtual
KDevelop
::
SourceFormatterStyle
styleForUrl
(
const
QUrl
&
url
,
const
QMimeType
&
mime
)
=
0
;
///Set whether or not source formatting is disabled with \arg disable
virtual
void
disableSourceFormatting
(
bool
disable
)
=
0
;
///\return Whether or not source formatting is enabled
virtual
bool
sourceFormattingEnabled
()
=
0
;
Q_SIGNALS:
void
hasFormattersChanged
(
bool
hasFormatters
);
};
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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