[DEV] clean header file
This commit is contained in:
parent
8eb7fe9839
commit
c284ad0b3a
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <etk/stdTools.h>
|
||||
#include <appl/Buffer.h>
|
||||
|
@ -1,13 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_BUFFER_H__
|
||||
#define __APPL_BUFFER_H__
|
||||
#pragma once
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <etk/os/FSNode.h>
|
||||
@ -626,7 +622,4 @@ namespace appl {
|
||||
void hightlightGenerateLines(appl::DisplayHLData& _MData, const appl::Buffer::Iterator& _HLStart, int64_t _nbLines);
|
||||
appl::HighlightInfo* getElementColorAtPosition(appl::DisplayHLData& _MData, int64_t _pos);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
}
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <etk/os/FSNode.h>
|
||||
#include <appl/debug.h>
|
||||
|
@ -1,13 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __BUFFER_MANAGER_H__
|
||||
#define __BUFFER_MANAGER_H__
|
||||
#pragma once
|
||||
|
||||
#include <list>
|
||||
#include <appl/Buffer.h>
|
||||
@ -96,7 +92,6 @@ namespace appl {
|
||||
return m_list.end();
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -1,47 +1,40 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/GlyphDecoration.h>
|
||||
|
||||
appl::GlyphDecoration::GlyphDecoration(const std::string &_newColorName) :
|
||||
m_colorName(_newColorName),
|
||||
m_colorFG(etk::color::black),
|
||||
m_colorBG(etk::color::none),
|
||||
m_italic(false),
|
||||
m_bold(false)
|
||||
{
|
||||
APPL_VERBOSE("New(" << __class__ << ")");
|
||||
m_colorName(_newColorName),
|
||||
m_colorFG(etk::color::black),
|
||||
m_colorBG(etk::color::none),
|
||||
m_italic(false),
|
||||
m_bold(false) {
|
||||
APPL_VERBOSE("create");
|
||||
}
|
||||
|
||||
void appl::GlyphDecoration::setItalic(bool _enable)
|
||||
{
|
||||
void appl::GlyphDecoration::setItalic(bool _enable) {
|
||||
m_italic = _enable;
|
||||
if (true == _enable) {
|
||||
if (_enable == true) {
|
||||
APPL_VERBOSE("color : \"" << m_colorName << "\" enable italic");
|
||||
} else {
|
||||
APPL_VERBOSE("color : \"" << m_colorName << "\" disable italic");
|
||||
}
|
||||
}
|
||||
|
||||
void appl::GlyphDecoration::setBold(bool _enable)
|
||||
{
|
||||
void appl::GlyphDecoration::setBold(bool _enable) {
|
||||
m_bold = _enable;
|
||||
if (true == _enable) {
|
||||
if (_enable == true) {
|
||||
APPL_VERBOSE("color : \"" << m_colorName << "\" enable bold");
|
||||
} else {
|
||||
APPL_VERBOSE("color : \"" << m_colorName << "\" disable bold");
|
||||
}
|
||||
}
|
||||
|
||||
std::ostream& appl::operator <<(std::ostream& _os, const appl::GlyphDecoration& _obj)
|
||||
{
|
||||
std::ostream& appl::operator <<(std::ostream& _os, const appl::GlyphDecoration& _obj) {
|
||||
_os << "{fg=" << _obj.getForeground();
|
||||
_os << ",bg=" << _obj.getBackground();
|
||||
_os << ",italic=" << _obj.getItalic();
|
||||
|
@ -1,13 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __GLYPH_DECORATION_H__
|
||||
#define __GLYPH_DECORATION_H__
|
||||
#pragma once
|
||||
|
||||
#include <etk/Color.h>
|
||||
#include <etk/types.h>
|
||||
@ -119,6 +115,4 @@ namespace appl {
|
||||
std::ostream& operator <<(std::ostream& _os, const appl::GlyphDecoration& _obj);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/GlyphPainting.h>
|
||||
|
@ -1,13 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_GLYPH_PAINTING_H__
|
||||
#define __APPL_GLYPH_PAINTING_H__
|
||||
#pragma once
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <ewol/debug.h>
|
||||
@ -52,7 +48,6 @@ namespace appl {
|
||||
return m_list[_pos];
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/Gui/BufferView.h>
|
||||
|
@ -1,13 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __BUFFER_VIEW_H__
|
||||
#define __BUFFER_VIEW_H__
|
||||
#pragma once
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/BufferManager.h>
|
||||
@ -79,7 +75,3 @@ class BufferView : public ewol::widget::List {
|
||||
void onCallbackBufferRemoved(const std::shared_ptr<appl::Buffer>& _buffer);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/Gui/MainWindows.h>
|
||||
|
@ -1,13 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __MAIN_WINDOWS_H__
|
||||
#define __MAIN_WINDOWS_H__
|
||||
#pragma once
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/globalMsg.h>
|
||||
@ -56,6 +52,3 @@ class MainWindows : public ewol::widget::Windows {
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include "appl/global.h"
|
||||
#include "appl/Gui/Search.h"
|
||||
#include "appl/BufferManager.h"
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __SEARCH_H__
|
||||
#define __SEARCH_H__
|
||||
|
||||
#pragma once
|
||||
#include <appl/debug.h>
|
||||
#include <ewol/widget/Composer.h>
|
||||
#include <ewol/widget/Entry.h>
|
||||
@ -63,7 +58,5 @@ namespace appl {
|
||||
void OnCallbackForward(const bool& _value);
|
||||
};
|
||||
};
|
||||
};
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <etk/tool.h>
|
||||
#include <appl/Gui/TagFileList.h>
|
||||
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_CTAGS_LIST_H__
|
||||
#define __APPL_CTAGS_LIST_H__
|
||||
|
||||
#pragma once
|
||||
#include <appl/debug.h>
|
||||
#include <ewol/widget/List.h>
|
||||
#include <ewol/resource/ColorFile.h>
|
||||
@ -62,10 +57,5 @@ namespace appl {
|
||||
*/
|
||||
void add(std::string& _file, int32_t _line);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/Gui/TagFileSelection.h>
|
||||
#include <ewol/widget/Sizer.h>
|
||||
#include <ewol/widget/List.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_CTAGS_SELECTION_H__
|
||||
#define __APPL_CTAGS_SELECTION_H__
|
||||
|
||||
#pragma once
|
||||
#include <appl/debug.h>
|
||||
#include <ewol/widget/PopUp.h>
|
||||
#include <appl/Gui/TagFileList.h>
|
||||
@ -40,8 +35,5 @@ namespace appl {
|
||||
void onCallbackCtagsListSelect(const std::string& _value);
|
||||
void onCallbackCtagsListUnSelect();
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_VIEWER_H__
|
||||
#define __APPL_TEXT_VIEWER_H__
|
||||
|
||||
#pragma once
|
||||
#include <appl/debug.h>
|
||||
#include <appl/Buffer.h>
|
||||
#include <appl/globalMsg.h>
|
||||
@ -423,7 +418,5 @@ namespace appl {
|
||||
void onCallbackSelectChange();
|
||||
void onCallbackselectNewFile(const std::string& _value);
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/Gui/ViewerManager.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __VIEWER_MANAGER_H__
|
||||
#define __VIEWER_MANAGER_H__
|
||||
|
||||
#pragma once
|
||||
#include <appl/Buffer.h>
|
||||
#include <appl/globalMsg.h>
|
||||
#include <ewol/widget/Widget.h>
|
||||
@ -49,7 +44,4 @@ namespace appl {
|
||||
*/
|
||||
bool isLastSelected(const std::shared_ptr<appl::TextViewer>& _viewer);
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <ewol/context/Context.h>
|
||||
#include <appl/debug.h>
|
||||
#include <appl/Gui/WorkerCloseAllFile.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __WORKER_CLOSE_ALL_FILE_H__
|
||||
#define __WORKER_CLOSE_ALL_FILE_H__
|
||||
|
||||
#pragma once
|
||||
#include <ewol/object/Worker.h>
|
||||
#include <appl/BufferManager.h>
|
||||
#include <appl/Gui/WorkerCloseFile.h>
|
||||
@ -28,7 +23,4 @@ namespace appl {
|
||||
public: // callback function
|
||||
void onCallbackCloseDone();
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <ewol/context/Context.h>
|
||||
#include <appl/debug.h>
|
||||
#include <appl/Gui/WorkerCloseFile.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __WORKER_CLOSE_FILE_H__
|
||||
#define __WORKER_CLOSE_FILE_H__
|
||||
|
||||
#pragma once
|
||||
#include <ewol/object/Worker.h>
|
||||
#include <ewol/widget/meta/FileChooser.h>
|
||||
#include <appl/BufferManager.h>
|
||||
@ -42,6 +37,5 @@ namespace appl {
|
||||
void onCallbackClose();
|
||||
void onCallbackCancel();
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <ewol/context/Context.h>
|
||||
#include <appl/debug.h>
|
||||
#include <appl/Gui/WorkerSaveAllFile.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __WORKER_SAVE_ALL_FILE_H__
|
||||
#define __WORKER_SAVE_ALL_FILE_H__
|
||||
|
||||
#pragma once
|
||||
#include <ewol/object/Worker.h>
|
||||
#include <appl/BufferManager.h>
|
||||
#include <appl/Gui/WorkerSaveFile.h>
|
||||
@ -28,6 +23,5 @@ namespace appl {
|
||||
public: // callback function
|
||||
void onCallbackSaveAsDone();
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <ewol/context/Context.h>
|
||||
#include <appl/debug.h>
|
||||
#include <appl/Gui/WorkerSaveFile.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __WORKER_SAVE_FILE_H__
|
||||
#define __WORKER_SAVE_FILE_H__
|
||||
|
||||
#pragma once
|
||||
#include <ewol/widget/meta/FileChooser.h>
|
||||
#include <ewol/object/Worker.h>
|
||||
#include <appl/BufferManager.h>
|
||||
@ -33,6 +28,5 @@ namespace appl {
|
||||
void onCallbackSaveAsValidate(const std::string& _value);
|
||||
void onCallbackCancel();
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/Highlight.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __HIGHLIGHT_H__
|
||||
#define __HIGHLIGHT_H__
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace appl {
|
||||
class Highlight;
|
||||
@ -21,7 +16,7 @@ namespace appl {
|
||||
bool notEnded;
|
||||
appl::HighlightPattern* patern;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#include <memory>
|
||||
#include <etk/os/FSNode.h>
|
||||
@ -78,12 +73,6 @@ namespace appl {
|
||||
return true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/HighlightManager.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __HIGHLIGHT_MANAGER_H__
|
||||
#define __HIGHLIGHT_MANAGER_H__
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <appl/globalMsg.h>
|
||||
@ -43,8 +38,5 @@ namespace appl {
|
||||
*/
|
||||
std::vector<std::string> getTypeList();
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
#include <appl/global.h>
|
||||
#include <appl/HighlightPattern.h>
|
||||
|
@ -1,16 +1,11 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <appl/Highlight.h>
|
||||
|
||||
#ifndef __HIGHLIGHT_PATTERN_H__
|
||||
#define __HIGHLIGHT_PATTERN_H__
|
||||
|
||||
class HighlightPattern;
|
||||
|
||||
#include <appl/GlyphPainting.h>
|
||||
@ -89,8 +84,5 @@ namespace appl {
|
||||
|
||||
void parseRules(const exml::Element& _child, int32_t _level);
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPlugin.h>
|
||||
#include <appl/TextPluginManager.h>
|
||||
#include <appl/debug.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_H__
|
||||
#define __APPL_TEXT_PLUGIN_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -221,7 +216,5 @@ namespace appl {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginAutoIndent.h>
|
||||
#include <gale/context/clipBoard.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_AUTO_INDENT_H__
|
||||
#define __APPL_TEXT_PLUGIN_AUTO_INDENT_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -28,7 +23,5 @@ namespace appl {
|
||||
virtual bool onEventEntry(appl::TextViewer& _textDrawer,
|
||||
const ewol::event::Entry& _event);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,12 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginCopy.h>
|
||||
#include <gale/context/clipBoard.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_COPY_H__
|
||||
#define __APPL_TEXT_PLUGIN_COPY_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -35,7 +30,5 @@ namespace appl {
|
||||
virtual void onPluginDisable(appl::TextViewer& _textDrawer);
|
||||
virtual bool onReceiveShortCut(appl::TextViewer& _textDrawer, const std::string& _shortCutName);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginCtags.h>
|
||||
#include <gale/context/clipBoard.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_CTAGS_H__
|
||||
#define __APPL_TEXT_PLUGIN_CTAGS_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -48,7 +43,5 @@ namespace appl {
|
||||
void onCallbackOpenCtagsOpenFileReturn(const std::string& _value);
|
||||
void onCallbackOpenCtagsSelectReturn(const std::string& _value);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_DATA_H__
|
||||
#define __APPL_TEXT_PLUGIN_DATA_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -123,7 +118,5 @@ namespace appl {
|
||||
return;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginHistory.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
#include <appl/TextPluginManager.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_HISTORY_H__
|
||||
#define __APPL_TEXT_PLUGIN_HISTORY_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -73,7 +68,5 @@ namespace appl {
|
||||
void clearRedo(appl::PluginHistoryData& _data);
|
||||
void clearUndo(appl::PluginHistoryData& _data);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/TextPluginManager.h>
|
||||
#include <appl/debug.h>
|
||||
#include <appl/TextPluginCopy.h>
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_MANAGER_H__
|
||||
#define __APPL_TEXT_PLUGIN_MANAGER_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -117,7 +112,5 @@ namespace appl {
|
||||
bool onCursorMove(appl::TextViewer& _textDrawer,
|
||||
const appl::Buffer::Iterator& _pos);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginMultiLineTab.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_MULTI_LINE_TAB_H__
|
||||
#define __APPL_TEXT_PLUGIN_MULTI_LINE_TAB_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -28,8 +23,5 @@ namespace appl {
|
||||
virtual bool onEventEntry(appl::TextViewer& _textDrawer,
|
||||
const ewol::event::Entry& _event);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginRmLine.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_RM_LINE_H__
|
||||
#define __APPL_TEXT_RM_LINE_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -29,7 +24,5 @@ namespace appl {
|
||||
virtual void onPluginDisable(appl::TextViewer& _textDrawer);
|
||||
virtual bool onReceiveShortCut(appl::TextViewer& _textDrawer, const std::string& _shortCutName);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,12 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
#include <appl/TextPluginSelectAll.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
|
||||
|
@ -1,14 +1,9 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __APPL_TEXT_PLUGIN_SELECT_ALL_H__
|
||||
#define __APPL_TEXT_PLUGIN_SELECT_ALL_H__
|
||||
|
||||
#pragma once
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <appl/Gui/TextViewer.h>
|
||||
@ -32,7 +27,5 @@ namespace appl {
|
||||
virtual void onPluginDisable(appl::TextViewer& _textDrawer);
|
||||
virtual bool onReceiveShortCut(appl::TextViewer& _textDrawer, const std::string& _shortCutName);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/debug.h>
|
||||
|
||||
int32_t appl::getLogId() {
|
||||
|
@ -1,8 +1,6 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
#pragma once
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <appl/global.h>
|
||||
#include <appl/globalMsg.h>
|
||||
#include <ewol/object/Object.h>
|
||||
|
@ -1,20 +1,13 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __TOOLS_GLOBALS_H__
|
||||
#define __TOOLS_GLOBALS_H__
|
||||
|
||||
#pragma once
|
||||
#include <appl/debug.h>
|
||||
#include <ewol/widget/Sizer.h>
|
||||
|
||||
|
||||
namespace globals
|
||||
{
|
||||
namespace globals {
|
||||
void init();
|
||||
void UnInit();
|
||||
int32_t getNbColoneBorder();
|
||||
@ -49,9 +42,6 @@ namespace globals
|
||||
void onCallbackTabulation(const bool& _value);
|
||||
void onCallbackRounded(const bool& _value);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <ewol/ewol.h>
|
||||
#include <ewol/object/Object.h>
|
||||
|
@ -1,11 +1,8 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2011, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license BSD v3 (see license file)
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
* @license GPL v3 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __EWOL_WIDGET_H__
|
||||
#define __EWOL_WIDGET_H__
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user