29 lines
515 B
C++
29 lines
515 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license GPL v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __HIGHLIGHT_MANAGER_H__
|
|
#define __HIGHLIGHT_MANAGER_H__
|
|
|
|
|
|
#include <etk/UString.h>
|
|
#include <appl/globalMsg.h>
|
|
#include <Highlight.h>
|
|
#include <ewol/widget/Widget.h>
|
|
|
|
namespace HighlightManager{
|
|
void Init(void);
|
|
void UnInit(void);
|
|
void loadLanguages(void);
|
|
Highlight* Get(etk::FSNode &fileName);
|
|
bool Exist(etk::FSNode &fileName);
|
|
};
|
|
|
|
|
|
#endif
|
|
|