Some documentation updates.
This commit is contained in:
parent
c3cff69fe4
commit
53830e0b96
33
README.html
33
README.html
@ -42,15 +42,18 @@ document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'" clas'+'s="em' + 'ail">'+e+'<\
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="#introduction"><span class="toc-section-number">1</span> Introduction</a></li>
|
<li><a href="#introduction"><span class="toc-section-number">1</span> Introduction</a></li>
|
||||||
<li><a href="#project-structure"><span class="toc-section-number">2</span> Project Structure</a></li>
|
<li><a href="#project-structure"><span class="toc-section-number">2</span> Project Structure</a></li>
|
||||||
<li><a href="#api-documentation"><span class="toc-section-number">3</span> API Documentation</a></li>
|
<li><a href="#example"><span class="toc-section-number">3</span> Example</a><ul>
|
||||||
<li><a href="#license"><span class="toc-section-number">4</span> License</a></li>
|
<li><a href="#build-notes"><span class="toc-section-number">3.1</span> Build Notes</a></li>
|
||||||
<li><a href="#acknowledgement"><span class="toc-section-number">5</span> Acknowledgement</a></li>
|
</ul></li>
|
||||||
|
<li><a href="#api-documentation"><span class="toc-section-number">4</span> API Documentation</a></li>
|
||||||
|
<li><a href="#license"><span class="toc-section-number">5</span> License</a></li>
|
||||||
|
<li><a href="#acknowledgement"><span class="toc-section-number">6</span> Acknowledgement</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<h1 id="introduction"><span class="header-section-number">1</span> Introduction</h1>
|
<h1 id="introduction"><span class="header-section-number">1</span> Introduction</h1>
|
||||||
<p>The <strong>MUtilities</strong> library is a collection of routines and classes to extend the <a href="http://qt-project.org/"><em>Qt cross-platform framework</em></a>. It contains various convenience and utility functions as well as wrappers for OS-specific functionalities. The library was originally created as a "side product" of the <a href="http://lamexp.sourceforge.net/"><strong>LameXP</strong></a> application: Over the years, a lot of code, <strong>not</strong> really specific to <em>LameXP</em>, had accumulated in the <em>LameXP</em> code base. Some of that code even had been used in other projects too, in a "copy & paste" fashion – which had lead to redundancy and much complicated maintenance. In order to clean-up the LameXP code base, to eliminate the ugly redundancy and to simplify maintenance, the code in question has finally been refactored into the <strong>MUtilities</strong> (aka "MuldeR's Utilities for Qt") library. This library now forms the foundation of <em>LameXP</em> and <a href="https://github.com/lordmulder"><em>other OpenSource projects</em></a>.</p>
|
<p>The <strong>MUtilities</strong> library is a collection of routines and classes to extend the <a href="http://qt-project.org/"><em>Qt cross-platform framework</em></a>. It contains various convenience and utility functions as well as wrappers for OS-specific functionalities. The library was originally created as a "side product" of the <a href="http://lamexp.sourceforge.net/"><strong>LameXP</strong></a> application: Over the years, a lot of code, <strong>not</strong> really specific to <em>LameXP</em>, had accumulated in the <em>LameXP</em> code base. Some of that code even had been used in other projects too, in a "copy & paste" fashion – which had lead to redundancy and much complicated maintenance. In order to clean-up the LameXP code base, to eliminate the ugly redundancy and to simplify maintenance, the code in question has finally been refactored into the <strong>MUtilities</strong> (aka "MuldeR's Utilities for Qt") library. This library now forms the foundation of <em>LameXP</em> and <a href="https://github.com/lordmulder"><em>other OpenSource projects</em></a>.</p>
|
||||||
<h1 id="project-structure"><span class="header-section-number">2</span> Project Structure</h1>
|
<h1 id="project-structure"><span class="header-section-number">2</span> Project Structure</h1>
|
||||||
<p>The <em>MUtilities</em> project directory is structured as follows:</p>
|
<p>The <em>MUtilities</em> project directory is organized as follows:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>bin/</code> – compiled library files (static or shared), link those files in projects that use the MUtilities library</li>
|
<li><code>bin/</code> – compiled library files (static or shared), link those files in projects that use the MUtilities library</li>
|
||||||
<li><code>docs/</code> – programming interface documentation, generated with Doxygen tool</li>
|
<li><code>docs/</code> – programming interface documentation, generated with Doxygen tool</li>
|
||||||
@ -62,9 +65,25 @@ document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'" clas'+'s="em' + 'ail">'+e+'<\
|
|||||||
<li><code>test/</code> – unit tests, based on Google Test framework</li>
|
<li><code>test/</code> – unit tests, based on Google Test framework</li>
|
||||||
<li><code>tmp/</code> – temporary files, automatically generated during the build process</li>
|
<li><code>tmp/</code> – temporary files, automatically generated during the build process</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h1 id="api-documentation"><span class="header-section-number">3</span> API Documentation</h1>
|
<h1 id="example"><span class="header-section-number">3</span> Example</h1>
|
||||||
|
<p>Here is a minimal example on how to use the <em>MUtilities</em> library in your project:</p>
|
||||||
|
<pre><code>//MUtils
|
||||||
|
#include <MUtils/Global.h>
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
qDebug("Random number: %u\n", MUtils::next_rand_u32());
|
||||||
|
}</code></pre>
|
||||||
|
<h2 id="build-notes"><span class="header-section-number">3.1</span> Build Notes</h2>
|
||||||
|
<ul>
|
||||||
|
<li>In order to use the <em>MUtilities</em> library in your project, your build environment must have already been set up for building Qt-based projects. Setting up Qt is <em>not</em> covered by this document.</li>
|
||||||
|
<li>Additionally, make sure that <em>MUtilities'</em> <code>include/</code> directory is contained in your "Additional Include Directories" and that the <em>MUtilities'</em> <code>bin/</code> directory is contained in your "Additional Library Directories".</li>
|
||||||
|
<li>Finally, make sure that your project links against the <code>MUtils32-1.lib</code> library file. For each build configuration you have to pick the proper <strong>.lib</strong> file from the correspnding <code>bin/<platform>/<config>/</code> directory!</li>
|
||||||
|
<li>If your projects intends to use the <em>MUtilities</em> library as a <strong>static</strong> library, then the macro <code>MUTILS_STATIC_LIB</code> <em>must</em> be added to your project's "Preprocessor Definitions".</li>
|
||||||
|
</ul>
|
||||||
|
<h1 id="api-documentation"><span class="header-section-number">4</span> API Documentation</h1>
|
||||||
<p>A fully-fledged documentation of the <em>MUtilities</em> programming interface (API) is available thanks to <a href="http://www.stack.nl/~dimitri/doxygen/"><em>Doxygen</em></a>. Please see <a href="docs/index.html"><strong><code>docs/index.html</code></strong></a> for details!</p>
|
<p>A fully-fledged documentation of the <em>MUtilities</em> programming interface (API) is available thanks to <a href="http://www.stack.nl/~dimitri/doxygen/"><em>Doxygen</em></a>. Please see <a href="docs/index.html"><strong><code>docs/index.html</code></strong></a> for details!</p>
|
||||||
<h1 id="license"><span class="header-section-number">4</span> License</h1>
|
<h1 id="license"><span class="header-section-number">5</span> License</h1>
|
||||||
<p>This library is free software. It is released under the terms of the <a href="https://www.gnu.org/licenses/lgpl-2.1.html"><em>GNU Lesser General Public License (LGPL), Version 2.1</em></a>.</p>
|
<p>This library is free software. It is released under the terms of the <a href="https://www.gnu.org/licenses/lgpl-2.1.html"><em>GNU Lesser General Public License (LGPL), Version 2.1</em></a>.</p>
|
||||||
<pre><code>MUtilities - MuldeR's Utilities for Qt
|
<pre><code>MUtilities - MuldeR's Utilities for Qt
|
||||||
Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.
|
Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.
|
||||||
@ -82,7 +101,7 @@ Lesser General Public License for more details.
|
|||||||
You should have received a copy of the GNU Lesser General Public
|
You should have received a copy of the GNU Lesser General Public
|
||||||
License along with this library; if not, write to the Free Software
|
License along with this library; if not, write to the Free Software
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</code></pre>
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</code></pre>
|
||||||
<h1 id="acknowledgement"><span class="header-section-number">5</span> Acknowledgement</h1>
|
<h1 id="acknowledgement"><span class="header-section-number">6</span> Acknowledgement</h1>
|
||||||
<p>The following third-party code is used in the MUtilities library:</p>
|
<p>The following third-party code is used in the MUtilities library:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><p><strong>Keccak/SHA-3 Reference Implementation</strong><br />
|
<li><p><strong>Keccak/SHA-3 Reference Implementation</strong><br />
|
||||||
|
22
README.md
22
README.md
@ -8,7 +8,7 @@ The **MUtilities** library is a collection of routines and classes to extend the
|
|||||||
|
|
||||||
# Project Structure
|
# Project Structure
|
||||||
|
|
||||||
The *MUtilities* project directory is structured as follows:
|
The *MUtilities* project directory is organized as follows:
|
||||||
|
|
||||||
* `bin/` – compiled library files (static or shared), link those files in projects that use the MUtilities library
|
* `bin/` – compiled library files (static or shared), link those files in projects that use the MUtilities library
|
||||||
* `docs/` – programming interface documentation, generated with Doxygen tool
|
* `docs/` – programming interface documentation, generated with Doxygen tool
|
||||||
@ -21,6 +21,26 @@ The *MUtilities* project directory is structured as follows:
|
|||||||
* `tmp/` – temporary files, automatically generated during the build process
|
* `tmp/` – temporary files, automatically generated during the build process
|
||||||
|
|
||||||
|
|
||||||
|
# Example
|
||||||
|
|
||||||
|
Here is a minimal example on how to use the *MUtilities* library in your project:
|
||||||
|
|
||||||
|
//MUtils
|
||||||
|
#include <MUtils/Global.h>
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
qDebug("Random number: %u\n", MUtils::next_rand_u32());
|
||||||
|
}
|
||||||
|
|
||||||
|
## Build Notes
|
||||||
|
|
||||||
|
* In order to use the *MUtilities* library in your project, your build environment must have already been set up for building Qt-based projects. Setting up Qt is *not* covered by this document.
|
||||||
|
* Additionally, make sure that *MUtilities'* `include/` directory is contained in your "Additional Include Directories" and that the *MUtilities'* `bin/` directory is contained in your "Additional Library Directories".
|
||||||
|
* Finally, make sure that your project links against the `MUtils32-1.lib` library file. For each build configuration you have to pick the proper **.lib** file from the correspnding `bin/<platform>/<config>/` directory!
|
||||||
|
* If your projects intends to use the *MUtilities* library as a **static** library, then the macro `MUTILS_STATIC_LIB` *must* be added to your project's "Preprocessor Definitions".
|
||||||
|
|
||||||
|
|
||||||
# API Documentation
|
# API Documentation
|
||||||
|
|
||||||
A fully-fledged documentation of the *MUtilities* programming interface (API) is available thanks to [*Doxygen*](http://www.stack.nl/~dimitri/doxygen/). Please see [**`docs/index.html`**](docs/index.html) for details!
|
A fully-fledged documentation of the *MUtilities* programming interface (API) is available thanks to [*Doxygen*](http://www.stack.nl/~dimitri/doxygen/). Please see [**`docs/index.html`**](docs/index.html) for details!
|
||||||
|
@ -90,7 +90,7 @@ $(function() {
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -90,7 +90,7 @@ $(function() {
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -158,7 +158,7 @@ void </td><td class="memItemRight" valign="bottom"><b>testKnownHosts</b> (v
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -104,7 +104,7 @@ unsigned int </td><td class="memItemRight" valign="bottom"><b>bitsAvailable
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -92,7 +92,7 @@ QByteArray </td><td class="memItemRight" valign="bottom"><b>finalize</b> (c
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -77,7 +77,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -114,7 +114,7 @@ class </td><td class="memItemRight" valign="bottom"><b>UpdateChecker</b></t
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -104,7 +104,7 @@ static const char *const </td><td class="memItemRight" valign="bottom"><b>c
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -88,7 +88,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -82,7 +82,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -72,7 +72,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -106,7 +106,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>setOverlayIcon</b> (c
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -96,7 +96,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -84,7 +84,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -81,7 +81,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -81,7 +81,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -84,7 +84,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -72,7 +72,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -169,22 +169,47 @@ QString </td><td class="memItemRight" valign="bottom"><b>MUtils::clean_file
|
|||||||
<tr class="memitem:ac0949226be088ce65a60d5aa4194e1c0"><td class="memItemLeft" align="right" valign="top"><a id="ac0949226be088ce65a60d5aa4194e1c0"></a>
|
<tr class="memitem:ac0949226be088ce65a60d5aa4194e1c0"><td class="memItemLeft" align="right" valign="top"><a id="ac0949226be088ce65a60d5aa4194e1c0"></a>
|
||||||
QString </td><td class="memItemRight" valign="bottom"><b>MUtils::clean_file_path</b> (const QString &path)</td></tr>
|
QString </td><td class="memItemRight" valign="bottom"><b>MUtils::clean_file_path</b> (const QString &path)</td></tr>
|
||||||
<tr class="separator:ac0949226be088ce65a60d5aa4194e1c0"><td class="memSeparator" colspan="2"> </td></tr>
|
<tr class="separator:ac0949226be088ce65a60d5aa4194e1c0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
<tr class="memitem:a45cb0d1e6a55cf5ffda3b626c25fd957"><td class="memItemLeft" align="right" valign="top"><a id="a45cb0d1e6a55cf5ffda3b626c25fd957"></a>
|
<tr class="memitem:a45cb0d1e6a55cf5ffda3b626c25fd957"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d3b/_global_8h.html#a45cb0d1e6a55cf5ffda3b626c25fd957">MUtils::regexp_parse_uint32</a> (const QRegExp &regexp, quint32 &value)</td></tr>
|
||||||
bool </td><td class="memItemRight" valign="bottom"><b>MUtils::regexp_parse_uint32</b> (const QRegExp &regexp, quint32 &value)</td></tr>
|
<tr class="memdesc:a45cb0d1e6a55cf5ffda3b626c25fd957"><td class="mdescLeft"> </td><td class="mdescRight">Parse regular expression results. <a href="../../d5/d3b/_global_8h.html#a45cb0d1e6a55cf5ffda3b626c25fd957">More...</a><br /></td></tr>
|
||||||
<tr class="separator:a45cb0d1e6a55cf5ffda3b626c25fd957"><td class="memSeparator" colspan="2"> </td></tr>
|
<tr class="separator:a45cb0d1e6a55cf5ffda3b626c25fd957"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
<tr class="memitem:a367969a260da994876d19c9f7ee40606"><td class="memItemLeft" align="right" valign="top"><a id="a367969a260da994876d19c9f7ee40606"></a>
|
<tr class="memitem:a367969a260da994876d19c9f7ee40606"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d3b/_global_8h.html#a367969a260da994876d19c9f7ee40606">MUtils::regexp_parse_uint32</a> (const QRegExp &regexp, quint32 *values, const size_t &count)</td></tr>
|
||||||
bool </td><td class="memItemRight" valign="bottom"><b>MUtils::regexp_parse_uint32</b> (const QRegExp &regexp, quint32 *values, const size_t &count)</td></tr>
|
<tr class="memdesc:a367969a260da994876d19c9f7ee40606"><td class="mdescLeft"> </td><td class="mdescRight">Parse regular expression results. <a href="../../d5/d3b/_global_8h.html#a367969a260da994876d19c9f7ee40606">More...</a><br /></td></tr>
|
||||||
<tr class="separator:a367969a260da994876d19c9f7ee40606"><td class="memSeparator" colspan="2"> </td></tr>
|
<tr class="separator:a367969a260da994876d19c9f7ee40606"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
<tr class="memitem:a4fcbdafffc1224776616fcc6aec8278b"><td class="memItemLeft" align="right" valign="top"><a id="a4fcbdafffc1224776616fcc6aec8278b"></a>
|
<tr class="memitem:a4fcbdafffc1224776616fcc6aec8278b"><td class="memItemLeft" align="right" valign="top">QStringList </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d3b/_global_8h.html#a4fcbdafffc1224776616fcc6aec8278b">MUtils::available_codepages</a> (const bool &noAliases=true)</td></tr>
|
||||||
QStringList </td><td class="memItemRight" valign="bottom"><b>MUtils::available_codepages</b> (const bool &noAliases=true)</td></tr>
|
<tr class="memdesc:a4fcbdafffc1224776616fcc6aec8278b"><td class="mdescLeft"> </td><td class="mdescRight">Retrieve a list of all available codepages. <a href="../../d5/d3b/_global_8h.html#a4fcbdafffc1224776616fcc6aec8278b">More...</a><br /></td></tr>
|
||||||
<tr class="separator:a4fcbdafffc1224776616fcc6aec8278b"><td class="memSeparator" colspan="2"> </td></tr>
|
<tr class="separator:a4fcbdafffc1224776616fcc6aec8278b"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
<tr class="memitem:a00af0daa1ae56f474746443002be6786"><td class="memItemLeft" align="right" valign="top"><a id="a00af0daa1ae56f474746443002be6786"></a>
|
|
||||||
int </td><td class="memItemRight" valign="bottom"><b>MUtils::Internal::selfTest</b> (const char *const buildKey, const bool debug)</td></tr>
|
|
||||||
<tr class="separator:a00af0daa1ae56f474746443002be6786"><td class="memSeparator" colspan="2"> </td></tr>
|
|
||||||
</table>
|
</table>
|
||||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||||
<div class="textblock"><p>This file contains miscellaneous functions that are generally useful for Qt-based applications. </p>
|
<div class="textblock"><p>This file contains miscellaneous functions that are generally useful for Qt-based applications. </p>
|
||||||
</div><h2 class="groupheader">Function Documentation</h2>
|
</div><h2 class="groupheader">Function Documentation</h2>
|
||||||
|
<a id="file_a4fcbdafffc1224776616fcc6aec8278b"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#file_a4fcbdafffc1224776616fcc6aec8278b">§ </a></span>available_codepages()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">QStringList MUtils::available_codepages </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">const bool & </td>
|
||||||
|
<td class="paramname"><em>noAliases</em> = <code>true</code></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
<p>Retrieve a list of all available codepages. </p>
|
||||||
|
<p>The function generates a list of all codepages that are available on the system. Each codepage name returned by this function may be passed to the <code>QTextCodec::codecForName()</code> function in order to obtain a corresponding <a href="http://doc.qt.io/qt-4.8/qtextcodec.html">QTextCodec</a> object.</p>
|
||||||
|
<dl class="params"><dt>Parameters</dt><dd>
|
||||||
|
<table class="params">
|
||||||
|
<tr><td class="paramname">noAliases</td><td>If set to <code>true</code>, only distinct codepages are returned, i.e. any codepage aliases are discarded from the list; if set to <code>false</code>, the returned list may (and usually will) also contain codepage aliases.</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class="section return"><dt>Returns</dt><dd>If the function succeeds, it returns a QStringList holding the names of all codepages available on the system; otherwise it returns a default-constructed QStringList. </dd></dl>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<a id="file_a67cb16c62b213da5135a6fa076f3f005"></a>
|
<a id="file_a67cb16c62b213da5135a6fa076f3f005"></a>
|
||||||
<h2 class="memtitle"><span class="permalink"><a href="#file_a67cb16c62b213da5135a6fa076f3f005">§ </a></span>make_temp_file()</h2>
|
<h2 class="memtitle"><span class="permalink"><a href="#file_a67cb16c62b213da5135a6fa076f3f005">§ </a></span>make_temp_file()</h2>
|
||||||
|
|
||||||
@ -418,6 +443,91 @@ int </td><td class="memItemRight" valign="bottom"><b>MUtils::Internal::self
|
|||||||
</dl>
|
</dl>
|
||||||
<dl class="section return"><dt>Returns</dt><dd>The function returns <code>true</code>, if the number of <b>1</b> bits in the given value is <em>odd</em>; it returns <code>false</code>, if the number of <b>1</b> bits in the given value is <em>even</em>. </dd></dl>
|
<dl class="section return"><dt>Returns</dt><dd>The function returns <code>true</code>, if the number of <b>1</b> bits in the given value is <em>odd</em>; it returns <code>false</code>, if the number of <b>1</b> bits in the given value is <em>even</em>. </dd></dl>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="file_a45cb0d1e6a55cf5ffda3b626c25fd957"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#file_a45cb0d1e6a55cf5ffda3b626c25fd957">§ </a></span>regexp_parse_uint32() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">bool MUtils::regexp_parse_uint32 </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">const QRegExp & </td>
|
||||||
|
<td class="paramname"><em>regexp</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">quint32 & </td>
|
||||||
|
<td class="paramname"><em>value</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
<p>Parse regular expression results. </p>
|
||||||
|
<p>This function tries to parses the result (capture) of a regular expression as an unsigned 32-Bit value. The given regular expression must contain at least <em>one</em> capture. Only the <em>first</em> capture is considered, additional captures are ignored.</p>
|
||||||
|
<dl class="params"><dt>Parameters</dt><dd>
|
||||||
|
<table class="params">
|
||||||
|
<tr><td class="paramname">regexp</td><td>A read-only reference to the <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> object whose result (capture) will be parsed. This <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> must already have been <em>successfully</em> matched against the respective input string, e.g. via <code>QRegExp::indexIn()</code>, prior to calling this function.</td></tr>
|
||||||
|
<tr><td class="paramname">value</td><td>A reference to a variable of type <code>quint32</code>, where the unsigned 32-Bit representation of the result will be stored. The contents of this variable are <em>undefined</em>, if the function failed.</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class="section return"><dt>Returns</dt><dd>The function returns <code>true</code>, if the regular expression's capture could be parsed successfully; it returns <code>false</code>, if the capture contains an invalid string or if there are insufficient captures in given the <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> object. </dd></dl>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="file_a367969a260da994876d19c9f7ee40606"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#file_a367969a260da994876d19c9f7ee40606">§ </a></span>regexp_parse_uint32() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">bool MUtils::regexp_parse_uint32 </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">const QRegExp & </td>
|
||||||
|
<td class="paramname"><em>regexp</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">quint32 * </td>
|
||||||
|
<td class="paramname"><em>values</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">const size_t & </td>
|
||||||
|
<td class="paramname"><em>count</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
<p>Parse regular expression results. </p>
|
||||||
|
<p>This function tries to parses the results (captures) of a regular expression as unsigned 32-Bit values. The given regular expression must contain at least <code>count</code> captures. Only the <em>first</em> <code>count</code> captures are considered, additional captures are ignored.</p>
|
||||||
|
<dl class="params"><dt>Parameters</dt><dd>
|
||||||
|
<table class="params">
|
||||||
|
<tr><td class="paramname">regexp</td><td>A read-only reference to the <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> object whose results (captures) will be parsed. This <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> must already have been <em>successfully</em> matched against the respective input string, e.g. via <code>QRegExp::indexIn()</code>, prior to calling this function.</td></tr>
|
||||||
|
<tr><td class="paramname">value</td><td>A pointer to an array of type <code>quint32</code>, where the unsigned 32-Bit representations of the results will be stored (the <code>n</code>-th result is stored at <code>value[n-1]</code>). The array must be at least <code>count</code> elements in length. The contents of this array are <em>undefined</em>, if the function failed.</td></tr>
|
||||||
|
<tr><td class="paramname">count</td><td>Specifies the number of results (captures) in the given <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> object. The function tries to parse the first <code>count</code> captures and ignores any additional captures that may exist. This parameter also determines the required (minimum) length of the <code>value</code> array.</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class="section return"><dt>Returns</dt><dd>The function returns <code>true</code>, if all of the regular expression's captures could be parsed successfully; it returns <code>false</code>, if any of the captures contain an invalid string or if there are insufficient captures in given the <a href="http://doc.qt.io/qt-4.8/qregexp.html">QRegExp</a> object. </dd></dl>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a id="file_ac7d2c9bd5c49230b2fed72e3410c3f7d"></a>
|
<a id="file_ac7d2c9bd5c49230b2fed72e3410c3f7d"></a>
|
||||||
@ -624,7 +734,7 @@ int </td><td class="memItemRight" valign="bottom"><b>MUtils::Internal::self
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -72,7 +72,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -84,7 +84,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -112,7 +112,7 @@ static const quint32 </td><td class="memItemRight" valign="bottom"><b>MAX_P
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -74,7 +74,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -72,7 +72,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -72,7 +72,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -85,7 +85,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -104,7 +104,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>enum_subkeys</b> (QSt
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -72,7 +72,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -117,7 +117,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>overrideFlag</b></td>
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -82,7 +82,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -86,7 +86,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>terminateJob</b> (uns
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -78,7 +78,7 @@ $(function() {
|
|||||||
</table></div><!-- contents -->
|
</table></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -122,7 +122,7 @@ QByteArray </td><td class="memItemRight" valign="bottom"><b>m_hashResult</b
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -107,7 +107,7 @@ char </td><td class="memItemRight" valign="bottom"><b>brand</b> [0x40]</td>
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -74,7 +74,7 @@ $(function() {
|
|||||||
</div><!-- fragment --></div><!-- contents -->
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -77,7 +77,7 @@ Files</h2></td></tr>
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -74,7 +74,7 @@ Directories</h2></td></tr>
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -90,7 +90,7 @@ $(function() {
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:15 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -83,7 +83,7 @@ $(function() {
|
|||||||
</div><!-- contents -->
|
</div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:15 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -73,7 +73,7 @@ $(function() {
|
|||||||
<div class="fragment"><div class="line">MUtilities - MuldeR<span class="stringliteral">'s Utilities for Qt</span></div><div class="line"><span class="stringliteral">Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">This library is free software; you can redistribute it and/or</span></div><div class="line"><span class="stringliteral">modify it under the terms of the GNU Lesser General Public</span></div><div class="line"><span class="stringliteral">License as published by the Free Software Foundation; either</span></div><div class="line"><span class="stringliteral">version 2.1 of the License, or (at your option) any later version.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">This library is distributed in the hope that it will be useful,</span></div><div class="line"><span class="stringliteral">but WITHOUT ANY WARRANTY; without even the implied warranty of</span></div><div class="line"><span class="stringliteral">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></div><div class="line"><span class="stringliteral">Lesser General Public License for more details.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">You should have received a copy of the GNU Lesser General Public</span></div><div class="line"><span class="stringliteral">License along with this library; if not, write to the Free Software</span></div><div class="line"><span class="stringliteral">Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</span></div></div><!-- fragment --> </div></div><!-- contents -->
|
<div class="fragment"><div class="line">MUtilities - MuldeR<span class="stringliteral">'s Utilities for Qt</span></div><div class="line"><span class="stringliteral">Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">This library is free software; you can redistribute it and/or</span></div><div class="line"><span class="stringliteral">modify it under the terms of the GNU Lesser General Public</span></div><div class="line"><span class="stringliteral">License as published by the Free Software Foundation; either</span></div><div class="line"><span class="stringliteral">version 2.1 of the License, or (at your option) any later version.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">This library is distributed in the hope that it will be useful,</span></div><div class="line"><span class="stringliteral">but WITHOUT ANY WARRANTY; without even the implied warranty of</span></div><div class="line"><span class="stringliteral">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></div><div class="line"><span class="stringliteral">Lesser General Public License for more details.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">You should have received a copy of the GNU Lesser General Public</span></div><div class="line"><span class="stringliteral">License along with this library; if not, write to the Free Software</span></div><div class="line"><span class="stringliteral">Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</span></div></div><!-- fragment --> </div></div><!-- contents -->
|
||||||
<!-- start footer part -->
|
<!-- start footer part -->
|
||||||
<hr class="footer"/><address class="footer"><small>
|
<hr class="footer"/><address class="footer"><small>
|
||||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||||
</a> 1.8.12
|
</a> 1.8.12
|
||||||
</small></address>
|
</small></address>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['blake2',['Blake2',['../d1/d01/class_m_utils_1_1_hash_1_1_blake2.html',1,'MUtils::Hash']]]
|
['available_5fcodepages',['available_codepages',['../d5/d3b/_global_8h.html#a4fcbdafffc1224776616fcc6aec8278b',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['global_2eh',['Global.h',['../d5/d3b/_global_8h.html',1,'']]]
|
['blake2',['Blake2',['../d1/d01/class_m_utils_1_1_hash_1_1_blake2.html',1,'MUtils::Hash']]]
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['ipcchannel',['IPCChannel',['../d5/dfe/class_m_utils_1_1_i_p_c_channel.html',1,'MUtils']]]
|
['global_2eh',['Global.h',['../d5/d3b/_global_8h.html',1,'']]]
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['jobobject',['JobObject',['../dc/dd3/class_m_utils_1_1_job_object.html',1,'MUtils']]]
|
['ipcchannel',['IPCChannel',['../d5/dfe/class_m_utils_1_1_i_p_c_channel.html',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['keccak',['Keccak',['../dd/d9f/class_m_utils_1_1_hash_1_1_keccak.html',1,'MUtils::Hash']]]
|
['jobobject',['JobObject',['../dc/dd3/class_m_utils_1_1_job_object.html',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['mulder_27s_20utilities_20for_20qt',['MuldeR's Utilities for Qt',['../index.html',1,'']]],
|
['keccak',['Keccak',['../dd/d9f/class_m_utils_1_1_hash_1_1_keccak.html',1,'MUtils::Hash']]]
|
||||||
['make_5ftemp_5ffile',['make_temp_file',['../d5/d3b/_global_8h.html#a67cb16c62b213da5135a6fa076f3f005',1,'MUtils']]],
|
|
||||||
['make_5funique_5ffile',['make_unique_file',['../d5/d3b/_global_8h.html#a390e56e35eb9329d2e67fa9741d07536',1,'MUtils']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['natural_5fstring_5fsort',['natural_string_sort',['../d5/d3b/_global_8h.html#a09e919d419ded903481cf7aba702dcba',1,'MUtils']]],
|
['mulder_27s_20utilities_20for_20qt',['MuldeR's Utilities for Qt',['../index.html',1,'']]],
|
||||||
['next_5frand_5fstr',['next_rand_str',['../d5/d3b/_global_8h.html#a996b60884ddf7728178e94f34ca12570',1,'MUtils']]],
|
['make_5ftemp_5ffile',['make_temp_file',['../d5/d3b/_global_8h.html#a67cb16c62b213da5135a6fa076f3f005',1,'MUtils']]],
|
||||||
['next_5frand_5fu32',['next_rand_u32',['../d5/d3b/_global_8h.html#a4dc7dccb81653ae28e0d37a7c2f62112',1,'MUtils']]],
|
['make_5funique_5ffile',['make_unique_file',['../d5/d3b/_global_8h.html#a390e56e35eb9329d2e67fa9741d07536',1,'MUtils']]]
|
||||||
['next_5frand_5fu64',['next_rand_u64',['../d5/d3b/_global_8h.html#a15762bf5b0239e5f67a3815d63ed441a',1,'MUtils']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['parity',['parity',['../d5/d3b/_global_8h.html#ad1bdb5e416839b1f85f6df68e58ae28c',1,'MUtils']]]
|
['natural_5fstring_5fsort',['natural_string_sort',['../d5/d3b/_global_8h.html#a09e919d419ded903481cf7aba702dcba',1,'MUtils']]],
|
||||||
|
['next_5frand_5fstr',['next_rand_str',['../d5/d3b/_global_8h.html#a996b60884ddf7728178e94f34ca12570',1,'MUtils']]],
|
||||||
|
['next_5frand_5fu32',['next_rand_u32',['../d5/d3b/_global_8h.html#a4dc7dccb81653ae28e0d37a7c2f62112',1,'MUtils']]],
|
||||||
|
['next_5frand_5fu64',['next_rand_u64',['../d5/d3b/_global_8h.html#a15762bf5b0239e5f67a3815d63ed441a',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['registrykey',['RegistryKey',['../da/d35/class_m_utils_1_1_registry_1_1_registry_key.html',1,'MUtils::Registry']]],
|
['parity',['parity',['../d5/d3b/_global_8h.html#ad1bdb5e416839b1f85f6df68e58ae28c',1,'MUtils']]]
|
||||||
['remove_5fdirectory',['remove_directory',['../d5/d3b/_global_8h.html#ac7d2c9bd5c49230b2fed72e3410c3f7d',1,'MUtils']]],
|
|
||||||
['remove_5ffile',['remove_file',['../d5/d3b/_global_8h.html#a12259acdd6aff74ee83819d3aebd8ba9',1,'MUtils']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['spongestatestruct',['spongeStateStruct',['../d0/dd8/struct_m_utils_1_1_hash_1_1_internal_1_1_keccak_impl_1_1sponge_state_struct.html',1,'MUtils::Hash::Internal::KeccakImpl']]]
|
['regexp_5fparse_5fuint32',['regexp_parse_uint32',['../d5/d3b/_global_8h.html#a45cb0d1e6a55cf5ffda3b626c25fd957',1,'MUtils::regexp_parse_uint32(const QRegExp &regexp, quint32 &value)'],['../d5/d3b/_global_8h.html#a367969a260da994876d19c9f7ee40606',1,'MUtils::regexp_parse_uint32(const QRegExp &regexp, quint32 *values, const size_t &count)']]],
|
||||||
|
['registrykey',['RegistryKey',['../da/d35/class_m_utils_1_1_registry_1_1_registry_key.html',1,'MUtils::Registry']]],
|
||||||
|
['remove_5fdirectory',['remove_directory',['../d5/d3b/_global_8h.html#ac7d2c9bd5c49230b2fed72e3410c3f7d',1,'MUtils']]],
|
||||||
|
['remove_5ffile',['remove_file',['../d5/d3b/_global_8h.html#a12259acdd6aff74ee83819d3aebd8ba9',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['taskbar7',['Taskbar7',['../d2/d52/class_m_utils_1_1_taskbar7.html',1,'MUtils']]],
|
['spongestatestruct',['spongeStateStruct',['../d0/dd8/struct_m_utils_1_1_hash_1_1_internal_1_1_keccak_impl_1_1sponge_state_struct.html',1,'MUtils::Hash::Internal::KeccakImpl']]]
|
||||||
['temp_5ffolder',['temp_folder',['../d5/d3b/_global_8h.html#a9ddb9a2039585b1ef3429db16ea84292',1,'MUtils']]],
|
|
||||||
['trim_5fleft',['trim_left',['../d5/d3b/_global_8h.html#af089c8a40b6ec2e19db3fe612aa81c8c',1,'MUtils::trim_left(QString &str)'],['../d5/d3b/_global_8h.html#a8680aeaeb1118353bd099e26ba7d6123',1,'MUtils::trim_left(const QString &str)']]],
|
|
||||||
['trim_5fright',['trim_right',['../d5/d3b/_global_8h.html#a9290a3fe637a05ad2a7515f36fad79bd',1,'MUtils::trim_right(QString &str)'],['../d5/d3b/_global_8h.html#a3eb47d6ca49b2700622e3fe99faf14d8',1,'MUtils::trim_right(const QString &str)']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['updatechecker',['UpdateChecker',['../d0/d8a/class_m_utils_1_1_update_checker.html',1,'MUtils']]],
|
['taskbar7',['Taskbar7',['../d2/d52/class_m_utils_1_1_taskbar7.html',1,'MUtils']]],
|
||||||
['updatecheckerinfo',['UpdateCheckerInfo',['../d1/d0d/class_m_utils_1_1_update_checker_info.html',1,'MUtils']]]
|
['temp_5ffolder',['temp_folder',['../d5/d3b/_global_8h.html#a9ddb9a2039585b1ef3429db16ea84292',1,'MUtils']]],
|
||||||
|
['trim_5fleft',['trim_left',['../d5/d3b/_global_8h.html#af089c8a40b6ec2e19db3fe612aa81c8c',1,'MUtils::trim_left(QString &str)'],['../d5/d3b/_global_8h.html#a8680aeaeb1118353bd099e26ba7d6123',1,'MUtils::trim_left(const QString &str)']]],
|
||||||
|
['trim_5fright',['trim_right',['../d5/d3b/_global_8h.html#a9290a3fe637a05ad2a7515f36fad79bd',1,'MUtils::trim_right(QString &str)'],['../d5/d3b/_global_8h.html#a3eb47d6ca49b2700622e3fe99faf14d8',1,'MUtils::trim_right(const QString &str)']]]
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['version',['Version',['../d1/d32/class_m_utils_1_1_version.html',1,'MUtils']]]
|
['updatechecker',['UpdateChecker',['../d0/d8a/class_m_utils_1_1_update_checker.html',1,'MUtils']]],
|
||||||
|
['updatecheckerinfo',['UpdateCheckerInfo',['../d1/d0d/class_m_utils_1_1_update_checker_info.html',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
26
docs/search/all_e.html
Normal file
26
docs/search/all_e.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.12"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="all_e.js"></script>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div id="SRResults"></div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
createResults();
|
||||||
|
--></script>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
4
docs/search/all_e.js
Normal file
4
docs/search/all_e.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
var searchData=
|
||||||
|
[
|
||||||
|
['version',['Version',['../d1/d32/class_m_utils_1_1_version.html',1,'MUtils']]]
|
||||||
|
];
|
@ -1,5 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['make_5ftemp_5ffile',['make_temp_file',['../d5/d3b/_global_8h.html#a67cb16c62b213da5135a6fa076f3f005',1,'MUtils']]],
|
['available_5fcodepages',['available_codepages',['../d5/d3b/_global_8h.html#a4fcbdafffc1224776616fcc6aec8278b',1,'MUtils']]]
|
||||||
['make_5funique_5ffile',['make_unique_file',['../d5/d3b/_global_8h.html#a390e56e35eb9329d2e67fa9741d07536',1,'MUtils']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['natural_5fstring_5fsort',['natural_string_sort',['../d5/d3b/_global_8h.html#a09e919d419ded903481cf7aba702dcba',1,'MUtils']]],
|
['make_5ftemp_5ffile',['make_temp_file',['../d5/d3b/_global_8h.html#a67cb16c62b213da5135a6fa076f3f005',1,'MUtils']]],
|
||||||
['next_5frand_5fstr',['next_rand_str',['../d5/d3b/_global_8h.html#a996b60884ddf7728178e94f34ca12570',1,'MUtils']]],
|
['make_5funique_5ffile',['make_unique_file',['../d5/d3b/_global_8h.html#a390e56e35eb9329d2e67fa9741d07536',1,'MUtils']]]
|
||||||
['next_5frand_5fu32',['next_rand_u32',['../d5/d3b/_global_8h.html#a4dc7dccb81653ae28e0d37a7c2f62112',1,'MUtils']]],
|
|
||||||
['next_5frand_5fu64',['next_rand_u64',['../d5/d3b/_global_8h.html#a15762bf5b0239e5f67a3815d63ed441a',1,'MUtils']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['parity',['parity',['../d5/d3b/_global_8h.html#ad1bdb5e416839b1f85f6df68e58ae28c',1,'MUtils']]]
|
['natural_5fstring_5fsort',['natural_string_sort',['../d5/d3b/_global_8h.html#a09e919d419ded903481cf7aba702dcba',1,'MUtils']]],
|
||||||
|
['next_5frand_5fstr',['next_rand_str',['../d5/d3b/_global_8h.html#a996b60884ddf7728178e94f34ca12570',1,'MUtils']]],
|
||||||
|
['next_5frand_5fu32',['next_rand_u32',['../d5/d3b/_global_8h.html#a4dc7dccb81653ae28e0d37a7c2f62112',1,'MUtils']]],
|
||||||
|
['next_5frand_5fu64',['next_rand_u64',['../d5/d3b/_global_8h.html#a15762bf5b0239e5f67a3815d63ed441a',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['remove_5fdirectory',['remove_directory',['../d5/d3b/_global_8h.html#ac7d2c9bd5c49230b2fed72e3410c3f7d',1,'MUtils']]],
|
['parity',['parity',['../d5/d3b/_global_8h.html#ad1bdb5e416839b1f85f6df68e58ae28c',1,'MUtils']]]
|
||||||
['remove_5ffile',['remove_file',['../d5/d3b/_global_8h.html#a12259acdd6aff74ee83819d3aebd8ba9',1,'MUtils']]]
|
|
||||||
];
|
];
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
var searchData=
|
var searchData=
|
||||||
[
|
[
|
||||||
['temp_5ffolder',['temp_folder',['../d5/d3b/_global_8h.html#a9ddb9a2039585b1ef3429db16ea84292',1,'MUtils']]],
|
['regexp_5fparse_5fuint32',['regexp_parse_uint32',['../d5/d3b/_global_8h.html#a45cb0d1e6a55cf5ffda3b626c25fd957',1,'MUtils::regexp_parse_uint32(const QRegExp &regexp, quint32 &value)'],['../d5/d3b/_global_8h.html#a367969a260da994876d19c9f7ee40606',1,'MUtils::regexp_parse_uint32(const QRegExp &regexp, quint32 *values, const size_t &count)']]],
|
||||||
['trim_5fleft',['trim_left',['../d5/d3b/_global_8h.html#af089c8a40b6ec2e19db3fe612aa81c8c',1,'MUtils::trim_left(QString &str)'],['../d5/d3b/_global_8h.html#a8680aeaeb1118353bd099e26ba7d6123',1,'MUtils::trim_left(const QString &str)']]],
|
['remove_5fdirectory',['remove_directory',['../d5/d3b/_global_8h.html#ac7d2c9bd5c49230b2fed72e3410c3f7d',1,'MUtils']]],
|
||||||
['trim_5fright',['trim_right',['../d5/d3b/_global_8h.html#a9290a3fe637a05ad2a7515f36fad79bd',1,'MUtils::trim_right(QString &str)'],['../d5/d3b/_global_8h.html#a3eb47d6ca49b2700622e3fe99faf14d8',1,'MUtils::trim_right(const QString &str)']]]
|
['remove_5ffile',['remove_file',['../d5/d3b/_global_8h.html#a12259acdd6aff74ee83819d3aebd8ba9',1,'MUtils']]]
|
||||||
];
|
];
|
||||||
|
26
docs/search/functions_5.html
Normal file
26
docs/search/functions_5.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.12"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="functions_5.js"></script>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div id="SRResults"></div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
createResults();
|
||||||
|
--></script>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
6
docs/search/functions_5.js
Normal file
6
docs/search/functions_5.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
var searchData=
|
||||||
|
[
|
||||||
|
['temp_5ffolder',['temp_folder',['../d5/d3b/_global_8h.html#a9ddb9a2039585b1ef3429db16ea84292',1,'MUtils']]],
|
||||||
|
['trim_5fleft',['trim_left',['../d5/d3b/_global_8h.html#af089c8a40b6ec2e19db3fe612aa81c8c',1,'MUtils::trim_left(QString &str)'],['../d5/d3b/_global_8h.html#a8680aeaeb1118353bd099e26ba7d6123',1,'MUtils::trim_left(const QString &str)']]],
|
||||||
|
['trim_5fright',['trim_right',['../d5/d3b/_global_8h.html#a9290a3fe637a05ad2a7515f36fad79bd',1,'MUtils::trim_right(QString &str)'],['../d5/d3b/_global_8h.html#a3eb47d6ca49b2700622e3fe99faf14d8',1,'MUtils::trim_right(const QString &str)']]]
|
||||||
|
];
|
@ -1,9 +1,9 @@
|
|||||||
var indexSectionsWithContent =
|
var indexSectionsWithContent =
|
||||||
{
|
{
|
||||||
0: "_bgijkmnprstuv",
|
0: "_abgijkmnprstuv",
|
||||||
1: "_bijkrstuv",
|
1: "_bijkrstuv",
|
||||||
2: "g",
|
2: "g",
|
||||||
3: "mnprt",
|
3: "amnprt",
|
||||||
4: "m"
|
4: "m"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -272,15 +272,47 @@ namespace MUtils
|
|||||||
*/
|
*/
|
||||||
MUTILS_API void natural_string_sort(QStringList &list, const bool bIgnoreCase);
|
MUTILS_API void natural_string_sort(QStringList &list, const bool bIgnoreCase);
|
||||||
|
|
||||||
//Clean file path
|
|
||||||
MUTILS_API QString clean_file_name(const QString &name);
|
MUTILS_API QString clean_file_name(const QString &name);
|
||||||
MUTILS_API QString clean_file_path(const QString &path);
|
MUTILS_API QString clean_file_path(const QString &path);
|
||||||
|
|
||||||
//Regular expressions
|
/**
|
||||||
|
* \brief Parse regular expression results
|
||||||
|
*
|
||||||
|
* This function tries to parses the result (capture) of a regular expression as an unsigned 32-Bit value. The given regular expression must contain at least *one* capture. Only the *first* capture is considered, additional captures are ignored.
|
||||||
|
*
|
||||||
|
* \param regexp A read-only reference to the [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) object whose result (capture) will be parsed. This [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) must already have been *successfully* matched against the respective input string, e.g. via `QRegExp::indexIn()`, prior to calling this function.
|
||||||
|
*
|
||||||
|
* \param value A reference to a variable of type `quint32`, where the unsigned 32-Bit representation of the result will be stored. The contents of this variable are *undefined*, if the function failed.
|
||||||
|
*
|
||||||
|
* \return The function returns `true`, if the regular expression's capture could be parsed successfully; it returns `false`, if the capture contains an invalid string or if there are insufficient captures in given the [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) object.
|
||||||
|
*/
|
||||||
MUTILS_API bool regexp_parse_uint32(const QRegExp ®exp, quint32 &value);
|
MUTILS_API bool regexp_parse_uint32(const QRegExp ®exp, quint32 &value);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Parse regular expression results
|
||||||
|
*
|
||||||
|
* This function tries to parses the results (captures) of a regular expression as unsigned 32-Bit values. The given regular expression must contain at least \p count captures. Only the *first* \p count captures are considered, additional captures are ignored.
|
||||||
|
*
|
||||||
|
* \param regexp A read-only reference to the [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) object whose results (captures) will be parsed. This [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) must already have been *successfully* matched against the respective input string, e.g. via `QRegExp::indexIn()`, prior to calling this function.
|
||||||
|
*
|
||||||
|
* \param value A pointer to an array of type `quint32`, where the unsigned 32-Bit representations of the results will be stored (the `n`-th result is stored at `value[n-1]`). The array must be at least \p count elements in length. The contents of this array are *undefined*, if the function failed.
|
||||||
|
*
|
||||||
|
* \param count Specifies the number of results (captures) in the given [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) object. The function tries to parse the first \p count captures and ignores any additional captures that may exist. This parameter also determines the required (minimum) length of the \p value array.
|
||||||
|
*
|
||||||
|
* \return The function returns `true`, if all of the regular expression's captures could be parsed successfully; it returns `false`, if any of the captures contain an invalid string or if there are insufficient captures in given the [QRegExp](http://doc.qt.io/qt-4.8/qregexp.html) object.
|
||||||
|
*/
|
||||||
MUTILS_API bool regexp_parse_uint32(const QRegExp ®exp, quint32 *values, const size_t &count);
|
MUTILS_API bool regexp_parse_uint32(const QRegExp ®exp, quint32 *values, const size_t &count);
|
||||||
|
|
||||||
//Internationalization
|
/**
|
||||||
|
* \brief Retrieve a list of all available codepages
|
||||||
|
*
|
||||||
|
* The function generates a list of all codepages that are available on the system. Each codepage name returned by this function may be passed to the `QTextCodec::codecForName()` function in order to obtain a corresponding [QTextCodec](http://doc.qt.io/qt-4.8/qtextcodec.html) object.
|
||||||
|
*
|
||||||
|
* \param noAliases If set to `true`, only distinct codepages are returned, i.e. any codepage aliases are discarded from the list; if set to `false`, the returned list may (and usually will) also contain codepage aliases.
|
||||||
|
*
|
||||||
|
* \return If the function succeeds, it returns a QStringList holding the names of all codepages available on the system; otherwise it returns a default-constructed QStringList.
|
||||||
|
*/
|
||||||
MUTILS_API QStringList available_codepages(const bool &noAliases = true);
|
MUTILS_API QStringList available_codepages(const bool &noAliases = true);
|
||||||
|
|
||||||
//Internal
|
//Internal
|
||||||
|
Loading…
Reference in New Issue
Block a user