src/statusbar_gui.h
author Tero Marttila <terom@fixme.fi>
Tue, 22 Jul 2008 21:51:14 +0300
changeset 11180 982e9f814f97
parent 10570 b83e3644d1da
permissions -rw-r--r--
scan for tarfiles in CACHE_DIR, remember what Subdirectory a tar was found in, set the GCF_FLAG on GRFs loaded from there, and hide those in the NewGRF GUI
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 */