edn/Sources/appl/Highlight/HighlightManager.h

46 lines
1.2 KiB
C
Raw Normal View History

/**
*******************************************************************************
* @file HighlightManager.h
* @brief Editeur De N'ours : Hightlining Manager (header)
* @author Edouard DUPIN
* @date 14/12/2010
* @par Project
* Edn
*
* @par Copyright
* Copyright 2010 Edouard DUPIN, all right reserved
*
* This software is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY.
*
* Licence summary :
* You can modify and redistribute the sources code and binaries.
* You can send me the bug-fix
* You can not earn money with this Software (if the source extract from Edn
* represent less than 50% of original Sources)
* Term of the licence in in the file licence.txt.
*
*******************************************************************************
*/
#ifndef __HIGHLIGHT_MANAGER_H__
#define __HIGHLIGHT_MANAGER_H__
2012-02-15 16:23:20 +01:00
#include <etk/UString.h>
2012-04-24 09:42:14 +02:00
#include <appl/globalMsg.h>
#include <Highlight.h>
#include <ewol/Widget.h>
2012-02-19 22:33:43 +01:00
namespace HighlightManager{
void Init(void);
void UnInit(void);
void loadLanguages(void);
Highlight* Get(etk::File &fileName);
bool Exist(etk::File &fileName);
};
2012-02-19 22:33:43 +01:00
#endif