Files @ r17613:a9b2554a5d79
Branch filter:

Location: cpp/openttd-patchpack/source/src/widgets/dropdown_type.h - annotation

rubidium
(svn r22387) -Fix-ish [FS#4601]: Windows' recv seems to return "graceful closed" before having passed the remaining buffer which causes OpenTTD to think all connections are "incorrectly" terminated, i.e. without the "I'm leaving" packet from the client. So let the client wait a tiny bit after sending the "I'm leaving" packet and before gracefully closing the connection
r8284:d769847bf11d
r8284:d769847bf11d
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r9111:983de9c5a848
r9111:983de9c5a848
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r14248:a9050881acd7
r17536:874389c26a49
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8290:b32f411ab7cc
r8290:b32f411ab7cc
r9859:8c15dba58099
r9859:8c15dba58099
r11511:a8b6e0c60152
r9868:7ffba1f0658a
r11420:2e2784d31ccf
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8290:b32f411ab7cc
r8293:5e18781db363
r8284:d769847bf11d
r9859:8c15dba58099
r9868:7ffba1f0658a
r11420:2e2784d31ccf
r9859:8c15dba58099
r17537:af2bdb4ae259
r17537:af2bdb4ae259
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8290:b32f411ab7cc
r8293:5e18781db363
r8285:e82ce65cfaa6
r9859:8c15dba58099
r9859:8c15dba58099
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r11047:addbbfc68d6f
r11047:addbbfc68d6f
r17536:874389c26a49
r11047:addbbfc68d6f
r17536:874389c26a49
r11047:addbbfc68d6f
r17536:874389c26a49
r11047:addbbfc68d6f
r11047:addbbfc68d6f
r17536:874389c26a49
r11047:addbbfc68d6f
r11047:addbbfc68d6f
r11047:addbbfc68d6f
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8284:d769847bf11d
r8877:00e39d55d291
r10009:58150b3a405f
r9869:49fc50b6a2ef
r9869:49fc50b6a2ef
r8284:d769847bf11d
r10009:58150b3a405f
r8284:d769847bf11d
r8284:d769847bf11d
/* $Id$ */

/*
 * This file is part of OpenTTD.
 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
 * OpenTTD 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 General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
 */

/** @file dropdown_type.h Types related to the drop down widget. */

#ifndef WIDGETS_DROPDOWN_TYPE_H
#define WIDGETS_DROPDOWN_TYPE_H

#include "../window_type.h"
#include "../gfx_func.h"
#include "table/strings.h"
#include <list>

/**
 * Base list item class from which others are derived. If placed in a list it
 * will appear as a horizontal line in the menu.
 */
class DropDownListItem {
public:
	int result;  ///< Result code to return to window on selection
	bool masked; ///< Masked and unselectable item

	DropDownListItem(int result, bool masked) : result(result), masked(masked) {}
	virtual ~DropDownListItem() {}

	virtual bool Selectable() const { return false; }
	virtual uint Height(uint width) const { return FONT_HEIGHT_NORMAL; }
	virtual uint Width() const { return 0; }
	virtual void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const;
};

/**
 * Common string list item.
 */
class DropDownListStringItem : public DropDownListItem {
public:
	StringID string; ///< String ID of item

	DropDownListStringItem(StringID string, int result, bool masked) : DropDownListItem(result, masked), string(string) {}
	virtual ~DropDownListStringItem() {}

	virtual bool Selectable() const { return true; }
	virtual uint Width() const;
	virtual void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const;
	virtual StringID String() const { return this->string; }

	static bool NatSortFunc(const DropDownListItem *first, const DropDownListItem *second);
};

/**
 * String list item with parameters.
 */
class DropDownListParamStringItem : public DropDownListStringItem {
public:
	uint64 decode_params[10]; ///< Parameters of the string

	DropDownListParamStringItem(StringID string, int result, bool masked) : DropDownListStringItem(string, result, masked) {}
	virtual ~DropDownListParamStringItem() {}

	virtual StringID String() const;
	virtual void SetParam(uint index, uint64 value) { decode_params[index] = value; }
};

/**
 * List item containing a C char string.
 */
class DropDownListCharStringItem : public DropDownListStringItem {
public:
	const char *raw_string;

	DropDownListCharStringItem(const char *raw_string, int result, bool masked) : DropDownListStringItem(STR_JUST_RAW_STRING, result, masked), raw_string(raw_string) {}
	virtual ~DropDownListCharStringItem() {}

	virtual StringID String() const;
};

/**
 * A drop down list is a collection of drop down list items.
 */
typedef std::list<DropDownListItem *> DropDownList;

/**
 * Show a drop down list.
 * @param w        Parent window for the list.
 * @param list     Prepopulated DropDownList. Will be deleted when the list is
 *                 closed.
 * @param selected The initially selected list item.
 * @param button   The widget within the parent window that is used to determine
 *                 the list's location.
 * @param width    Override the width determined by the selected widget.
 * @param auto_width Maximum width is determined by the widest item in the list.
 * @param instant_close Set to true if releasing mouse button should close the
 *                      list regardless of where the cursor is.
 */
void ShowDropDownList(Window *w, DropDownList *list, int selected, int button, uint width = 0, bool auto_width = false, bool instant_close = false);

#endif /* WIDGETS_DROPDOWN_TYPE_H */