2009-11-06 18:06:12 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2005-2007 Gerald Schmidt.
|
|
|
|
*
|
|
|
|
* This file is part of Xml Copy Editor.
|
|
|
|
*
|
2014-06-09 16:19:51 +02:00
|
|
|
* Xml Copy Editor is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2009-11-06 18:06:12 +01:00
|
|
|
*
|
|
|
|
* Xml Copy Editor is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Xml Copy Editor; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "locationpanel.h"
|
|
|
|
#include "xmldoc.h"
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE ( LocationPanel, wxPanel )
|
2014-05-21 15:35:24 +02:00
|
|
|
EVT_SYS_COLOUR_CHANGED ( LocationPanel::OnSysColourChanged )
|
2009-11-06 18:06:12 +01:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
LocationPanel::LocationPanel ( wxWindow *parentWindowParameter, int id ) :
|
|
|
|
wxPanel ( parentWindowParameter, id )
|
|
|
|
{
|
|
|
|
parentWindow = ( MyFrame * ) parentWindowParameter;
|
|
|
|
|
|
|
|
int width = 150;
|
|
|
|
SetSize ( wxSize ( width, -1 ) );
|
|
|
|
|
|
|
|
sizer = new wxBoxSizer ( wxVERTICAL );
|
|
|
|
SetSizer ( sizer );
|
|
|
|
|
|
|
|
edit = new wxTextCtrl (
|
|
|
|
this,
|
|
|
|
wxID_ANY,
|
|
|
|
wxEmptyString,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
|
|
|
wxTE_READONLY );
|
|
|
|
|
|
|
|
wxFont normalFont = wxSystemSettings::GetFont ( wxSYS_DEFAULT_GUI_FONT );
|
|
|
|
wxFont boldFont = normalFont;
|
|
|
|
boldFont.SetWeight ( wxFONTWEIGHT_BOLD );
|
|
|
|
edit->SetFont ( boldFont );
|
|
|
|
|
|
|
|
structureEdit = new wxStyledTextCtrl (
|
|
|
|
this,
|
|
|
|
wxID_ANY,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxDefaultSize);
|
|
|
|
for (int i = 0 ; i < 3; i++ )
|
|
|
|
structureEdit->SetMarginWidth ( i, 0 );
|
|
|
|
structureEdit->SetReadOnly ( true );
|
|
|
|
//structureEdit->SetWrapMode ( wxSTC_WRAP_WORD );
|
|
|
|
//structureEdit->SetWrapVisualFlags ( wxSTC_WRAPVISUALFLAG_START );
|
|
|
|
structureEdit->SetTabWidth ( 2 );
|
|
|
|
structureEdit->SetIndentationGuides ( true );
|
2014-05-21 15:35:24 +02:00
|
|
|
structureEdit->SetLexer ( wxSTC_LEX_NULL );
|
|
|
|
|
|
|
|
wxSysColourChangedEvent event;
|
|
|
|
OnSysColourChanged ( event );
|
2009-11-06 18:06:12 +01:00
|
|
|
|
|
|
|
sizer->Add ( edit, 0, wxGROW | wxTOP, 0 );
|
2013-10-11 14:57:14 +02:00
|
|
|
sizer->Add ( structureEdit, 1, wxGROW | wxTOP, 0 );
|
2009-11-06 18:06:12 +01:00
|
|
|
sizer->Layout();
|
|
|
|
structureEdit->Show ( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocationPanel::update (
|
2013-11-12 17:30:07 +01:00
|
|
|
XmlDoc *doc,
|
2009-11-06 18:06:12 +01:00
|
|
|
const wxString& parentParameter )
|
|
|
|
{
|
|
|
|
parent = parentParameter;
|
|
|
|
wxString previous = edit->GetValue();
|
|
|
|
|
|
|
|
if ( !doc )
|
|
|
|
{
|
|
|
|
edit->SetValue ( wxEmptyString );
|
|
|
|
structureEdit->Show ( false );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-10 15:34:13 +02:00
|
|
|
wxString structure = doc->getElementStructure ( parent );
|
2009-11-06 18:06:12 +01:00
|
|
|
|
|
|
|
if (!structure.empty () )
|
|
|
|
{
|
|
|
|
indentStructure( structure );
|
|
|
|
structureEdit->Show ( true );
|
|
|
|
structureEdit->SetReadOnly ( false );
|
2012-08-10 15:34:13 +02:00
|
|
|
structureEdit->SetText ( structure );
|
2009-11-06 18:06:12 +01:00
|
|
|
structureEdit->SetReadOnly ( true );
|
2013-10-11 14:57:14 +02:00
|
|
|
sizer->Layout();
|
2009-11-06 18:06:12 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
structureEdit->Show ( false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( parentParameter == previous )
|
|
|
|
return;
|
|
|
|
previous = parentParameter;
|
|
|
|
edit->SetValue ( parent );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-08-10 15:34:13 +02:00
|
|
|
void LocationPanel::indentStructure ( wxString& structure )
|
2009-11-06 18:06:12 +01:00
|
|
|
{
|
2012-08-10 15:34:13 +02:00
|
|
|
wxString indented;
|
|
|
|
wxString::const_iterator s = structure.begin();
|
2009-11-06 18:06:12 +01:00
|
|
|
int indent = 0;
|
2012-08-10 15:34:13 +02:00
|
|
|
const static wxString indentMark ( _T("\t") );
|
2009-11-06 18:06:12 +01:00
|
|
|
|
|
|
|
int count = 0;
|
|
|
|
bool justSeenContent = false;
|
2014-03-19 13:21:14 +01:00
|
|
|
for ( ; *s; ++s, count++)
|
2009-11-06 18:06:12 +01:00
|
|
|
{
|
|
|
|
if (*s == '(')
|
|
|
|
{
|
|
|
|
if ( count && justSeenContent )
|
|
|
|
{
|
|
|
|
indented += '\n';
|
|
|
|
}
|
|
|
|
else if (!justSeenContent)
|
|
|
|
indented += *s;
|
|
|
|
for ( int i = 0; i < indent; i++ )
|
|
|
|
{
|
2012-08-10 15:34:13 +02:00
|
|
|
indented += indentMark;
|
2009-11-06 18:06:12 +01:00
|
|
|
}
|
|
|
|
if (justSeenContent)
|
|
|
|
indented += *s;
|
|
|
|
|
|
|
|
indent++;
|
|
|
|
|
|
|
|
indented += '\n';
|
|
|
|
|
|
|
|
for (int i = 0; indent && i < indent; i++)
|
2012-08-10 15:34:13 +02:00
|
|
|
indented += indentMark;
|
2009-11-06 18:06:12 +01:00
|
|
|
justSeenContent = false;
|
|
|
|
}
|
|
|
|
else if (*s == ')')
|
|
|
|
{
|
|
|
|
if ( justSeenContent )
|
|
|
|
{
|
|
|
|
indented += '\n';
|
|
|
|
}
|
|
|
|
indent--;
|
|
|
|
for (int i = 0; indent && i < indent; i++)
|
2012-08-10 15:34:13 +02:00
|
|
|
indented += indentMark;
|
2009-11-06 18:06:12 +01:00
|
|
|
indented += *s;
|
|
|
|
indented += '\n';
|
|
|
|
if (*( s + 1 ) && *(s + 1) != ')' )
|
|
|
|
{
|
|
|
|
for (int i = 0; i < indent; i++)
|
2012-08-10 15:34:13 +02:00
|
|
|
indented += indentMark;
|
2009-11-06 18:06:12 +01:00
|
|
|
}
|
|
|
|
justSeenContent = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( *s == '|' && justSeenContent)
|
|
|
|
indented += ' ';
|
|
|
|
indented += *s;
|
|
|
|
if ( *s == ',' || *s == '|' )
|
|
|
|
indented += ' ';
|
|
|
|
justSeenContent = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
structure = indented;
|
|
|
|
}
|
2014-05-21 15:35:24 +02:00
|
|
|
|
|
|
|
void LocationPanel::OnSysColourChanged ( wxSysColourChangedEvent &WXUNUSED ( event ) )
|
|
|
|
{
|
|
|
|
wxColor clrWnd = wxSystemSettings::GetColour ( wxSYS_COLOUR_WINDOW );
|
|
|
|
wxColor clrText = wxSystemSettings::GetColour ( wxSYS_COLOUR_WINDOWTEXT );
|
|
|
|
structureEdit->StyleSetForeground ( wxSTC_STYLE_DEFAULT, clrText );
|
|
|
|
structureEdit->StyleSetBackground ( wxSTC_STYLE_DEFAULT, clrWnd );
|
|
|
|
structureEdit->StyleClearAll();
|
|
|
|
}
|