82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
/*
|
|
* File: LBoundJsonGridPicker.h
|
|
* Author: Saleem Edah-Tally - nmset@yandex.com
|
|
* License : LGPL version 2.1
|
|
* Copyright Saleem Edah-Tally, M. D. - © 2014
|
|
*
|
|
* Created on December 8, 2019, 9:23 AM
|
|
*/
|
|
|
|
#ifndef LBOUNDJSONGRIDPICKER_H
|
|
#define LBOUNDJSONGRIDPICKER_H
|
|
|
|
#include "JsonGridPickerCtrl.h"
|
|
#include "../LBoundControl.h"
|
|
#include "../LResultSet.h"
|
|
|
|
/**
|
|
* Saves a JSON array in database.
|
|
* Data type of database column should be TEXT for sqlite, and can be TEXT or
|
|
* JSONB for postgresql.
|
|
* @return
|
|
*/
|
|
class LBoundJsonGridPicker : public JsonGridPickerCtrl, public LBoundControl
|
|
{
|
|
DECLARE_CLASS(LBoundJsonGridPicker)
|
|
public:
|
|
LBoundJsonGridPicker(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxArrayString& types,
|
|
wxSize popupSize = wxDefaultSize,
|
|
const wxString& text = wxEmptyString,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxPB_USE_TEXTCTRL,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxButtonNameStr);
|
|
virtual ~LBoundJsonGridPicker();
|
|
|
|
/**
|
|
* Sets the resultset member and registers the control in the resultset.
|
|
* @param newResultSet
|
|
*/
|
|
void SetResultSet(LResultSet * newResultSet);
|
|
/**
|
|
*
|
|
* @return If the control is empty, returns literal NULL.
|
|
* Else, returns GetValue().
|
|
*/
|
|
const wxAny GetData();
|
|
void SetData(const wxAny& newData);
|
|
|
|
bool IsNull()
|
|
{
|
|
return (GetData().As<wxString>() == L_SQLNULL);
|
|
}
|
|
void SetNull();
|
|
/**
|
|
* Is control data same as backend data?
|
|
* <br/><br/>
|
|
* If backend data cannot be parsed, will always return true, because
|
|
* GetValue() returns empty control data.
|
|
* @return
|
|
*/
|
|
bool IsDirty();
|
|
|
|
/**
|
|
* Alias for GetValue().
|
|
* Not really the displayed informative value in the picker's wxTextCtrl.
|
|
* @return
|
|
*/
|
|
const wxString GetDisplayedData()
|
|
{
|
|
return GetValue();
|
|
}
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif /* LBOUNDJSONGRIDPICKER_H */
|
|
|