29 lines
491 B
C++
29 lines
491 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
|
|
|