[DEV/API] change .h in .hpp
This commit is contained in:
parent
6e517cec42
commit
d9f9c89118
@ -3,12 +3,12 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <etk/stdTools.h>
|
#include <etk/stdTools.hpp>
|
||||||
#include <appl/Buffer.h>
|
#include <appl/Buffer.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <gale/context/clipBoard.h>
|
#include <gale/context/clipBoard.hpp>
|
||||||
#include <appl/HighlightManager.h>
|
#include <appl/HighlightManager.hpp>
|
||||||
|
|
||||||
appl::Buffer::Iterator& appl::Buffer::Iterator::operator++ () {
|
appl::Buffer::Iterator& appl::Buffer::Iterator::operator++ () {
|
||||||
m_value = u32char::Null;
|
m_value = u32char::Null;
|
||||||
|
@ -5,14 +5,14 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <etk/os/FSNode.h>
|
#include <etk/os/FSNode.hpp>
|
||||||
#include <ewol/ewol.h>
|
#include <ewol/ewol.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/widget/Widget.h>
|
#include <ewol/widget/Widget.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/Highlight.h>
|
#include <appl/Highlight.hpp>
|
||||||
#include <esignal/Signal.h>
|
#include <esignal/Signal.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
|
|
@ -3,15 +3,15 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <etk/os/FSNode.h>
|
#include <etk/os/FSNode.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/object/Manager.h>
|
#include <ewol/object/Manager.hpp>
|
||||||
#include <esignal/Signal.h>
|
#include <esignal/Signal.hpp>
|
||||||
#include <gale/resource/Manager.h>
|
#include <gale/resource/Manager.hpp>
|
||||||
|
|
||||||
appl::BufferManager::BufferManager() :
|
appl::BufferManager::BufferManager() :
|
||||||
signalNewBuffer(this, "new-buffer", ""),
|
signalNewBuffer(this, "new-buffer", ""),
|
||||||
|
@ -6,10 +6,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <appl/Buffer.h>
|
#include <appl/Buffer.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
#include <ewol/widget/Widget.h>
|
#include <ewol/widget/Widget.hpp>
|
||||||
#include <gale/resource/Resource.h>
|
#include <gale/resource/Resource.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class BufferManager;
|
class BufferManager;
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/GlyphDecoration.h>
|
#include <appl/GlyphDecoration.hpp>
|
||||||
|
|
||||||
appl::GlyphDecoration::GlyphDecoration(const std::string &_newColorName) :
|
appl::GlyphDecoration::GlyphDecoration(const std::string &_newColorName) :
|
||||||
m_colorName(_newColorName),
|
m_colorName(_newColorName),
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <etk/Color.h>
|
#include <etk/Color.hpp>
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class GlyphDecoration {
|
class GlyphDecoration {
|
@ -3,12 +3,12 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/GlyphPainting.h>
|
#include <appl/GlyphPainting.hpp>
|
||||||
#include <ejson/ejson.h>
|
#include <ejson/ejson.hpp>
|
||||||
#include <etk/os/FSNode.h>
|
#include <etk/os/FSNode.hpp>
|
||||||
#include <gale/resource/Manager.h>
|
#include <gale/resource/Manager.hpp>
|
||||||
|
|
||||||
|
|
||||||
appl::GlyphPainting::GlyphPainting() {
|
appl::GlyphPainting::GlyphPainting() {
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/debug.h>
|
#include <ewol/debug.hpp>
|
||||||
#include <gale/resource/Resource.h>
|
#include <gale/resource/Resource.hpp>
|
||||||
#include <appl/GlyphDecoration.h>
|
#include <appl/GlyphDecoration.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class GlyphPainting : public gale::Resource {
|
class GlyphPainting : public gale::Resource {
|
@ -3,13 +3,13 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/Gui/BufferView.h>
|
#include <appl/Gui/BufferView.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
//#include <ColorizeManager.h>
|
//#include <ColorizeManager.hpp>
|
||||||
#include <appl/Gui/MainWindows.h>
|
#include <appl/Gui/MainWindows.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
|
|
||||||
// TODO : write it better
|
// TODO : write it better
|
||||||
static void SortElementList(std::vector<appl::dataBufferStruct>& _list) {
|
static void SortElementList(std::vector<appl::dataBufferStruct>& _list) {
|
||||||
|
@ -5,11 +5,11 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
#include <ewol/widget/List.h>
|
#include <ewol/widget/List.hpp>
|
||||||
#include <ewol/widget/Windows.h>
|
#include <ewol/widget/Windows.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class dataBufferStruct {
|
class dataBufferStruct {
|
@ -3,34 +3,34 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/Gui/MainWindows.h>
|
#include <appl/Gui/MainWindows.hpp>
|
||||||
#include <appl/Gui/BufferView.h>
|
#include <appl/Gui/BufferView.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <appl/Gui/Search.h>
|
#include <appl/Gui/Search.hpp>
|
||||||
|
|
||||||
#include <ewol/widget/Button.h>
|
#include <ewol/widget/Button.hpp>
|
||||||
#include <ewol/widget/CheckBox.h>
|
#include <ewol/widget/CheckBox.hpp>
|
||||||
#include <ewol/widget/Sizer.h>
|
#include <ewol/widget/Sizer.hpp>
|
||||||
#include <ewol/widget/Label.h>
|
#include <ewol/widget/Label.hpp>
|
||||||
#include <ewol/widget/Entry.h>
|
#include <ewol/widget/Entry.hpp>
|
||||||
#include <ewol/widget/List.h>
|
#include <ewol/widget/List.hpp>
|
||||||
#include <ewol/widget/ContextMenu.h>
|
#include <ewol/widget/ContextMenu.hpp>
|
||||||
#include <ewol/widget/PopUp.h>
|
#include <ewol/widget/PopUp.hpp>
|
||||||
#include <ewol/widget/Spacer.h>
|
#include <ewol/widget/Spacer.hpp>
|
||||||
#include <ewol/widget/Slider.h>
|
#include <ewol/widget/Slider.hpp>
|
||||||
#include <ewol/widget/Menu.h>
|
#include <ewol/widget/Menu.hpp>
|
||||||
#include <ewol/widget/meta/FileChooser.h>
|
#include <ewol/widget/meta/FileChooser.hpp>
|
||||||
#include <ewol/widget/meta/Parameter.h>
|
#include <ewol/widget/meta/Parameter.hpp>
|
||||||
#include <ewol/widget/Manager.h>
|
#include <ewol/widget/Manager.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <ewol/widget/meta/StdPopUp.h>
|
#include <ewol/widget/meta/StdPopUp.hpp>
|
||||||
#include <appl/Gui/WorkerSaveFile.h>
|
#include <appl/Gui/WorkerSaveFile.hpp>
|
||||||
#include <appl/Gui/WorkerSaveAllFile.h>
|
#include <appl/Gui/WorkerSaveAllFile.hpp>
|
||||||
#include <appl/Gui/WorkerCloseFile.h>
|
#include <appl/Gui/WorkerCloseFile.hpp>
|
||||||
#include <appl/Gui/WorkerCloseAllFile.h>
|
#include <appl/Gui/WorkerCloseAllFile.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
std::string getVersion() {
|
std::string getVersion() {
|
||||||
@ -39,8 +39,8 @@ namespace appl {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <ewol/widget/Label.h>
|
#include <ewol/widget/Label.hpp>
|
||||||
#include <ewol/widget/Spacer.h>
|
#include <ewol/widget/Spacer.hpp>
|
||||||
|
|
||||||
class ParameterAboutGui : public ewol::widget::Sizer {
|
class ParameterAboutGui : public ewol::widget::Sizer {
|
||||||
public :
|
public :
|
||||||
|
@ -5,15 +5,15 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
|
|
||||||
#include <appl/Gui/BufferView.h>
|
#include <appl/Gui/BufferView.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <ewol/widget/Label.h>
|
#include <ewol/widget/Label.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/Gui/Search.h>
|
#include <appl/Gui/Search.hpp>
|
||||||
#include <appl/Gui/ViewerManager.h>
|
#include <appl/Gui/ViewerManager.hpp>
|
||||||
class MainWindows : public ewol::widget::Windows {
|
class MainWindows : public ewol::widget::Windows {
|
||||||
private:
|
private:
|
||||||
ewol::widget::LabelShared m_widgetLabelFileName;
|
ewol::widget::LabelShared m_widgetLabelFileName;
|
@ -3,14 +3,14 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include "appl/global.h"
|
#include "appl/global.hpp"
|
||||||
#include "appl/Gui/Search.h"
|
#include "appl/Gui/Search.hpp"
|
||||||
#include "appl/BufferManager.h"
|
#include "appl/BufferManager.hpp"
|
||||||
#include "appl/Gui/TextViewer.h"
|
#include "appl/Gui/TextViewer.hpp"
|
||||||
#include "appl/Gui/MainWindows.h"
|
#include "appl/Gui/MainWindows.hpp"
|
||||||
#include "appl/globalMsg.h"
|
#include "appl/globalMsg.hpp"
|
||||||
#include <ewol/widget/Button.h>
|
#include <ewol/widget/Button.hpp>
|
||||||
#include <ewol/widget/Entry.h>
|
#include <ewol/widget/Entry.hpp>
|
||||||
|
|
||||||
appl::widget::Search::Search() :
|
appl::widget::Search::Search() :
|
||||||
m_forward(true),
|
m_forward(true),
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <ewol/widget/Composer.h>
|
#include <ewol/widget/Composer.hpp>
|
||||||
#include <ewol/widget/Entry.h>
|
#include <ewol/widget/Entry.hpp>
|
||||||
#include <appl/Buffer.h>
|
#include <appl/Buffer.hpp>
|
||||||
#include <appl/Gui/ViewerManager.h>
|
#include <appl/Gui/ViewerManager.hpp>
|
||||||
namespace appl {
|
namespace appl {
|
||||||
namespace widget {
|
namespace widget {
|
||||||
class Search;
|
class Search;
|
@ -3,8 +3,8 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <etk/tool.h>
|
#include <etk/tool.hpp>
|
||||||
#include <appl/Gui/TagFileList.h>
|
#include <appl/Gui/TagFileList.hpp>
|
||||||
|
|
||||||
appl::TagFileList::TagFileList() :
|
appl::TagFileList::TagFileList() :
|
||||||
signalSelect(this, "select", ""),
|
signalSelect(this, "select", ""),
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <ewol/widget/List.h>
|
#include <ewol/widget/List.hpp>
|
||||||
#include <ewol/resource/ColorFile.h>
|
#include <ewol/resource/ColorFile.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TagListElement {
|
class TagListElement {
|
@ -3,19 +3,19 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/Gui/TagFileSelection.h>
|
#include <appl/Gui/TagFileSelection.hpp>
|
||||||
#include <ewol/widget/Sizer.h>
|
#include <ewol/widget/Sizer.hpp>
|
||||||
#include <ewol/widget/List.h>
|
#include <ewol/widget/List.hpp>
|
||||||
#include <ewol/widget/Spacer.h>
|
#include <ewol/widget/Spacer.hpp>
|
||||||
#include <ewol/widget/Image.h>
|
#include <ewol/widget/Image.hpp>
|
||||||
#include <ewol/widget/Manager.h>
|
#include <ewol/widget/Manager.hpp>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <etk/tool.h>
|
#include <etk/tool.hpp>
|
||||||
#include <ewol/widget/Button.h>
|
#include <ewol/widget/Button.hpp>
|
||||||
#include <ewol/widget/Label.h>
|
#include <ewol/widget/Label.hpp>
|
||||||
#include <ewol/widget/Composer.h>
|
#include <ewol/widget/Composer.hpp>
|
||||||
|
|
||||||
#include <ewol/ewol.h>
|
#include <ewol/ewol.hpp>
|
||||||
|
|
||||||
appl::TagFileSelection::TagFileSelection() :
|
appl::TagFileSelection::TagFileSelection() :
|
||||||
signalSelect(this, "select", ""),
|
signalSelect(this, "select", ""),
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <ewol/widget/PopUp.h>
|
#include <ewol/widget/PopUp.hpp>
|
||||||
#include <appl/Gui/TagFileList.h>
|
#include <appl/Gui/TagFileList.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TagFileSelection : public ewol::widget::PopUp {
|
class TagFileSelection : public ewol::widget::PopUp {
|
@ -3,17 +3,17 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <gale/context/clipBoard.h>
|
#include <gale/context/clipBoard.hpp>
|
||||||
|
|
||||||
#include <ewol/widget/Manager.h>
|
#include <ewol/widget/Manager.hpp>
|
||||||
#include <appl/Gui/ViewerManager.h>
|
#include <appl/Gui/ViewerManager.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/TextPluginManager.h>
|
#include <appl/TextPluginManager.hpp>
|
||||||
#include <etk/stdTools.h>
|
#include <etk/stdTools.hpp>
|
||||||
|
|
||||||
#define tic() \
|
#define tic() \
|
||||||
int64_t startTime = ewol::getTime();
|
int64_t startTime = ewol::getTime();
|
||||||
|
@ -4,16 +4,16 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/Buffer.h>
|
#include <appl/Buffer.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
|
|
||||||
#include <ewol/widget/WidgetScrolled.h>
|
#include <ewol/widget/WidgetScrolled.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <ewol/compositing/TextDF.h>
|
#include <ewol/compositing/TextDF.hpp>
|
||||||
#include <ewol/compositing/Drawing.h>
|
#include <ewol/compositing/Drawing.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/Gui/ViewerManager.h>
|
#include <appl/Gui/ViewerManager.hpp>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
@ -3,13 +3,13 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/Gui/ViewerManager.h>
|
#include <appl/Gui/ViewerManager.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/object/Manager.h>
|
#include <ewol/object/Manager.hpp>
|
||||||
#include <gale/resource/Manager.h>
|
#include <gale/resource/Manager.hpp>
|
||||||
|
|
||||||
appl::ViewerManager::ViewerManager() {
|
appl::ViewerManager::ViewerManager() {
|
||||||
addObjectType("appl::ViewerManager");
|
addObjectType("appl::ViewerManager");
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/Buffer.h>
|
#include <appl/Buffer.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
#include <ewol/widget/Widget.h>
|
#include <ewol/widget/Widget.hpp>
|
||||||
#include <gale/resource/Resource.h>
|
#include <gale/resource/Resource.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TextViewer;
|
class TextViewer;
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/Gui/WorkerCloseAllFile.h>
|
#include <appl/Gui/WorkerCloseAllFile.hpp>
|
||||||
|
|
||||||
appl::WorkerCloseAllFile::WorkerCloseAllFile() {
|
appl::WorkerCloseAllFile::WorkerCloseAllFile() {
|
||||||
addObjectType("appl::WorkerCloseAllFile");
|
addObjectType("appl::WorkerCloseAllFile");
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ewol/object/Worker.h>
|
#include <ewol/object/Worker.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/Gui/WorkerCloseFile.h>
|
#include <appl/Gui/WorkerCloseFile.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class WorkerCloseAllFile : public ewol::object::Worker {
|
class WorkerCloseAllFile : public ewol::object::Worker {
|
@ -3,11 +3,11 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/Gui/WorkerCloseFile.h>
|
#include <appl/Gui/WorkerCloseFile.hpp>
|
||||||
#include <ewol/widget/meta/StdPopUp.h>
|
#include <ewol/widget/meta/StdPopUp.hpp>
|
||||||
#include <ewol/tools/message.h>
|
#include <ewol/tools/message.hpp>
|
||||||
|
|
||||||
appl::WorkerCloseFile::WorkerCloseFile() :
|
appl::WorkerCloseFile::WorkerCloseFile() :
|
||||||
signalCloseDone(this, "close-file-done", ""),
|
signalCloseDone(this, "close-file-done", ""),
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ewol/object/Worker.h>
|
#include <ewol/object/Worker.hpp>
|
||||||
#include <ewol/widget/meta/FileChooser.h>
|
#include <ewol/widget/meta/FileChooser.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/Gui/WorkerSaveFile.h>
|
#include <appl/Gui/WorkerSaveFile.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class WorkerCloseFile : public ewol::object::Worker {
|
class WorkerCloseFile : public ewol::object::Worker {
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/Gui/WorkerSaveAllFile.h>
|
#include <appl/Gui/WorkerSaveAllFile.hpp>
|
||||||
|
|
||||||
appl::WorkerSaveAllFile::WorkerSaveAllFile() {
|
appl::WorkerSaveAllFile::WorkerSaveAllFile() {
|
||||||
addObjectType("appl::WorkerSaveAllFile");
|
addObjectType("appl::WorkerSaveAllFile");
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ewol/object/Worker.h>
|
#include <ewol/object/Worker.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/Gui/WorkerSaveFile.h>
|
#include <appl/Gui/WorkerSaveFile.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class WorkerSaveAllFile : public ewol::object::Worker {
|
class WorkerSaveAllFile : public ewol::object::Worker {
|
@ -3,10 +3,10 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/Gui/WorkerSaveFile.h>
|
#include <appl/Gui/WorkerSaveFile.hpp>
|
||||||
#include <ewol/tools/message.h>
|
#include <ewol/tools/message.hpp>
|
||||||
|
|
||||||
appl::WorkerSaveFile::WorkerSaveFile() :
|
appl::WorkerSaveFile::WorkerSaveFile() :
|
||||||
signalSaveDone(this, "save-file-done", ""),
|
signalSaveDone(this, "save-file-done", ""),
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ewol/widget/meta/FileChooser.h>
|
#include <ewol/widget/meta/FileChooser.hpp>
|
||||||
#include <ewol/object/Worker.h>
|
#include <ewol/object/Worker.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class WorkerSaveFile : public ewol::object::Worker {
|
class WorkerSaveFile : public ewol::object::Worker {
|
@ -3,12 +3,12 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/Highlight.h>
|
#include <appl/Highlight.hpp>
|
||||||
#include <exml/exml.h>
|
#include <exml/exml.hpp>
|
||||||
#include <ewol/ewol.h>
|
#include <ewol/ewol.hpp>
|
||||||
#include <gale/resource/Manager.h>
|
#include <gale/resource/Manager.hpp>
|
||||||
|
|
||||||
// first pass
|
// first pass
|
||||||
//#define HL_DEBUG APPL_INFO
|
//#define HL_DEBUG APPL_INFO
|
||||||
|
@ -18,11 +18,11 @@ namespace appl {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <ememory/memory.h>
|
#include <ememory/memory.hpp>
|
||||||
#include <etk/os/FSNode.h>
|
#include <etk/os/FSNode.hpp>
|
||||||
#include <appl/HighlightPattern.h>
|
#include <appl/HighlightPattern.hpp>
|
||||||
#include <appl/GlyphPainting.h>
|
#include <appl/GlyphPainting.hpp>
|
||||||
#include <exml/exml.h>
|
#include <exml/exml.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class Highlight : public gale::Resource {
|
class Highlight : public gale::Resource {
|
@ -3,11 +3,11 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/HighlightManager.h>
|
#include <appl/HighlightManager.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/object/Manager.h>
|
#include <ewol/object/Manager.hpp>
|
||||||
|
|
||||||
|
|
||||||
// TODO : Review this in a generic unique resource ...
|
// TODO : Review this in a generic unique resource ...
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
#include <appl/Highlight.h>
|
#include <appl/Highlight.hpp>
|
||||||
#include <ewol/widget/Widget.h>
|
#include <ewol/widget/Widget.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
namespace highlightManager {
|
namespace highlightManager {
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/HighlightPattern.h>
|
#include <appl/HighlightPattern.hpp>
|
||||||
|
|
||||||
appl::HighlightPattern::HighlightPattern(const ememory::SharedPtr<appl::GlyphPainting>& _glyphPainting, const exml::Element& _child, int32_t _level) :
|
appl::HighlightPattern::HighlightPattern(const ememory::SharedPtr<appl::GlyphPainting>& _glyphPainting, const exml::Element& _child, int32_t _level) :
|
||||||
m_glyphPainting(_glyphPainting),
|
m_glyphPainting(_glyphPainting),
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/Highlight.h>
|
#include <appl/Highlight.hpp>
|
||||||
|
|
||||||
class HighlightPattern;
|
class HighlightPattern;
|
||||||
|
|
||||||
#include <appl/GlyphPainting.h>
|
#include <appl/GlyphPainting.hpp>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
#include <exml/exml.h>
|
#include <exml/exml.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class HighlightPattern {
|
class HighlightPattern {
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
#include <appl/TextPluginManager.h>
|
#include <appl/TextPluginManager.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
|
|
||||||
appl::TextViewerPlugin::TextViewerPlugin() :
|
appl::TextViewerPlugin::TextViewerPlugin() :
|
||||||
m_isEnable(true),
|
m_isEnable(true),
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <ewol/widget/Menu.h>
|
#include <ewol/widget/Menu.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class textPluginManager;
|
class textPluginManager;
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginAutoIndent.h>
|
#include <appl/TextPluginAutoIndent.hpp>
|
||||||
#include <gale/context/clipBoard.h>
|
#include <gale/context/clipBoard.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
|
|
||||||
appl::TextPluginAutoIndent::TextPluginAutoIndent() {
|
appl::TextPluginAutoIndent::TextPluginAutoIndent() {
|
||||||
m_activateOnEventEntry = true;
|
m_activateOnEventEntry = true;
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TextPluginAutoIndent : public appl::TextViewerPlugin {
|
class TextPluginAutoIndent : public appl::TextViewerPlugin {
|
@ -4,9 +4,9 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <appl/TextPluginCopy.h>
|
#include <appl/TextPluginCopy.hpp>
|
||||||
#include <gale/context/clipBoard.h>
|
#include <gale/context/clipBoard.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
|
|
||||||
appl::TextPluginCopy::TextPluginCopy() :
|
appl::TextPluginCopy::TextPluginCopy() :
|
||||||
m_menuIdTitle(-1),
|
m_menuIdTitle(-1),
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TextPluginCopy : public appl::TextViewerPlugin {
|
class TextPluginCopy : public appl::TextViewerPlugin {
|
@ -3,12 +3,12 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginCtags.h>
|
#include <appl/TextPluginCtags.hpp>
|
||||||
#include <gale/context/clipBoard.h>
|
#include <gale/context/clipBoard.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/widget/meta/FileChooser.h>
|
#include <ewol/widget/meta/FileChooser.hpp>
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <appl/Gui/TagFileSelection.h>
|
#include <appl/Gui/TagFileSelection.hpp>
|
||||||
|
|
||||||
appl::TextPluginCtags::TextPluginCtags() :
|
appl::TextPluginCtags::TextPluginCtags() :
|
||||||
m_tagFolderBase(""),
|
m_tagFolderBase(""),
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
#include <appl/ctags/readtags.h>
|
#include <appl/ctags/readtags.hpp>
|
||||||
|
|
||||||
// create ctags file : "ctags-exuberant --fields=n -R"
|
// create ctags file : "ctags-exuberant --fields=n -R"
|
||||||
// --fields=n add the line number needed for this software version ..
|
// --fields=n add the line number needed for this software version ..
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
template <typename TYPE> class TextViewerPluginData : public appl::TextViewerPlugin {
|
template <typename TYPE> class TextViewerPluginData : public appl::TextViewerPlugin {
|
@ -3,9 +3,9 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginHistory.h>
|
#include <appl/TextPluginHistory.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <appl/TextPluginManager.h>
|
#include <appl/TextPluginManager.hpp>
|
||||||
|
|
||||||
appl::TextPluginHistory::TextPluginHistory() :
|
appl::TextPluginHistory::TextPluginHistory() :
|
||||||
m_menuIdTitle(-1),
|
m_menuIdTitle(-1),
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPluginData.h>
|
#include <appl/TextPluginData.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class History {
|
class History {
|
@ -3,15 +3,15 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginManager.h>
|
#include <appl/TextPluginManager.hpp>
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/TextPluginCopy.h>
|
#include <appl/TextPluginCopy.hpp>
|
||||||
#include <appl/TextPluginMultiLineTab.h>
|
#include <appl/TextPluginMultiLineTab.hpp>
|
||||||
#include <appl/TextPluginAutoIndent.h>
|
#include <appl/TextPluginAutoIndent.hpp>
|
||||||
#include <appl/TextPluginHistory.h>
|
#include <appl/TextPluginHistory.hpp>
|
||||||
#include <appl/TextPluginRmLine.h>
|
#include <appl/TextPluginRmLine.hpp>
|
||||||
#include <appl/TextPluginSelectAll.h>
|
#include <appl/TextPluginSelectAll.hpp>
|
||||||
#include <appl/TextPluginCtags.h>
|
#include <appl/TextPluginCtags.hpp>
|
||||||
|
|
||||||
appl::textPluginManager::textPluginManager() {
|
appl::textPluginManager::textPluginManager() {
|
||||||
|
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class textPluginManager : public gale::Resource {
|
class textPluginManager : public gale::Resource {
|
@ -3,8 +3,8 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginMultiLineTab.h>
|
#include <appl/TextPluginMultiLineTab.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
|
|
||||||
appl::TextPluginMultiLineTab::TextPluginMultiLineTab() {
|
appl::TextPluginMultiLineTab::TextPluginMultiLineTab() {
|
||||||
m_activateOnEventEntry = true;
|
m_activateOnEventEntry = true;
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TextPluginMultiLineTab : public appl::TextViewerPlugin {
|
class TextPluginMultiLineTab : public appl::TextViewerPlugin {
|
@ -3,8 +3,8 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginRmLine.h>
|
#include <appl/TextPluginRmLine.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
|
|
||||||
appl::TextPluginRmLine::TextPluginRmLine() {
|
appl::TextPluginRmLine::TextPluginRmLine() {
|
||||||
m_activateOnReceiveShortCut = true;
|
m_activateOnReceiveShortCut = true;
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TextPluginRmLine : public appl::TextViewerPlugin {
|
class TextPluginRmLine : public appl::TextViewerPlugin {
|
@ -3,8 +3,8 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/TextPluginSelectAll.h>
|
#include <appl/TextPluginSelectAll.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
|
|
||||||
appl::TextPluginSelectAll::TextPluginSelectAll() :
|
appl::TextPluginSelectAll::TextPluginSelectAll() :
|
||||||
m_menuIdTitle(-1),
|
m_menuIdTitle(-1),
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <appl/Gui/TextViewer.h>
|
#include <appl/Gui/TextViewer.hpp>
|
||||||
#include <ewol/compositing/Text.h>
|
#include <ewol/compositing/Text.hpp>
|
||||||
#include <appl/TextPlugin.h>
|
#include <appl/TextPlugin.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
class TextPluginSelectAll : public appl::TextViewerPlugin {
|
class TextPluginSelectAll : public appl::TextViewerPlugin {
|
@ -18,7 +18,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <sys/types.h> /* to declare off_t */
|
#include <sys/types.h> /* to declare off_t */
|
||||||
|
|
||||||
#include <appl/ctags/readtags.h>
|
#include <appl/ctags/readtags.hpp>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MACROS
|
* MACROS
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
|
|
||||||
int32_t appl::getLogId() {
|
int32_t appl::getLogId() {
|
||||||
static int32_t g_val = elog::registerInstance("edn");
|
static int32_t g_val = elog::registerInstance("edn");
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <elog/log.h>
|
#include <elog/log.hpp>
|
||||||
|
|
||||||
namespace appl {
|
namespace appl {
|
||||||
int32_t getLogId();
|
int32_t getLogId();
|
@ -3,12 +3,12 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <gale/resource/Manager.h>
|
#include <gale/resource/Manager.hpp>
|
||||||
#include <etk/os/FSNode.h>
|
#include <etk/os/FSNode.hpp>
|
||||||
|
|
||||||
class myParamGlobal : public ewol::Object {
|
class myParamGlobal : public ewol::Object {
|
||||||
public:
|
public:
|
||||||
@ -95,8 +95,8 @@ int32_t globals::getNbLineBorder() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#include <ewol/widget/CheckBox.h>
|
#include <ewol/widget/CheckBox.hpp>
|
||||||
#include <ewol/widget/Spacer.h>
|
#include <ewol/widget/Spacer.hpp>
|
||||||
|
|
||||||
globals::ParameterGlobalsGui::ParameterGlobalsGui() {
|
globals::ParameterGlobalsGui::ParameterGlobalsGui() {
|
||||||
addObjectType("globals::ParameterGlobalsGui");
|
addObjectType("globals::ParameterGlobalsGui");
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <ewol/widget/Sizer.h>
|
#include <ewol/widget/Sizer.hpp>
|
||||||
|
|
||||||
namespace globals {
|
namespace globals {
|
||||||
void init();
|
void init();
|
@ -3,27 +3,27 @@
|
|||||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <ewol/ewol.h>
|
#include <ewol/ewol.hpp>
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/widget/Manager.h>
|
#include <ewol/widget/Manager.hpp>
|
||||||
|
|
||||||
#include <appl/debug.h>
|
#include <appl/debug.hpp>
|
||||||
#include <appl/global.h>
|
#include <appl/global.hpp>
|
||||||
#include <etk/os/FSNode.h>
|
#include <etk/os/FSNode.hpp>
|
||||||
#include <etk/tool.h>
|
#include <etk/tool.hpp>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
//#include <ewol/config.h>
|
//#include <ewol/config.hpp>
|
||||||
#include <gale/context/commandLine.h>
|
#include <gale/context/commandLine.hpp>
|
||||||
//#include <ewol/UserConfig.h>
|
//#include <ewol/UserConfig.hpp>
|
||||||
#include <ewol/context/Context.h>
|
#include <ewol/context/Context.hpp>
|
||||||
#include <appl/TextPluginManager.h>
|
#include <appl/TextPluginManager.hpp>
|
||||||
#include <appl/BufferManager.h>
|
#include <appl/BufferManager.hpp>
|
||||||
#include <appl/HighlightManager.h>
|
#include <appl/HighlightManager.hpp>
|
||||||
#include <appl/Gui/MainWindows.h>
|
#include <appl/Gui/MainWindows.hpp>
|
||||||
#include <appl/Gui/Search.h>
|
#include <appl/Gui/Search.hpp>
|
||||||
#include <appl/ctags/readtags.h>
|
#include <appl/ctags/readtags.hpp>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.hpp>
|
||||||
|
|
||||||
class MainApplication : public ewol::context::Application {
|
class MainApplication : public ewol::context::Application {
|
||||||
private:
|
private:
|
||||||
|
22
test/cpp.cpp
22
test/cpp.cpp
@ -6,8 +6,8 @@
|
|||||||
#ifndef __EWOL_WIDGET_H__
|
#ifndef __EWOL_WIDGET_H__
|
||||||
#define __EWOL_WIDGET_H__
|
#define __EWOL_WIDGET_H__
|
||||||
|
|
||||||
#include <ewol/object/Object.h>
|
#include <ewol/object/Object.hpp>
|
||||||
#include <ewol/Dimension.h>
|
#include <ewol/Dimension.hpp>
|
||||||
'dfgd\'fg'
|
'dfgd\'fg'
|
||||||
'e' sdfsdf '\e'
|
'e' sdfsdf '\e'
|
||||||
|
|
||||||
@ -35,16 +35,16 @@ namespace ewol {
|
|||||||
class Windows;
|
class Windows;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
#include <etk/types.h>
|
#include <etk/types.hpp>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <etk/math/Vector2D.h>
|
#include <etk/math/Vector2D.hpp>
|
||||||
#include <ewol/debug.h>
|
#include <ewol/debug.hpp>
|
||||||
#include <ewol/context/clipBoard.h>
|
#include <ewol/context/clipBoard.hpp>
|
||||||
#include <ewol/key/key.h>
|
#include <ewol/key/key.hpp>
|
||||||
#include <ewol/context/cursor.h>
|
#include <ewol/context/cursor.hpp>
|
||||||
#include <ewol/event/Input.h>
|
#include <ewol/event/Input.hpp>
|
||||||
#include <ewol/event/Entry.h>
|
#include <ewol/event/Entry.hpp>
|
||||||
#include <ewol/event/Time.h>
|
#include <ewol/event/Time.hpp>
|
||||||
|
|
||||||
#define ULTIMATE_MAX_SIZE (99999999)
|
#define ULTIMATE_MAX_SIZE (99999999)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user