mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Добавлен элемент для редактирования RegExp выражений с подсветкой. По цвету сделан похожим на regex101.com. Для разбора выражений использовалась грамматика https://github.com/bkiers/pcre-parser/blob/master/src/main/antlr4/nl/bigo/pcreparser/PCREParser.g4
30 lines
732 B
C++
30 lines
732 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// xh_styledtext.h - wxStyledText handler
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef _WX_XH_STYLEDTEXT_H_
|
|
#define _WX_XH_STYLEDTEXT_H_
|
|
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
//class WXDLLIMPEXP_XRC
|
|
class ctlStyledTextXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(ctlStyledTextXmlHandler)
|
|
public:
|
|
ctlStyledTextXmlHandler();
|
|
virtual wxObject *DoCreateResource();
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
};
|
|
|
|
|
|
#endif // _WX_XH_STYLEDTEXT_H_
|