(svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed

This commit is contained in:
smatz
2008-02-17 17:00:43 +00:00
parent d7a72c7002
commit d3d126f999
8 changed files with 120 additions and 15 deletions

View File

@@ -123,6 +123,7 @@ enum WindowEventCodes {
WE_MESSAGE,
WE_SCROLL,
WE_INVALIDATE_DATA,
WE_CTRL_CHANGED,
};
struct WindowEvent {
@@ -192,6 +193,10 @@ struct WindowEvent {
struct {
int wheel; ///< how much was 'wheel'd'
} wheel;
struct {
bool cont; ///< continue the search? (default true)
} ctrl;
} we;
};