X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=docs%2Findex.html;h=97716a2eb2b56aeb5e278818cacfdab26ff4a8d0;hb=8fa44842da7d806c56804158a7cee9e3cd0d8884;hp=f37c0152e9b3ef83439ea8c984a903ab22a09813;hpb=53830e0b96810dbf5bb71966a7cbbc6935213a98;p=mutilities%2FMUtilities.git diff --git a/docs/index.html b/docs/index.html index f37c015..97716a2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,7 +5,7 @@ -MuldeR's Utilities for Qt: MuldeR's Utilities for Qt +MuldeR's Utilities for Qt: Main Page @@ -60,17 +60,51 @@ $(function() {
-
MuldeR's Utilities for Qt
+
MuldeR's Utilities for Qt Documentation
-

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.

-

API-Documentation

-

The public API of the MUtilities library is defined in the following header files:

+

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());
+}
+

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-2018 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:

+ +