2006-04-26 00:12:06 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2006, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
*/
|
|
|
|
#ifndef SERVER_READ_ONLY_MEMORY_H
|
|
|
|
#define SERVER_READ_ONLY_MEMORY_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <GraphicsDefs.h>
|
|
|
|
#include <InterfaceDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
static const int32 kNumColors = 32;
|
|
|
|
|
|
|
|
struct server_read_only_memory {
|
|
|
|
rgb_color colors[kNumColors];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static inline int32
|
|
|
|
color_which_to_index(color_which which)
|
|
|
|
{
|
2006-04-26 13:03:28 +04:00
|
|
|
// NOTE: this must be kept in sync with InterfaceDefs.h color_which!
|
|
|
|
if (which <= B_WINDOW_INACTIVE_TEXT_COLOR)
|
2006-04-26 00:12:06 +04:00
|
|
|
return which - 1;
|
|
|
|
if (which >= B_SUCCESS_COLOR && which <= B_FAILURE_COLOR)
|
2006-04-26 13:03:28 +04:00
|
|
|
return which - B_SUCCESS_COLOR + B_WINDOW_INACTIVE_TEXT_COLOR;
|
2006-04-26 00:12:06 +04:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SERVER_READ_ONLY_MEMORY_H */
|