QTfrontend/misc.h
author unc0rr
Thu, 12 Mar 2009 13:54:32 +0000
changeset 1885 75489216b5b0
parent 1878 b3b277d2b891
child 1905 b1ec8db513f2
permissions -rw-r--r--
Continue work on new schemes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1878
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     1
/*
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     3
 *
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     4
 * This program is free software; you can redistribute it and/or modify
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     5
 * it under the terms of the GNU General Public License as published by
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     6
 * the Free Software Foundation; version 2 of the License
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     7
 *
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     8
 * This program is distributed in the hope that it will be useful,
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
     9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    11
 * GNU General Public License for more details.
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    12
 *
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    13
 * You should have received a copy of the GNU General Public License
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    14
 * along with this program; if not, write to the Free Software
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    15
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    16
 */
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    17
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    18
#ifndef _MISC_H
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    19
#define _MISC_H
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    20
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    21
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    22
#include <QObject>
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    23
#include <QByteArray>
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    24
#include <QString>
1885
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    25
#include <QSpinBox>
1878
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    26
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    27
class Hash : public QObject
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    28
{
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    29
	Q_OBJECT
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    30
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    31
public:
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    32
	Hash();
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    33
	static QString md5(QByteArray buf);
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    34
};
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    35
1885
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    36
class FreqSpinBox : public QSpinBox
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    37
{
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    38
	Q_OBJECT
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    39
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    40
public:
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    41
	FreqSpinBox(QWidget* parent) : QSpinBox(parent)
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    42
	{
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    43
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    44
	}
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    45
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    46
	QString textFromValue ( int value ) const
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    47
	{
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    48
		switch (value)
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    49
		{
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    50
			case 0 : return tr("Never");
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    51
			case 1 : return tr("Every turn");
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    52
			default : return tr("Each %1 turn").arg(value);
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    53
		}
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    54
	}
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    55
};
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    56
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1878
diff changeset
    57
1878
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
diff changeset
    58
#endif // _MISC_H