summaryrefslogtreecommitdiff
path: root/LiteEditor/envvar_dlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'LiteEditor/envvar_dlg.cpp')
-rw-r--r--LiteEditor/envvar_dlg.cpp151
1 files changed, 0 insertions, 151 deletions
diff --git a/LiteEditor/envvar_dlg.cpp b/LiteEditor/envvar_dlg.cpp
deleted file mode 100644
index 6e71d377..00000000
--- a/LiteEditor/envvar_dlg.cpp
+++ /dev/null
@@ -1,151 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////////
-//
-// copyright : (C) 2008 by Eran Ifrah
-// file name : envvar_dlg.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.
-//
-//////////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////////
-
-///////////////////////////////////////////////////////////////////////////
-// C++ code generated with wxFormBuilder (version Mar 19 2008)
-// http://www.wxformbuilder.org/
-//
-// PLEASE DO "NOT" EDIT THIS FILE!
-///////////////////////////////////////////////////////////////////////////
-
-#ifdef WX_PRECOMP
-
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-#pragma hdrstop
-#endif //__BORLANDC__
-
-#else
-#include <wx/wx.h>
-#endif //WX_PRECOMP
-
-#include "envvar_dlg.h"
-
-///////////////////////////////////////////////////////////////////////////
-
-EnvVarDlg::EnvVarDlg( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
-{
- this->SetSizeHints( wxDefaultSize, wxDefaultSize );
-
- wxBoxSizer* bSizer4;
- bSizer4 = new wxBoxSizer( wxVERTICAL );
-
- m_panel1 = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
- wxFlexGridSizer* fgSizer2;
- fgSizer2 = new wxFlexGridSizer( 2, 2, 0, 0 );
- fgSizer2->AddGrowableCol( 1 );
- fgSizer2->SetFlexibleDirection( wxBOTH );
- fgSizer2->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
-
- m_staticText1 = new wxStaticText( m_panel1, wxID_ANY, wxT("Variable Name:"), wxDefaultPosition, wxDefaultSize, 0 );
- m_staticText1->Wrap( -1 );
- fgSizer2->Add( m_staticText1, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
-
- m_textName = new wxTextCtrl( m_panel1, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
- m_textName->SetMinSize( wxSize( 300,-1 ) );
-
- fgSizer2->Add( m_textName, 1, wxALL|wxEXPAND, 5 );
-
- m_staticText2 = new wxStaticText( m_panel1, wxID_ANY, wxT("Variable Value:"), wxDefaultPosition, wxDefaultSize, 0 );
- m_staticText2->Wrap( -1 );
- fgSizer2->Add( m_staticText2, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
-
- m_textValue = new wxTextCtrl( m_panel1, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
- fgSizer2->Add( m_textValue, 1, wxALL|wxEXPAND, 5 );
-
- m_panel1->SetSizer( fgSizer2 );
- m_panel1->Layout();
- fgSizer2->Fit( m_panel1 );
- bSizer4->Add( m_panel1, 0, wxEXPAND | wxALL, 5 );
-
- m_staticline3 = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
- bSizer4->Add( m_staticline3, 0, wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 5 );
-
- wxBoxSizer* bSizer11;
- bSizer11 = new wxBoxSizer( wxHORIZONTAL );
-
- m_buttonOK = new wxButton( this, wxID_OK, wxT("&OK"), wxDefaultPosition, wxDefaultSize, 0 );
- m_buttonOK->SetDefault();
- bSizer11->Add( m_buttonOK, 0, wxALL, 5 );
-
- m_buttonCacnel = new wxButton( this, wxID_CANCEL, wxT("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
- bSizer11->Add( m_buttonCacnel, 0, wxALL, 5 );
-
- bSizer4->Add( bSizer11, 0, wxALIGN_CENTER_HORIZONTAL, 5 );
-
- this->SetSizer( bSizer4 );
- this->Layout();
- bSizer4->Fit( this );
- m_textName->SetFocus();
- this->Centre( wxBOTH );
-}
-
-EnvVarDlg::~EnvVarDlg()
-{
-}
-
-void EnvVarDlg::SetStaticText1(const wxString& txt)
-{
- m_staticText1->SetLabel(txt);
-}
-
-void EnvVarDlg::SetStaticText2(const wxString& txt)
-{
- m_staticText2->SetLabel(txt);
-}
-
-wxString EnvVarDlg::GetName() const
-{
- return m_textName->GetValue();
-}
-
-wxString EnvVarDlg::GetValue() const
-{
- return m_textValue->GetValue();
-}
-
-void EnvVarDlg::SetName(const wxString& name)
-{
- m_textName->SetValue(name);
-}
-
-void EnvVarDlg::SetValue(const wxString& name)
-{
- m_textValue->SetValue(name);
-}
-
-void EnvVarDlg::DisableName()
-{
- m_textValue->SetFocus();
- m_textName->Enable(false);
-}
-
-void EnvVarDlg::DisableValue()
-{
- m_textName->SetFocus();
- m_textValue->Enable(false);
-}
-