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
|
|
|
|
|
2016-05-30 03:28:29 +00:00
|
|
|
#include "scene/resources/theme.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2016-05-30 03:28:29 +00:00
|
|
|
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
|