resize_window_widgets.h
author Darkvater
Wed, 18 Oct 2006 21:07:36 +0000
changeset 4887 3fa54b371032
parent 4672 1ef34405eaf5
permissions -rw-r--r--
(svn r6824) -Feature: Change the functionality of the chat window. SHIFT+ENTER (SHIFT+T)
sends a message to all players, CTRL+ENTER (CTRL+T) sends a message to all
team mates and ENTER (T) sends a message to teammates if you have any, otherwise
to all players.
The chat-window now also shows what kind of message is being sent. Shortcut
functionality has not been changed (ENTER sends message, ESC closes window)
/* $Id$ */

/** @file resize_window_widgets.h */


#ifndef RESIZE_WINDOW_WIDGET_H
#define RESIZE_WINDOW_WIDGET_H
#include "stdafx.h"
#include "window.h"

enum {
	WIDGET_DEFINE_MOVE_NONE   = 0 << 0,
	WIDGET_DEFINE_MOVE_RIGHT  = 1 << 0,
	WIDGET_DEFINE_MOVE_LEFT   = 1 << 1,
	WIDGET_DEFINE_MOVE_TOP    = 1 << 2,
	WIDGET_DEFINE_MOVE_BOTTOM = 1 << 3,

	WIDGET_MOVE_NONE               = WIDGET_DEFINE_MOVE_NONE,
	WIDGET_STRETCH_RIGHT           = WIDGET_DEFINE_MOVE_RIGHT,
	WIDGET_MOVE_RIGHT              = WIDGET_DEFINE_MOVE_RIGHT | WIDGET_DEFINE_MOVE_LEFT,
	WIDGET_STRETCH_DOWN            = WIDGET_DEFINE_MOVE_BOTTOM,
	WIDGET_MOVE_DOWN               = WIDGET_DEFINE_MOVE_BOTTOM | WIDGET_DEFINE_MOVE_TOP,
	WIDGET_STRETCH_DOWN_RIGHT      = WIDGET_STRETCH_DOWN | WIDGET_STRETCH_RIGHT,
	WIDGET_MOVE_DOWN_RIGHT         = WIDGET_MOVE_RIGHT | WIDGET_MOVE_DOWN,
	WIDGET_MOVE_RIGHT_STRETCH_DOWN = WIDGET_MOVE_RIGHT | WIDGET_STRETCH_DOWN,
	WIDGET_MOVE_DOWN_STRETCH_RIGHT = WIDGET_MOVE_DOWN  | WIDGET_STRETCH_RIGHT,
};

void ResizeWindowWidgets(Window *w, const byte *resizearray, int16 length, byte horizontal, int16 vertical);

#endif