QTfrontend/ui/widget/lineeditcursor.cpp
author dag10
Mon, 21 Jan 2013 21:52:49 -0500
changeset 8424 225ede46e3dc
parent 8385 9e8924ff9813
child 8434 4821897a0f10
permissions -rw-r--r--
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible. Restored HWForm's min height to 580. Fixed the 2px alignment issue with the map list and map previews' top edges that unC0Rr was whining about. <3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     1
/*
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     4
 *
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     8
 *
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    12
 * GNU General Public License for more details.
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    13
 *
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    17
 */
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    18
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    19
#include <QKeyEvent>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    20
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    21
#include "lineeditcursor.h"
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    22
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    23
void LineEditCursor::keyPressEvent(QKeyEvent * event)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    24
{
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    25
	if (event->key() == Qt::Key_Up)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    26
		emit moveUp();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    27
	else if (event->key() == Qt::Key_Down)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    28
		emit moveDown();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    29
	else if (event->key() == Qt::Key_Left)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    30
		emit moveLeft();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    31
	else if (event->key() == Qt::Key_Right)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    32
		emit moveRight();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    33
	else
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    34
		QLineEdit::keyPressEvent(event);
8385
9e8924ff9813 Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents: 8374
diff changeset
    35
}