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
|
/*
* Copyright (c) 2007, 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 "table_figure_simple.h"
using namespace wbfig;
using namespace mdc;
using namespace base;
SimpleTable::SimpleTable(mdc::Layer *layer, FigureEventHub *hub, const model_ObjectRef &self)
: Table(layer, hub, self, false), _column_box(layer, mdc::Box::Vertical)
{
set_allowed_resizing(true, true);
set_accepts_focus(true);
set_accepts_selection(true);
magnetize_bounds();
add(&_title, false, true, true);
_title.set_border_color(Color::Black());
_title.set_font(mdc::FontSpec(_title.get_font().family, mdc::SNormal, mdc::WNormal, 12));
_column_box.set_spacing(1);
//_column_box.set_fixed_min_size(mdc::Size(-1, 20));
set_border_color(Color::Black());
set_background_color(Color::White());
set_draw_background(true);
_barker= false;
add(&_column_box, false, true, true);
}
void SimpleTable::set_color(const Color &color)
{
set_background_color(color);
set_needs_render();
}
void SimpleTable::set_barker_notation(bool flag)
{
_barker= true;
}
void SimpleTable::set_dependant(bool flag)
{
if (flag)
set_background_corners(mdc::CAll, 8.0);
else
set_background_corners(mdc::CNone, 0.0);
}
Table::ItemList::iterator SimpleTable::begin_columns_sync()
{
return begin_sync(_column_box, _columns);
}
Table::ItemList::iterator SimpleTable::sync_next_column(ItemList::iterator iter,
const std::string &id,
ColumnFlags flags,
const std::string &text)
{
std::string pref;
if (_barker)
{
if (flags & wbfig::ColumnNotNull)
pref= "\xe2\x97\x8f";
else
pref= "\xe2\x97\x8b";
}
if (flags & wbfig::ColumnPK)
{
if (flags & wbfig::ColumnFK)
return sync_next(_column_box, _columns, iter, id, NULL, _barker ? "# "+text : text+" (FK)",
boost::bind(&SimpleTable::create_column_item, this, _1, _2),
boost::bind(&SimpleTable::update_column_item, this, _1, flags));
else
return sync_next(_column_box, _columns, iter, id, NULL, _barker ? "# "+text : text,
boost::bind(&SimpleTable::create_column_item, this, _1, _2),
boost::bind(&SimpleTable::update_column_item, this, _1, flags));
}
else if (flags & wbfig::ColumnFK)
return sync_next(_column_box, _columns, iter, id, NULL, pref+text+" (FK)",
boost::bind(&SimpleTable::create_column_item, this, _1, _2),
boost::bind(&SimpleTable::update_column_item, this, _1, flags));
else
return sync_next(_column_box, _columns, iter, id, NULL, pref+text,
boost::bind(&SimpleTable::create_column_item, this, _1, _2),
boost::bind(&SimpleTable::update_column_item, this, _1, flags));
}
void SimpleTable::end_columns_sync(ItemList::iterator iter)
{
end_sync(_column_box, _columns, iter);
}
|