src/statusbar_gui.h
author rubidium
Fri, 18 Jul 2008 12:20:31 +0000
changeset 11171 04fc8e49df1b
parent 10570 b83e3644d1da
permissions -rw-r--r--
(svn r13729) -Fix: assumption that non-north tiles of a house do not have the 1x1 building bit set was flawed with some NewGRFs. This caused the amount of houses to differ, which causes the town radii to differ, which causes desyncs when towns are expanded.
10570
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     1
/* $Id$ */
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     2
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     3
/** @file statusbar_gui.h Functions, definitions and such used only by the GUI. */
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     4
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     5
#ifndef STATUSBAR_GUI_H
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     6
#define STATUSBAR_GUI_H
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     7
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     8
enum StatusBarInvalidate
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
     9
{
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    10
	SBI_SAVELOAD_START,
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    11
	SBI_SAVELOAD_FINISH,
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    12
	SBI_SHOW_TICKER,
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    13
	SBI_SHOW_REMINDER,
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    14
	SBI_END
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    15
};
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    16
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    17
bool IsNewsTickerShown();
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    18
void ShowStatusBar();
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    19
b83e3644d1da (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium
parents:
diff changeset
    20
#endif /* STATUSBAR_GUI_H */