Changeset 1110
- Timestamp:
- Feb 16, 2019, 6:24:18 PM (6 years ago)
- Location:
- s10k/CommonLibs
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
s10k/CommonLibs/BasicXMLSyntaxHighlighter/BasicXMLSyntaxHighlighter.h
r1096 r1110 27 27 // This XML highligter is the same from Dmitry Ivanov available here: 28 28 // https://github.com/d1vanov/basic-xml-syntax-highlighter 29 // with some slightly modifications by random-guy (https://github.com/random-guy)29 // with some slightly modifications by fabiobento512 (https://github.com/fabiobento512) 30 30 // (like different colors, and remove of unneeded constructors) 31 31 … … 44 44 protected: 45 45 virtual void highlightBlock(const QString & text); 46 46 47 47 private: 48 48 void highlightByRegex(const QTextCharFormat & format, … … 52 52 void setFormats(); 53 53 54 pr ivate:54 protected: 55 55 QTextCharFormat m_xmlKeywordFormat; 56 56 QTextCharFormat m_xmlElementFormat; -
s10k/CommonLibs/ConditionalSemaphore/LICENSE
r1096 r1110 1 1 MIT License 2 2 3 Copyright ( c) 2017 random-guy3 Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512) 4 4 5 5 Permission is hereby granted, free of charge, to any person obtaining a copy -
s10k/CommonLibs/ConditionalSemaphore/conditionalsemaphore.cpp
r1096 r1110 1 1 /** 2 * Copyright (C) 2017 Fábio Bento (random-guy)2 * Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512) 3 3 * 4 4 * This library is distributed under the MIT License. See notice at the end … … 39 39 40 40 /** 41 * Copyright ( c) 201741 * Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512) 42 42 * 43 43 * Permission is hereby granted, free of charge, to any person -
s10k/CommonLibs/ConditionalSemaphore/conditionalsemaphore.h
r1096 r1110 1 1 /** 2 * Copyright (C) 2017 Fábio Bento (random-guy)2 * Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512) 3 3 * 4 4 * This library is distributed under the MIT License. See notice at the end … … 41 41 42 42 /** 43 * Copyright ( c) 201743 * Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512) 44 44 * 45 45 * Permission is hereby granted, free of charge, to any person -
s10k/CommonLibs/CustomTreeWidget/LICENSE
r1096 r1110 1 1 MIT License 2 2 3 Copyright ( c) 2017 random-guy3 Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512) 4 4 5 5 Permission is hereby granted, free of charge, to any person obtaining a copy -
s10k/CommonLibs/README.md
r1096 r1110 1 1 # CommonLibs 2 CommonLibs for random-guyC++ Qt Projects2 CommonLibs for fabiobento512 C++ Qt Projects -
s10k/CommonLibs/jsonhighlighter/highlighter.cpp
r1096 r1110 32 32 void Highlighter::highlightBlock(const QString &text) 33 33 { 34 for (const HighlightingRule &rule :rules) {34 foreach (const HighlightingRule &rule, rules) { 35 35 QRegExp expression(rule.pattern); 36 36 int index = expression.indexIn(text); -
s10k/CommonLibs/jsonhighlighter/highlighter.h
r1073 r1110 10 10 class Highlighter: public QSyntaxHighlighter 11 11 { 12 Q_OBJECT 12 13 public: 13 14 Highlighter(QTextDocument *parent = 0); 14 pr ivate:15 protected: 15 16 struct HighlightingRule 16 17 { -
s10k/CommonLibs/quazip-0.7.2/quazip/libquazip.1.0.dylib
r1097 r1110 1 li nk libquazip.1.0.0.dylib1 libquazip.1.0.0.dylib -
s10k/CommonLibs/quazip-0.7.2/quazip/libquazip.1.dylib
r1097 r1110 1 li nk libquazip.1.0.0.dylib1 libquazip.1.0.0.dylib -
s10k/CommonLibs/quazip-0.7.2/quazip/libquazip.dylib
r1097 r1110 1 li nk libquazip.1.0.0.dylib1 libquazip.1.0.0.dylib -
s10k/CommonLibs/zlib-1.2.8/libz.1.dylib
r1097 r1110 1 li nk libz.1.2.8.dylib1 libz.1.2.8.dylib -
s10k/CommonLibs/zlib-1.2.8/libz.dylib
r1097 r1110 1 li nk libz.1.2.8.dylib1 libz.1.2.8.dylib
Note:
See TracChangeset
for help on using the changeset viewer.