godot/scene/resources/default_theme/default_theme.h

25 lines
894 B
C++
Raw Normal View History

2014-02-10 01:10:30 +00:00
/*************************************************/
/* default_theme.h */
/*************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/*************************************************/
/* Source code within this file is: */
2016-01-01 13:50:53 +00:00
/* (c) 2007-2016 Juan Linietsky, Ariel Manzur */
2014-02-10 01:10:30 +00:00
/* All Rights Reserved. */
/*************************************************/
#ifndef DEFAULT_THEME_H
#define DEFAULT_THEME_H
#include "scene/resources/theme.h"
2014-02-10 01:10:30 +00:00
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
void fill_default_theme(Ref<Theme>& theme,const Ref<Font> & default_font,const Ref<Font> & large_font,Ref<Texture>& default_icon, Ref<StyleBox>& default_style,bool p_hidpi);
2014-02-10 01:10:30 +00:00
void make_default_theme();
void clear_default_theme();
#endif