/*  $Id: singledbxref_subpanel.cpp 27370 2013-02-04 18:09:51Z bollin $
 * ===========================================================================
 *
 *                            PUBLIC DOMAIN NOTICE
 *               National Center for Biotechnology Information
 *
 *  This software/database is a "United States Government Work" under the
 *  terms of the United States Copyright Act.  It was written as part of
 *  the author's official duties as a United States Government employee and
 *  thus cannot be copyrighted.  This software/database is freely available
 *  to the public for use. The National Library of Medicine and the U.S.
 *  Government have not placed any restriction on its use or reproduction.
 *
 *  Although all reasonable efforts have been taken to ensure the accuracy
 *  and reliability of the software and data,  the NLM and the U.S.
 *  Government do not and cannot warrant the performance or results that
 *  may be obtained by using this software or data. The NLM and the U.S.
 *  Government disclaim all warranties,  express or implied,  including
 *  warranties of performance,  merchantability or fitness for any particular
 *  purpose.
 *
 *  Please cite the author in any work or product based on this material.
 *
 * ===========================================================================
 *
 * Authors:  Colleen Bollin
 */


#include <ncbi_pch.hpp>
#include <objects/general/Object_id.hpp>
#include <gui/widgets/wx/wx_utils.hpp>
#include <util/xregexp/regexp.hpp>

////@begin includes
////@end includes

#include "singledbxref_subpanel.hpp"
#include "dbxref_panel.hpp"

////@begin XPM images
////@end XPM images

BEGIN_NCBI_SCOPE
USING_SCOPE(objects);

/*!
 * CSingleDbxref_SubPanel type definition
 */

IMPLEMENT_DYNAMIC_CLASS( CSingleDbxref_SubPanel, wxPanel )


/*!
 * CSingleDbxref_SubPanel event table definition
 */

BEGIN_EVENT_TABLE( CSingleDbxref_SubPanel, wxPanel )

////@begin CSingleDbxref_SubPanel event table entries
    EVT_TEXT( ID_TEXTCTRL32, CSingleDbxref_SubPanel::OnTextctrl32TextUpdated )

////@end CSingleDbxref_SubPanel event table entries

END_EVENT_TABLE()


/*!
 * CSingleDbxref_SubPanel constructors
 */

CSingleDbxref_SubPanel::CSingleDbxref_SubPanel()
{
    Init();
}

CSingleDbxref_SubPanel::CSingleDbxref_SubPanel( wxWindow* parent, CDbtag& tag, wxWindowID id, const wxPoint& pos, const wxSize& size, long style )
{
    Init();
    m_Tag = new CDbtag();
    m_Tag->Assign(tag);
    Create(parent, id, pos, size, style);
}


/*!
 * CSingleDbxref_SubPanel creator
 */

bool CSingleDbxref_SubPanel::Create( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style )
{
////@begin CSingleDbxref_SubPanel creation
    SetExtraStyle(wxWS_EX_BLOCK_EVENTS);
    wxPanel::Create( parent, id, pos, size, style );

    CreateControls();
    if (GetSizer())
    {
        GetSizer()->SetSizeHints(this);
    }
    Centre();
////@end CSingleDbxref_SubPanel creation
    return true;
}


/*!
 * CSingleDbxref_SubPanel destructor
 */

CSingleDbxref_SubPanel::~CSingleDbxref_SubPanel()
{
////@begin CSingleDbxref_SubPanel destruction
////@end CSingleDbxref_SubPanel destruction
}


/*!
 * Member initialisation
 */

void CSingleDbxref_SubPanel::Init()
{
////@begin CSingleDbxref_SubPanel member initialisation
    m_DbCtrl = NULL;
    m_ObjectIdCtrl = NULL;
////@end CSingleDbxref_SubPanel member initialisation
}


/*!
 * Control creation for CSingleDbxref_SubPanel
 */

void CSingleDbxref_SubPanel::CreateControls()
{    
////@begin CSingleDbxref_SubPanel content construction
    CSingleDbxref_SubPanel* itemPanel1 = this;

    wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxHORIZONTAL);
    itemPanel1->SetSizer(itemBoxSizer2);

    m_DbCtrl = new wxTextCtrl( itemPanel1, ID_TEXTCTRL31, wxEmptyString, wxDefaultPosition, wxSize(100, -1), 0 );
    itemBoxSizer2->Add(m_DbCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 0);

    m_ObjectIdCtrl = new wxTextCtrl( itemPanel1, ID_TEXTCTRL32, wxEmptyString, wxDefaultPosition, wxSize(100, -1), 0 );
    itemBoxSizer2->Add(m_ObjectIdCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 0);

////@end CSingleDbxref_SubPanel content construction
}


bool CSingleDbxref_SubPanel::TransferDataToWindow()
{
    if (!wxPanel::TransferDataToWindow())
        return false;

    if (m_Tag->IsSetDb()) {
        m_DbCtrl->SetValue(ToWxString(m_Tag->GetDb()));
    }
    if (m_Tag->IsSetTag()) {
        if (m_Tag->GetTag().IsId()) {
            m_ObjectIdCtrl->SetValue(ToWxString(NStr::NumericToString(m_Tag->GetTag().GetId())));
        } else if (m_Tag->GetTag().IsStr()) {
            m_ObjectIdCtrl->SetValue(ToWxString(m_Tag->GetTag().GetStr()));
        } else {
            m_ObjectIdCtrl->SetValue(wxEmptyString);
        }            
    } else {
        m_ObjectIdCtrl->SetValue(wxEmptyString);
    }            

    return true;
}


static bool s_IsAllDigits(const string& str)
{
    static CRegexp all_digits_regex("^[0-9]+$");
    return all_digits_regex.IsMatch(str);
}


bool CSingleDbxref_SubPanel::TransferDataFromWindow()
{
    if (!wxPanel::TransferDataFromWindow())
        return false;

    string db = ToStdString(m_DbCtrl->GetValue());
    string id = ToStdString(m_ObjectIdCtrl->GetValue());
    if (NStr::IsBlank(db)) {
        m_Tag->ResetDb();
    } else {
        m_Tag->SetDb(db);
    }

    if (NStr::IsBlank(id)) {
        m_Tag->ResetTag();
    } else if (s_IsAllDigits(id)) {
        m_Tag->SetTag().SetId(NStr::StringToInt(id));
    } else {
        m_Tag->SetTag().SetStr(id);
    }
    return true;
}


CRef<CDbtag> CSingleDbxref_SubPanel::GetDbtag()
{
    TransferDataFromWindow();
    if (m_Tag)
        return m_Tag;

    return CRef<CDbtag>();
}


/*!
 * Should we show tooltips?
 */

bool CSingleDbxref_SubPanel::ShowToolTips()
{
    return true;
}

/*!
 * Get bitmap resources
 */

wxBitmap CSingleDbxref_SubPanel::GetBitmapResource( const wxString& name )
{
    // Bitmap retrieval
////@begin CSingleDbxref_SubPanel bitmap retrieval
    wxUnusedVar(name);
    return wxNullBitmap;
////@end CSingleDbxref_SubPanel bitmap retrieval
}

/*!
 * Get icon resources
 */

wxIcon CSingleDbxref_SubPanel::GetIconResource( const wxString& name )
{
    // Icon retrieval
////@begin CSingleDbxref_SubPanel icon retrieval
    wxUnusedVar(name);
    return wxNullIcon;
////@end CSingleDbxref_SubPanel icon retrieval
}


/*!
 * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_TEXTCTRL32
 */

void CSingleDbxref_SubPanel::OnTextctrl32TextUpdated( wxCommandEvent& event )
{
    wxTextCtrl* item = (wxTextCtrl*)event.GetEventObject();
    if (NStr::IsBlank(ToStdString(item->GetValue()))) {
        return;
    }
    wxWindow* parent = this->GetParent();

    CDbxrefPanel* dbxrefpanel = dynamic_cast<CDbxrefPanel*>(parent);

    while (parent && !dbxrefpanel) {
        parent = parent->GetParent();
        dbxrefpanel = dynamic_cast<CDbxrefPanel*>(parent);
    }

    if (!dbxrefpanel) {
        return;
    }
    dbxrefpanel->AddLastDbxref((wxWindow*)this);
}

END_NCBI_SCOPE
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078
0079
0080
0081
0082
0083
0084
0085
0086
0087
0088
0089
0090
0091
0092
0093
0094
0095
0096
0097
0098
0099
0100
0101
0102
0103
0104
0105
0106
0107
0108
0109
0110
0111
0112
0113
0114
0115
0116
0117
0118
0119
0120
0121
0122
0123
0124
0125
0126
0127
0128
0129
0130
0131
0132
0133
0134
0135
0136
0137
0138
0139
0140
0141
0142
0143
0144
0145
0146
0147
0148
0149
0150
0151
0152
0153
0154
0155
0156
0157
0158
0159
0160
0161
0162
0163
0164
0165
0166
0167
0168
0169
0170
0171
0172
0173
0174
0175
0176
0177
0178
0179
0180
0181
0182
0183
0184
0185
0186
0187
0188
0189
0190
0191
0192
0193
0194
0195
0196
0197
0198
0199
0200
0201
0202
0203
0204
0205
0206
0207
0208
0209
0210
0211
0212
0213
0214
0215
0216
0217
0218
0219
0220
0221
0222
0223
0224
0225
0226
0227
0228
0229
0230
0231
0232
0233
0234
0235
0236
0237
0238
0239
0240
0241
0242
0243
0244
0245
0246
0247
0248
0249
0250
0251
0252
0253
0254
0255
0256
0257
0258
0259
0260
0261
0262
0263
0264
0265
0266
0267
0268
0269
0270
0271
0272
0273
0274
0275
0276
0277
0278
0279