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
|
/*
* Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
*
* 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 2 of the
* License.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include <grts/structs.ui.h>
#include <grts/structs.db.mgmt.h>
#include <grtpp_util.h>
#include "grtui/grtdb_connect_panel.h"
#include "../wrapper/mforms_ObjectReference_impl.h"
//================================================================================
// ui_db_ConnectPanel
class ui_db_ConnectPanel::ImplData
{
grtui::DbConnectPanel *_panel;
public:
ImplData()
: _panel(0)
{
}
void init(const db_mgmt_ManagementRef &mgmt)
{
if (!_panel)
{
_panel = new grtui::DbConnectPanel();
_panel->init(mgmt);
}
}
void init(const db_mgmt_ManagementRef &mgmt, const grt::ListRef<db_mgmt_Rdbms> &rdbms_list)
{
if (!_panel)
{
_panel = new grtui::DbConnectPanel(grtui::DbConnectPanelShowConnectionCombo|grtui::DbConnectPanelShowRDBMSCombo);
_panel->init(mgmt, rdbms_list);
}
}
grtui::DbConnectPanel *panel()
{
return _panel;
}
~ImplData()
{
delete _panel;
}
};
void ui_db_ConnectPanel::init()
{
_data = new ImplData();
}
ui_db_ConnectPanel::~ui_db_ConnectPanel()
{
delete _data;
}
void ui_db_ConnectPanel::set_data(ImplData *data)
{
throw std::logic_error("wrong call to set_data()");
}
void ui_db_ConnectPanel::initialize(const grt::Ref<db_mgmt_Management> &mgmt)
{
_data->init(mgmt);
}
void ui_db_ConnectPanel::initializeWithRDBMSSelector(const grt::Ref<db_mgmt_Management> &mgmt, const grt::ListRef<db_mgmt_Rdbms> &rdbms_list)
{
_data->init(mgmt, rdbms_list);
}
grt::Ref<db_mgmt_Connection> ui_db_ConnectPanel::connection() const
{
if (_data && _data->panel())
{
_data->panel()->get_be()->save_changes();
return _data->panel()->get_connection();
}
return db_mgmt_ConnectionRef();
}
void ui_db_ConnectPanel::connection(const grt::Ref<db_mgmt_Connection> &value)
{
if (_data && _data->panel())
_data->panel()->set_connection(value);
throw std::logic_error("Cannot set connection value to non-initialized ui.db.ConnectionPanel instance");
}
grt::Ref<mforms_ObjectReference> ui_db_ConnectPanel::view() const
{
if (_data && _data->panel())
return mforms_to_grt(get_grt(), _data->panel(), "Box");
return grt::Ref<mforms_ObjectReference>();
}
void ui_db_ConnectPanel::saveConnectionAs(const std::string &name)
{
if (_data && _data->panel())
_data->panel()->save_connection_as(name);
}
|