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
|
/*---------------------------------------------------------------------------*/
/* Logiciel de gestion de fichier de base de donnesSQLite */
/*---------------------------------------------------------------------------*/
/* Projet : wxSQLitePlus Version : 0.2.0.0 */
/* Fichier : createtable.h */
/* Auteur : Fred Cailleau-Lepetit Date : 14/07/2007 */
/* email : softinthebox@free.fr Rvision : 12/01/2008 */
/*---------------------------------------------------------------------------*/
/* Copyright (C) Fred Cailleau-Lepetit 2007-2008 */
/* 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 _CREATETABLE_H_
#define _CREATETABLE_H_
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "createtable.h"
#endif
/*---------------------------------------------------------------------------*/
#include <wx/wxsqlite3.h>
#include <wx/grid.h>
#include <wx/dynarray.h>
#include "sqlite3table.h"
#include "sqleditor.h"
/*---------------------------------------------------------------------------*/
class wxSpecGrid;
/*---------------------------------------------------------------------------*/
enum wxColTblType {cttInteger, cttIntegerAutoinc, cttReal, cttText, cttBlob};
/*---------------------------------------------------------------------------*/
class wxColumnCtrTable
{
public:
wxColumnCtrTable();
void SetName(const wxString& name) {m_Name = name;}
void SetType(wxColTblType type) {m_Type = type;}
void SetNotNull(bool notnull) {m_NotNull = notnull;}
void SetPrimaryKey(bool primarykey) {m_PrimaryKey = primarykey;}
void SetDefault(const wxString& def) {m_Default = def;}
wxString GetName() const {return m_Name;}
wxColTblType GetType() const {return m_Type;}
bool GetNotNull() const {return m_NotNull;}
bool GetPrimaryKey() const {return m_PrimaryKey;}
wxString GetDefault() const {return m_Default;}
private:
wxString m_Name;
wxColTblType m_Type;
bool m_NotNull;
bool m_PrimaryKey;
wxString m_Default;
};
/*---------------------------------------------------------------------------*/
WX_DEFINE_ARRAY(wxColumnCtrTable*, wxArrayColumnCtrTable);
/*---------------------------------------------------------------------------*/
class wxGridColumnsTable : public wxGridTableBase
{
public:
wxGridColumnsTable();
virtual ~wxGridColumnsTable();
virtual int GetNumberRows();
virtual int GetNumberCols() {return 5;}
virtual bool IsEmptyCell(int row, int col);
virtual wxString GetValue(int row, int col);
virtual bool GetValueAsBool(int row, int col);
virtual void SetValue(int row, int col, const wxString& value);
virtual void SetValueAsBool(int row, int col, bool value);
virtual wxString GetColLabelValue(int col);
virtual wxString GetTypeName(int row, int col);
virtual bool CanGetValueAs(int row, int col, const wxString& typeName);
virtual bool CanSetValueAs(int row, int col, const wxString& typeName);
virtual bool InsertRows(size_t pos = 0, size_t numRows = 1);
virtual bool AppendRows(size_t numRows = 1);
virtual bool DeleteRows(size_t pos = 0, size_t numRows = 1);
wxColumnCtrTable* GetColumnCtrTable(size_t index);
protected:
virtual bool CheckName(const wxString& name, int row = -1);
private:
wxArrayColumnCtrTable m_Columns;
bool CheckAutoInc(int row = -1);
wxString GetUniqueName();
};
/*---------------------------------------------------------------------------*/
class wxCreateTableDialog: public wxDialog
{
DECLARE_DYNAMIC_CLASS(wxCreateTableDialog)
DECLARE_EVENT_TABLE()
public:
wxCreateTableDialog();
wxCreateTableDialog(wxWindow* parent, wxWindowID id = -1,
const wxString& caption = _("Create Table"),
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxSize(400, 300),
long style = wxDEFAULT_DIALOG_STYLE);
bool Create(wxWindow* parent, wxWindowID id = -1,
const wxString& caption = _("Create Table"),
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxSize(400, 300),
long style = wxDEFAULT_DIALOG_STYLE);
~wxCreateTableDialog();
wxString GetCreateTableDDL();
void SetDatabase(wxSQLite3Database* db,
const wxString& base = wxEmptyString);
bool GetTemporary() const {return m_Temporary;}
protected:
void Init();
void CreateControls();
void OnChar(wxKeyEvent& event);
void OnBookPageChanging(wxNotebookEvent& event);
void OnGridChar(wxKeyEvent& event);
void OnBtnAddcolumnClick(wxCommandEvent& event);
void OnBtnDelcolumnClick(wxCommandEvent& event);
void OnBtnDelcolumnUpdate(wxUpdateUIEvent& event);
void OnOkClick(wxCommandEvent& event);
static bool ShowToolTips();
private:
wxTextCtrl* m_TextTableName;
wxCheckBox* m_TempTable;
wxSpecGrid* m_GridColumns;
wxDDLEditor* m_TextDdl;
wxButton* m_BtnAddColumn;
wxSQLite3Database* m_Db;
wxString m_Base;
wxGridColumnsTable m_TableColumns;
bool m_Temporary;
};
/*---------------------------------------------------------------------------*/
#endif // _CREATETABLE_H_
|