Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Network
Kaidan
Commits
fbf43a65
Commit
fbf43a65
authored
Oct 18, 2019
by
Linus Jahn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QmlUtils: Make all methods Q_INVOKABLE static instead of slots
parent
1b961bb7
Pipeline
#9113
passed with stages
in 16 minutes and 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
19 deletions
+18
-19
src/QmlUtils.cpp
src/QmlUtils.cpp
+8
-8
src/QmlUtils.h
src/QmlUtils.h
+10
-11
No files found.
src/QmlUtils.cpp
View file @
fbf43a65
...
...
@@ -117,7 +117,7 @@ QColor QmlUtils::presenceTypeToColor(AvailabilityTypes type)
Q_UNREACHABLE
();
}
QString
QmlUtils
::
getResourcePath
(
const
QString
&
name
)
const
QString
QmlUtils
::
getResourcePath
(
const
QString
&
name
)
{
// We generally prefer to first search for files in application resources
if
(
QFile
::
exists
(
":/"
+
name
))
...
...
@@ -155,42 +155,42 @@ QString QmlUtils::getResourcePath(const QString &name) const
return
QString
();
}
bool
QmlUtils
::
isImageFile
(
const
QUrl
&
fileUrl
)
const
bool
QmlUtils
::
isImageFile
(
const
QUrl
&
fileUrl
)
{
QMimeType
type
=
QMimeDatabase
().
mimeTypeForUrl
(
fileUrl
);
return
type
.
inherits
(
"image/jpeg"
)
||
type
.
inherits
(
"image/png"
);
}
void
QmlUtils
::
copyToClipboard
(
const
QString
&
text
)
const
void
QmlUtils
::
copyToClipboard
(
const
QString
&
text
)
{
QGuiApplication
::
clipboard
()
->
setText
(
text
);
}
QString
QmlUtils
::
fileNameFromUrl
(
const
QUrl
&
url
)
const
QString
QmlUtils
::
fileNameFromUrl
(
const
QUrl
&
url
)
{
return
QUrl
(
url
).
fileName
();
}
QString
QmlUtils
::
fileSizeFromUrl
(
const
QUrl
&
url
)
const
QString
QmlUtils
::
fileSizeFromUrl
(
const
QUrl
&
url
)
{
return
QLocale
::
system
().
formattedDataSize
(
QFileInfo
(
QUrl
(
url
).
toLocalFile
()).
size
());
}
QString
QmlUtils
::
formatMessage
(
const
QString
&
message
)
const
QString
QmlUtils
::
formatMessage
(
const
QString
&
message
)
{
// escape all special XML chars (like '<' and '>')
// and spilt into words for processing
return
processMsgFormatting
(
message
.
toHtmlEscaped
().
split
(
" "
));
}
QColor
QmlUtils
::
getUserColor
(
const
QString
&
nickName
)
const
QColor
QmlUtils
::
getUserColor
(
const
QString
&
nickName
)
{
QXmppColorGenerator
::
RGBColor
color
=
QXmppColorGenerator
::
generateColor
(
nickName
);
return
{
color
.
red
,
color
.
green
,
color
.
blue
};
}
QString
QmlUtils
::
processMsgFormatting
(
const
QStringList
&
list
,
bool
isFirst
)
const
QString
QmlUtils
::
processMsgFormatting
(
const
QStringList
&
list
,
bool
isFirst
)
{
if
(
list
.
isEmpty
())
return
QString
();
...
...
src/QmlUtils.h
View file @
fbf43a65
...
...
@@ -65,7 +65,6 @@ public:
*/
Q_INVOKABLE
static
QColor
presenceTypeToColor
(
Enums
::
AvailabilityTypes
type
);
public
slots
:
/**
* Returns a URL to a given resource file name
*
...
...
@@ -73,12 +72,12 @@ public slots:
* If the file was found, it'll return a `file://` or a `qrc:/` url to
* the file.
*/
QString
getResourcePath
(
const
QString
&
resourceName
)
const
;
Q_INVOKABLE
static
QString
getResourcePath
(
const
QString
&
resourceName
);
/**
* Returns a string of this build's Kaidan version
*/
QString
getVersionString
()
const
Q_INVOKABLE
static
QString
getVersionString
()
{
return
VERSION_STRING
;
}
...
...
@@ -88,7 +87,7 @@ public slots:
*
* See QString::simplified for more information.
*/
QString
removeNewLinesFromString
(
const
QString
&
input
)
const
Q_INVOKABLE
static
QString
removeNewLinesFromString
(
const
QString
&
input
)
{
return
input
.
simplified
();
}
...
...
@@ -97,40 +96,40 @@ public slots:
* Checks whether a file is an image and could be displayed as such.
* @param fileUrl URL to the possible image file
*/
bool
isImageFile
(
const
QUrl
&
fileUrl
)
const
;
Q_INVOKABLE
static
bool
isImageFile
(
const
QUrl
&
fileUrl
);
/**
* Copy text to the clipboard
*/
void
copyToClipboard
(
const
QString
&
text
)
const
;
Q_INVOKABLE
static
void
copyToClipboard
(
const
QString
&
text
);
/**
* Returns the file name from a URL
*/
QString
fileNameFromUrl
(
const
QUrl
&
url
)
const
;
Q_INVOKABLE
static
QString
fileNameFromUrl
(
const
QUrl
&
url
);
/**
* Returns the file size from a URL
*/
QString
fileSizeFromUrl
(
const
QUrl
&
url
)
const
;
Q_INVOKABLE
static
QString
fileSizeFromUrl
(
const
QUrl
&
url
);
/**
* Styles/formats a message for displaying
*
* This currently only adds some link highlighting
*/
QString
formatMessage
(
const
QString
&
message
)
const
;
Q_INVOKABLE
static
QString
formatMessage
(
const
QString
&
message
);
/**
* Returns a consistent user color generated from the nickname.
*/
QColor
getUserColor
(
const
QString
&
nickName
)
const
;
Q_INVOKABLE
static
QColor
getUserColor
(
const
QString
&
nickName
);
private:
/**
* Highlights links in a list of words
*/
QString
processMsgFormatting
(
const
QStringList
&
words
,
bool
isFirst
=
true
)
const
;
static
QString
processMsgFormatting
(
const
QStringList
&
words
,
bool
isFirst
=
true
);
};
#endif // UTILS_H
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