summaryrefslogtreecommitdiff
path: root/LiteEditor/tagsparsersearchpathsbasedlg.cpp
diff options
context:
space:
mode:
authorAlessio Treglia <quadrispro@ubuntu.com>2010-05-02 01:23:55 +0200
committerAlessio Treglia <quadrispro@ubuntu.com>2010-05-02 01:23:55 +0200
commitcb40adc8ca28f1f951fa1ef458015e3174a8eb1b (patch)
tree78c3e41484641f6965c72dfd543dca3b13d4d234 /LiteEditor/tagsparsersearchpathsbasedlg.cpp
parent75096346270d50c7b541003e8bd836eb9da82d2e (diff)
Merge with upstream-new.
Diffstat (limited to 'LiteEditor/tagsparsersearchpathsbasedlg.cpp')
-rw-r--r--LiteEditor/tagsparsersearchpathsbasedlg.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/LiteEditor/tagsparsersearchpathsbasedlg.cpp b/LiteEditor/tagsparsersearchpathsbasedlg.cpp
new file mode 100644
index 00000000..e33b91fa
--- /dev/null
+++ b/LiteEditor/tagsparsersearchpathsbasedlg.cpp
@@ -0,0 +1,60 @@
+///////////////////////////////////////////////////////////////////////////
+// C++ code generated with wxFormBuilder (version Aug 25 2009)
+// http://www.wxformbuilder.org/
+//
+// PLEASE DO "NOT" EDIT THIS FILE!
+///////////////////////////////////////////////////////////////////////////
+
+#include "tagsparsersearchpathsbasedlg.h"
+
+///////////////////////////////////////////////////////////////////////////
+
+TagsParserSearchPathsBaseDlg::TagsParserSearchPathsBaseDlg( 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* mainSizer;
+ mainSizer = new wxBoxSizer( wxVERTICAL );
+
+ wxStaticBoxSizer* sbSizer1;
+ sbSizer1 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, wxEmptyString ), wxVERTICAL );
+
+ m_staticText2 = new wxStaticText( this, wxID_ANY, _("The following include paths were detected on your system and will be added to your parser search path.\nYou may remove a path by unchecking it.\n\nYou can always add/remove paths to the parser from the main menu:\nSettings > Tags Settings > Parser"), wxDefaultPosition, wxDefaultSize, 0 );
+ m_staticText2->Wrap( -1 );
+ sbSizer1->Add( m_staticText2, 0, wxALL|wxEXPAND, 5 );
+
+ mainSizer->Add( sbSizer1, 0, wxEXPAND|wxALL, 5 );
+
+ wxArrayString m_checkListPathsChoices;
+ m_checkListPaths = new wxCheckListBox( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_checkListPathsChoices, 0 );
+ mainSizer->Add( m_checkListPaths, 1, wxALL|wxEXPAND, 5 );
+
+ wxArrayString m_checkListExcludePathsChoices;
+ m_checkListExcludePaths = new wxCheckListBox( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_checkListExcludePathsChoices, 0 );
+ mainSizer->Add( m_checkListExcludePaths, 1, wxALL|wxEXPAND, 5 );
+
+ m_staticline1 = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
+ mainSizer->Add( m_staticline1, 0, wxEXPAND | wxALL, 5 );
+
+ wxBoxSizer* buttonSizer;
+ buttonSizer = new wxBoxSizer( wxHORIZONTAL );
+
+ m_buttonOk = new wxButton( this, wxID_OK, _("&Ok"), wxDefaultPosition, wxDefaultSize, 0 );
+ m_buttonOk->SetDefault();
+ buttonSizer->Add( m_buttonOk, 0, wxALL, 5 );
+
+ m_buttonCancel = new wxButton( this, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
+ buttonSizer->Add( m_buttonCancel, 0, wxALL, 5 );
+
+ mainSizer->Add( buttonSizer, 0, wxALIGN_CENTER_HORIZONTAL, 5 );
+
+ this->SetSizer( mainSizer );
+ this->Layout();
+ mainSizer->Fit( this );
+
+ this->Centre( wxBOTH );
+}
+
+TagsParserSearchPathsBaseDlg::~TagsParserSearchPathsBaseDlg()
+{
+}