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
|
/*---------------------------------------------------------------------------*/
/* Logiciel de gestion de fichier de base de donnesSQLite */
/*---------------------------------------------------------------------------*/
/* Projet : wxSQLitePlus Version : 0.2.2.0 */
/* Fichier : sqlbook.h */
/* Auteur : Fred Cailleau-Lepetit Date : 07/07/2007 */
/* email : softinthebox@free.fr Rvision : 19/08/2008 */
/*---------------------------------------------------------------------------*/
/* Copyright (C) Fred Cailleau-Lepetit 2007 */
/* Licence GNU General Public License http://www.fsf.org/copyleft/gpl.html */
/*---------------------------------------------------------------------------*/
/*
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 (version 3).
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Ce programme est libre, vous pouvez le redistribuer et/ou le modifier
selon les termes de la Licence Publique Gnrale GNU publie par la
Free Software Foundation (version 3).
Ce programme est distribu car potentiellement utile, mais
SANS AUCUNE GARANTIE, ni explicite ni implicite, y compris
les garanties de commercialisation ou d'adaptation dans un but
spcifique. Reportez-vous la Licence Publique Gnrale GNU
pour plus de dtails.
*/
#ifndef _SQLBOOK_H_
#define _SQLBOOK_H_
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "sqlbook.h"
#endif
/*---------------------------------------------------------------------------*/
#include "sqleditor.h"
/*---------------------------------------------------------------------------*/
class wxAuiNotebook;
class wxGrid;
class wxSpecGrid;
class wxSQLite3Database;
class SQLite3HookForCount;
/*---------------------------------------------------------------------------*/
class wxSQLBook: public wxPanel
{
DECLARE_DYNAMIC_CLASS(wxSQLBook)
DECLARE_EVENT_TABLE()
public:
wxSQLBook();
wxSQLBook(wxWindow* parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0);
bool Create(wxWindow* parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0);
~wxSQLBook();
wxSQLEditor* GetSQLEdit(){return m_SQLEdit;}
wxGrid* GetDataResult(){return (wxGrid*)m_DataResult;}
wxTextCtrl* GetLogResult(){return m_LogResult;}
void ShowLog(bool showend = true);
void ShowData();
void ShowExplain();
void WriteText(const wxString& text);
void SetAutoClose(bool value){m_AutoClose = value;}
void SetDatabaseAndHook(wxSQLite3Database* db, SQLite3HookForCount* hook)
{
m_db = db;
m_Hook = hook;
}
void SetAutoTransact(bool autotransact){m_AutoTransact = autotransact;}
void ExecQuery(const wxString sql, bool explain = false,
bool history = true);
void ExecScript(const wxArrayString& arrayString);
bool DoClose();
protected:
void Init();
void CreateControls();
void OnUpdateUI(wxStyledTextEvent& event);
void OnSQLRightDown(wxMouseEvent& event);
void OnSQLSetFocus(wxFocusEvent& event);
void OnSQLKillFocus(wxFocusEvent& event);
void OnMnuCompactClick(wxCommandEvent& event);
void OnCopyClick(wxCommandEvent& event);
void OnCopyUpdate(wxUpdateUIEvent& event);
void OnClearAllClick(wxCommandEvent& event);
void OnClearAllUpdate(wxUpdateUIEvent& event);
void OnSelectallClick(wxCommandEvent& event);
void OnSelectallUpdate(wxUpdateUIEvent& event);
void OnEventClick(wxCommandEvent& event);
void OnEventUpdate(wxUpdateUIEvent& event);
void OnMnuShowhistoryClick(wxCommandEvent& event);
void OnMnuShowhistoryUpdate(wxUpdateUIEvent& event);
void OnExecSQLClick(wxCommandEvent& event);
void OnExecScriptClick(wxCommandEvent& event);
void OnExplainClick(wxCommandEvent& event);
void OnDescribeClick(wxCommandEvent& event);
void OnQueryUpdate(wxUpdateUIEvent& event);
void OnBeginTransactionClick(wxCommandEvent& event);
void OnEndTransactionClick(wxCommandEvent& event);
void OnCommitClick(wxCommandEvent& event);
void OnRollbackClick(wxCommandEvent& event);
void OnBeginTransactionUpdate(wxUpdateUIEvent& event);
void OnEndTransactionUpdate(wxUpdateUIEvent& event);
void OnEdRefresh(wxCommandEvent& event);
wxAuiManager& GetAuiManager() { return m_auiManager; }
static bool ShowToolTips();
private:
wxAuiManager m_auiManager;
wxSQLEditor* m_SQLEdit;
wxAuiNotebook* m_ResultBook;
wxSpecGrid* m_DataResult;
wxTextCtrl* m_LogResult;
wxSpecGrid* m_Explain;
wxSQLite3Database* m_db;
SQLite3HookForCount* m_Hook;
bool m_AutoTransact;
bool m_AutoClose;
wxString GetCurrentSQLStatement();
void GetScripSQL(wxArrayString& array);
wxString GetSQLStatementAt(long start, long& end);
wxString GetCurrentItem();
void DisplayHookValues();
wxMenu* CreateMenuSQLEditor();
void ShowEditorPos();
void SetStatusText(const wxString& text);
void Describe(const wxString& name);
};
/*---------------------------------------------------------------------------*/
#endif // _SQLBOOK_H_
|