1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : editorsettingscommentsdoxygenpanel.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "editorsettingscommentsdoxygenpanel.h"
#include "commentconfigdata.h"
EditorSettingsCommentsDoxygenPanel::EditorSettingsCommentsDoxygenPanel( wxWindow* parent )
: EditorSettingsCommentsDoxygenPanelBase( parent )
, TreeBookNode<EditorSettingsCommentsDoxygenPanel>()
{
CommentConfigData data;
EditorConfigST::Get()->ReadObject(wxT("CommentConfigData"), &data);
m_textCtrlClassPattern->SetValue( data.GetClassPattern() );
m_textCtrlFunctionPattern->SetValue( data.GetFunctionPattern() );
m_checkBoxUseShtroodel->SetValue( data.GetUseShtroodel() );
m_checkBoxUseSlash2Stars->SetValue( data.GetUseSlash2Stars() );
DoSetPrefix();
}
void EditorSettingsCommentsDoxygenPanel::Save(OptionsConfigPtr)
{
CommentConfigData data;
EditorConfigST::Get()->ReadObject(wxT("CommentConfigData"), &data);
data.SetClassPattern( m_textCtrlClassPattern->GetValue() );
data.SetFunctionPattern( m_textCtrlFunctionPattern->GetValue());
data.SetUseShtroodel(m_checkBoxUseShtroodel->IsChecked());
data.SetUseSlash2Stars(m_checkBoxUseSlash2Stars->IsChecked());
EditorConfigST::Get()->WriteObject(wxT("CommentConfigData"), &data);
}
void EditorSettingsCommentsDoxygenPanel::DoSetPrefix()
{
bool useShtroodel = m_checkBoxUseShtroodel->IsChecked();
wxString classPrefix = m_textCtrlClassPattern->GetValue();
wxString funcPrefix = m_textCtrlFunctionPattern->GetValue();
if( useShtroodel ){
classPrefix.Replace(wxT("\\"), wxT("@"));
funcPrefix.Replace(wxT("\\"), wxT("@"));
} else {
classPrefix.Replace(wxT("@"), wxT("\\"));
funcPrefix.Replace(wxT("@"), wxT("\\"));
}
m_textCtrlClassPattern->SetValue(classPrefix);
m_textCtrlFunctionPattern->SetValue(funcPrefix);
}
void EditorSettingsCommentsDoxygenPanel::OnUseAtPrefix(wxCommandEvent& event)
{
DoSetPrefix();
}
|