summaryrefslogtreecommitdiff
path: root/LiteEditor/navbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'LiteEditor/navbar.h')
-rw-r--r--LiteEditor/navbar.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/LiteEditor/navbar.h b/LiteEditor/navbar.h
deleted file mode 100644
index 0a10f219..00000000
--- a/LiteEditor/navbar.h
+++ /dev/null
@@ -1,54 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////////
-//
-// copyright : (C) 2008 by Eran Ifrah
-// file name : navbar.h
-//
-// -------------------------------------------------------------------------
-// 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.
-//
-//////////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////////
-#ifndef __navbar__
-#define __navbar__
-
-#include <vector>
-#include "navbarbase.h"
-#include <wx/choice.h>
-#include "entry.h"
-
-class LEditor;
-
-class NavBar : public NavBarBase
-{
-private:
- std::vector<TagEntryPtr> m_tags;
-
- void OnFuncListMouseDown (wxMouseEvent &e);
- void OnScopeListMouseDown(wxMouseEvent &e);
- void OnScope (wxCommandEvent &e);
- void OnFunction (wxCommandEvent &e);
-
-public:
- NavBar(wxWindow *parent);
- virtual ~NavBar();
-
- void DoShow(bool s = true);
-
- void UpdateScope(TagEntryPtr tag);
-};
-
-#endif // __navbar__