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
|
/*---------------------------------------------------------------------------*/
/* Logiciel de gestion de fichier de base de donnesSQLite */
/*---------------------------------------------------------------------------*/
/* Projet : wxSQLitePlus Version : 0.2.2.0 */
/* Fichier : filterdlg.h */
/* Auteur : Fred Cailleau-Lepetit Date : 24/08/2008 */
/* email : softinthebox@free.fr Rvision : 24/08/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 _FILTERDLG_H_
#define _FILTERDLG_H_
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "filterdlg.h"
#endif
/*---------------------------------------------------------------------------*/
#include <wx/wxsqlite3.h>
#include "sqleditor.h"
/*---------------------------------------------------------------------------*/
class wxFilterDialog: public wxDialog
{
DECLARE_DYNAMIC_CLASS(wxFilterDialog)
DECLARE_EVENT_TABLE()
public:
wxFilterDialog();
wxFilterDialog(wxWindow* parent, wxWindowID id = -1,
const wxString& caption = _("Filter"),
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER);
bool Create(wxWindow* parent, wxWindowID id = -1,
const wxString& caption = _("Filter"),
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER);
~wxFilterDialog();
void SetDatabase(wxSQLite3Database* db,
const wxString& base = wxEmptyString);
void SetTable(const wxString& table);
wxString GetStatement(){return m_Statement;}
void SetStatement(const wxString& value);
protected:
void Init();
void CreateControls();
void OnFieldsSelected(wxCommandEvent& event);
void OnValueUpdate(wxUpdateUIEvent& event);
void OnBtnAndClick(wxCommandEvent& event);
void OnBtnOrClick(wxCommandEvent& event);
void OnBtnOparClick(wxCommandEvent& event);
void OnBtnCparClick(wxCommandEvent& event);
void OnClearClick(wxCommandEvent& event);
void OnClearUpdate(wxUpdateUIEvent& event);
void OnBtnAddClick(wxCommandEvent& event);
void OnOkClick(wxCommandEvent& event);
private:
wxChoice* m_fields;
wxChoice* m_operators;
wxTextCtrl* m_Value;
wxSQLEditor* m_filter;
wxSQLite3Database* m_Db;
wxString m_Base;
wxString m_Table;
wxString m_Statement;
};
/*---------------------------------------------------------------------------*/
#endif // _FILTERDLG_H_
|