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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : databaseexplorer.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 "databaseexplorer.h"
#include "ErdPanel.h"
#include "SqlCommandPanel.h"
#include "clKeyboardManager.h"
#include "detachedpanesinfo.h"
#include "dockablepane.h"
#include "event_notifier.h"
#include "globals.h"
#include "imanager.h"
#include <wx/aboutdlg.h>
#include <wx/wxsf/AutoLayout.h>
#include <wx/xrc/xmlres.h>
//#ifdef DBL_USE_MYSQL
#include "MySqlDbAdapter.h"
//#endif
//#ifdef DBL_USE_SQLITE
#include "SqliteDbAdapter.h"
//#endif
//#ifdef DBL_USE_POSTGRES
#include "PostgreSqlDbAdapter.h"
//#endif
#define DBE_VERSION "0.5.3 Beta"
static DatabaseExplorer* thePlugin = NULL;
DbViewerPanel* DatabaseExplorer::m_dbViewerPanel = NULL;
IManager* DatabaseExplorer::GetManager() { return thePlugin->m_mgr; }
enum wxbuildinfoformat { short_f, long_f };
wxString wxbuildinfo(wxbuildinfoformat format)
{
wxString wxbuild(wxVERSION_STRING);
if(format == long_f) {
#if defined(__WXMSW__)
wxbuild << _T("-Windows");
#elif defined(__WXMAC__)
wxbuild << _T("-Mac");
#elif defined(__UNIX__)
wxbuild << _T("-Linux");
#endif
#if wxUSE_UNICODE
wxbuild << _T("-Unicode build");
#else
wxbuild << _T("-ANSI build");
#endif // wxUSE_UNICODE
}
return wxbuild;
}
// Define the plugin entry point
CL_PLUGIN_API IPlugin* CreatePlugin(IManager* manager)
{
if(thePlugin == 0) {
thePlugin = new DatabaseExplorer(manager);
}
return thePlugin;
}
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
static PluginInfo info;
info.SetAuthor("Peter Janků, Michal Bližňák, Tomas Bata University in Zlin, Czech Republic (www.fai.utb.cz)");
info.SetName("DatabaseExplorer");
info.SetDescription(_("DatabaseExplorer for CodeLite"));
info.SetVersion(DBE_VERSION);
return &info;
}
CL_PLUGIN_API int GetPluginInterfaceVersion() { return PLUGIN_INTERFACE_VERSION; }
DatabaseExplorer::DatabaseExplorer(IManager* manager)
: IPlugin(manager)
{
// create tab (possibly detached)
Notebook* book = m_mgr->GetWorkspacePaneNotebook();
wxWindow* editorBook = m_mgr->GetEditorPaneNotebook();
EventNotifier::Get()->Connect(wxEVT_TREE_ITEM_FILE_ACTIVATED,
clCommandEventHandler(DatabaseExplorer::OnOpenWithDBE), NULL, this);
EventNotifier::Get()->Bind(wxEVT_SHOW_WORKSPACE_TAB, &DatabaseExplorer::OnToggleTab, this);
if(IsDbViewDetached()) {
DockablePane* cp = new DockablePane(book->GetParent()->GetParent(), book, _("DbExplorer"), false, wxNOT_FOUND,
wxSize(200, 200));
m_dbViewerPanel = new DbViewerPanel(cp, editorBook, m_mgr);
cp->SetChildNoReparent(m_dbViewerPanel);
} else {
m_dbViewerPanel = new DbViewerPanel(book, editorBook, m_mgr);
book->AddPage(m_dbViewerPanel, _("DbExplorer"), false);
}
m_mgr->AddWorkspaceTab(_("DbExplorer"));
// configure autolayout algorithns
wxSFAutoLayout layout;
wxSFLayoutHorizontalTree* pHTreeAlg =
wxDynamicCast(layout.GetAlgorithm("Horizontal Tree"), wxSFLayoutHorizontalTree);
if(pHTreeAlg) {
pHTreeAlg->SetHSpace(200);
}
wxSFLayoutVerticalTree* pVTreeAlg = wxDynamicCast(layout.GetAlgorithm("Vertical Tree"), wxSFLayoutVerticalTree);
if(pVTreeAlg) {
pVTreeAlg->SetVSpace(75);
}
m_longName = _("DatabaseExplorer for CodeLite");
m_shortName = "DatabaseExplorer";
clKeyboardManager::Get()->AddAccelerator("wxEVT_EXECUTE_SQL", _("Database Explorer"), _("Execute SQL"), "Ctrl-J");
wxTheApp->Bind(wxEVT_MENU, &DatabaseExplorer::OnExecuteSQL, this, XRCID("wxEVT_EXECUTE_SQL"));
}
DatabaseExplorer::~DatabaseExplorer() { wxSFAutoLayout::CleanUp(); }
void DatabaseExplorer::CreateToolBar(clToolBarGeneric* toolbar) { wxUnusedVar(toolbar); }
void DatabaseExplorer::CreatePluginMenu(wxMenu* pluginsMenu)
{
// You can use the below code a snippet:
wxMenu* menu = new wxMenu();
wxMenuItem* item(NULL);
item = new wxMenuItem(menu, XRCID("dbe_about"), _("About..."), wxEmptyString, wxITEM_NORMAL);
menu->Append(item);
item = new wxMenuItem(menu, XRCID("wxEVT_EXECUTE_SQL"), _("Execute SQL"), wxEmptyString, wxITEM_NORMAL);
menu->Append(item);
pluginsMenu->Append(wxID_ANY, _("Database Explorer"), menu);
m_mgr->GetTheApp()->Connect(XRCID("dbe_about"), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(DatabaseExplorer::OnAbout), NULL, this);
}
void DatabaseExplorer::HookPopupMenu(wxMenu* menu, MenuType type)
{
wxUnusedVar(menu);
wxUnusedVar(type);
}
void DatabaseExplorer::OnExecuteSQL(wxCommandEvent& event)
{
wxUnusedVar(event);
// Pass the command to the active frame
}
void DatabaseExplorer::UnPlug()
{
EventNotifier::Get()->Disconnect(wxEVT_TREE_ITEM_FILE_ACTIVATED,
clCommandEventHandler(DatabaseExplorer::OnOpenWithDBE), NULL, this);
EventNotifier::Get()->Unbind(wxEVT_SHOW_WORKSPACE_TAB, &DatabaseExplorer::OnToggleTab, this);
int index = m_mgr->GetWorkspacePaneNotebook()->GetPageIndex(m_dbViewerPanel);
if(index != wxNOT_FOUND) {
m_mgr->GetWorkspacePaneNotebook()->RemovePage(index);
}
wxTheApp->Unbind(wxEVT_MENU, &DatabaseExplorer::OnExecuteSQL, this, XRCID("wxEVT_EXECUTE_SQL"));
wxDELETE(m_dbViewerPanel);
}
bool DatabaseExplorer::IsDbViewDetached()
{
wxASSERT(m_mgr);
IConfigTool* configTool = m_mgr->GetConfigTool();
wxASSERT(configTool);
DetachedPanesInfo dpi;
configTool->ReadObject("DetachedPanesList", &dpi);
const wxArrayString& detachedPanes = dpi.GetPanes();
return detachedPanes.Index(_("DbExplorer")) != wxNOT_FOUND;
}
void DatabaseExplorer::OnAbout(wxCommandEvent& e)
{
wxString version = wxString::Format(DBE_VERSION);
wxString desc = _("Cross platform database explorer\n\n");
desc << wxbuildinfo(long_f) << "\n\n";
wxAboutDialogInfo info;
info.SetName(_("DatabaseExplorer"));
info.SetVersion(version);
info.SetDescription(desc);
info.SetCopyright(_("2011 - 2015 (C) Tomas Bata University, Zlin, Czech Republic"));
info.SetWebSite(_("http://www.fai.utb.cz"));
info.AddDeveloper("Peter Janků");
info.AddDeveloper("Michal Bližňák");
wxAboutBox(info);
}
void DatabaseExplorer::OnOpenWithDBE(clCommandEvent& e)
{
// get the file name
e.Skip();
if(FileExtManager::IsFileType(e.GetFileName(), FileExtManager::TypeDatabase)) {
e.Skip(false);
// Open the databse file
DoOpenFile(e.GetFileName());
}
}
void DatabaseExplorer::DoOpenFile(const wxFileName& filename)
{
if(m_dbViewerPanel) {
m_dbViewerPanel->OpenSQLiteFile(filename, true);
}
}
void DatabaseExplorer::OnToggleTab(clCommandEvent& event)
{
if(event.GetString() != _("DbExplorer")) {
event.Skip();
return;
}
if(event.IsSelected()) {
// show it
clGetManager()->GetWorkspacePaneNotebook()->AddPage(m_dbViewerPanel, _("DbExplorer"), true);
} else {
int where = m_mgr->GetWorkspacePaneNotebook()->GetPageIndex(_("DbExplorer"));
if(where != wxNOT_FOUND) {
clGetManager()->GetWorkspacePaneNotebook()->RemovePage(where);
}
}
}
|