XABSearchPanelADT( parent )
{
+ // Setup the search panel.
+
// Setup the images for the add and delete buttons.
wxMemoryInputStream astream(buttons_add_png, sizeof(buttons_add_png));
void XABSearchPanel::UpdateOptions( wxCommandEvent& event )
{
+ // Update the options in the search panel.
+
if (choOption->GetSelection() == 12 ||
choOption->GetSelection() == 13 ||
choOption->GetSelection() == 14 ){
void XABSearchPanel::AddSearchWidget( wxCommandEvent& event )
{
+ // Add the search panel.
+
frmSearch *SCHWin = static_cast<frmSearch*>(SCHWinPtr);
wxCommandEvent eventsend(SE_ADDSEARCHSETTING);
void XABSearchPanel::RemoveSearchWidget( wxCommandEvent& event )
{
+ // Remove the search panel.
+
frmSearch *SCHWin = static_cast<frmSearch*>(SCHWinPtr);
wxCommandEvent eventsend(SE_REMOVESEARCHSETTING);
void XABSearchPanel::EnableButtons(bool AddButton, bool DeleteButton)
{
+ // Enable the buttons for the search panel.
+
if (AddButton == TRUE){
btnAdd->Enable();
} else {
void XABSearchPanel::SetupPointers(void* SCHWinPtrInc){
+ // Setup the pointers for the search panel.
+
SCHWinPtr = SCHWinPtrInc;
}
void XABSearchPanel::SetupInteger(int IntInc){
+ // Set the ID of the search panel.
+
SCHInt = IntInc;
}
int XABSearchPanel::GetInteger(){
+ // Get the ID of the search panel.
+
return SCHInt;
}
void XABSearchPanel::DisableControls(wxCommandEvent &event){
+ // Disable the search controls.
+
choOption->Disable();
chkActive->Disable();
txtSearch->Disable();
void XABSearchPanel::EnableControls(wxCommandEvent &event){
+ // Enable the search controls.
+
choOption->Enable();
chkActive->Enable();
txtSearch->Enable();
int XABSearchPanel::GetSelectionOption(){
+ // Get the selection option.
+
return choOption->GetSelection();
}
bool XABSearchPanel::GetCheckboxSetting(){
+ // Get the checkbox setting.
+
return chkActive->IsChecked();
}
wxString XABSearchPanel::GetStringSetting(){
+ // Get the search string setting.
+
return txtSearch->GetValue();
}
\ No newline at end of file