MuldeR's Utilities for Qt.
Go to file
2016-12-18 22:38:01 +01:00
etc/style Updated README file. 2016-04-16 14:25:52 +02:00
include/MUtils Removed seed_rand() function. Seeding will now be done automatically, if needed. 2016-12-18 22:38:01 +01:00
res Implemented static resource initialization. 2015-01-01 21:34:24 +01:00
src Removed seed_rand() function. Seeding will now be done automatically, if needed. 2016-12-18 22:38:01 +01:00
test Added test cases for natural_string_sort() and regexp_parse_uint32() functions. 2016-12-18 01:05:25 +01:00
.gitignore Added Test project for MUtilities. 2016-12-15 15:17:45 +01:00
LICENSE.html Initial commit. 2014-11-21 17:11:57 +01:00
MUtilities_VS2010.sln Added project/solution files for Visual Studio 2010. 2015-03-30 21:27:07 +02:00
MUtilities_VS2010.vcxproj More accurate way to check whether AVX OS-support is enabled. 2016-02-20 17:41:15 +01:00
MUtilities_VS2010.vcxproj.filters Fixed compilation with VS2010 and VS2013. 2015-12-19 19:06:40 +01:00
MUtilities_VS2013.sln Initial commit. 2014-11-21 17:11:57 +01:00
MUtilities_VS2013.vcxproj Fixed compilation with VS2010 and VS2013. 2015-12-19 19:06:40 +01:00
MUtilities_VS2013.vcxproj.filters Fixed compilation with VS2010 and VS2013. 2015-12-19 19:06:40 +01:00
MUtilities_VS2015.sln Added Test project for MUtilities. 2016-12-15 15:17:45 +01:00
MUtilities_VS2015.vcxproj Disable telemetry with VC14. 2016-06-11 20:29:47 +02:00
MUtilities_VS2015.vcxproj.filters Some code refactoring: Dynamic loading of DLL functions is now handled at a centralized place. 2015-11-22 21:45:09 +01:00
README.html Updated README file. 2016-04-16 14:28:32 +02:00
README.md Updated README file. 2016-04-16 14:28:32 +02:00
z_mkdocs.bat Updated README file. 2016-04-16 14:25:52 +02:00

% MUtilities README % Created by LoRd_MuldeR <mulder2@gmx> check http://muldersoft.com/ for news and updates!

Introduction

The MUtilities library is a collection of routines and classes to extend the Qt cross-platform framework. 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 LameXP application: Over the years, a lot of code, not really specific to LameXP, had accumulated in the LameXP 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 MUtilities (aka "MuldeR's Utilities for Qt") library. This library now forms the foundation of LameXP and other OpenSource projects.

License

This library is free software. It is released under the terms of the GNU Lesser General Public License (LGPL), Version 2.1.

MUtilities - MuldeR's Utilities for Qt
Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.

Acknowledgement

The following third-party code is used in the MUtilities library:

  • Keccak/SHA-3 Reference Implementation
    Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer
    No Copyright / Dedicated to the Public Domain

  • Natural Order String Comparison
    Copyright (C) 2000, 2004 by Martin Pool mbp@sourcefrog.net
    Released under the zlib License

  • Adler-32 Checksum Algorithm (from zlib)
    Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
    Released under the zlib License

 

e.o.f.