File: string_list_editor.cpp

package info (click to toggle)
mysql-workbench 6.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,932 kB
  • ctags: 87,814
  • sloc: ansic: 955,521; cpp: 427,465; python: 59,728; yacc: 59,129; xml: 54,204; sql: 7,091; objc: 965; makefile: 638; sh: 613; java: 237; perl: 30; ruby: 6; php: 1
file content (129 lines) | stat: -rw-r--r-- 3,471 bytes parent folder | download | duplicates (2)
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) 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 "grt/common.h"
#include "string_list_editor.h"
#include "base/string_utilities.h"

using namespace grtui;

StringListEditor::StringListEditor(grt::GRT *grt, mforms::Form *owner, const bool reorderable)
: mforms::Form(owner, mforms::FormResizable), _grt(grt),
_vbox(false), _tree(mforms::TreeFlatList|(reorderable ? mforms::TreeAllowReorderRows : (mforms::TreeOptions)0)), _button_box(true)
{
  set_name("list_editor");
  _tree.add_column(mforms::StringColumnType, "Value", 300, true);
  _tree.end_columns();
  
  set_content(&_vbox);
  _vbox.set_padding(12);
  _vbox.set_spacing(12);
  _button_box.set_spacing(12);
  
  _vbox.add(&_tree, true, true);
  _vbox.add(&_button_box, false, true);
  
  _ok_button.set_text(_("OK"));
  _cancel_button.set_text(_("Cancel"));
  _ok_button.enable_internal_padding(true);
  _cancel_button.enable_internal_padding(true);
  
  _add_button.set_text(_("Add"));
  _del_button.set_text(_("Delete"));
  _add_button.enable_internal_padding(true);
  _del_button.enable_internal_padding(true);

  _button_box.add(&_add_button, false, true);
  _button_box.add(&_del_button, false, true);

  _button_box.add_end(&_ok_button, false, true);
  _button_box.add_end(&_cancel_button, false, true);
  
  scoped_connect(_add_button.signal_clicked(),boost::bind(&StringListEditor::add, this));
  scoped_connect(_del_button.signal_clicked(),boost::bind(&StringListEditor::del, this));
  
  set_size(400, 320);
}


void StringListEditor::add()
{
  _tree.select_node(_tree.add_node());
}


void StringListEditor::del()
{
  mforms::TreeNodeRef node= _tree.get_selected_node();
  if (node)
    node->remove_from_parent();
}


bool StringListEditor::run()
{
  return run_modal(&_ok_button, &_cancel_button);
}


void StringListEditor::set_string_list(const std::vector<std::string> &strings)
{
  _tree.clear();
  for (std::vector<std::string>::const_iterator r= strings.begin(); r != strings.end(); ++r)
  {
    _tree.add_node()->set_string(0, *r);
  }
}


void StringListEditor::set_grt_string_list(const grt::StringListRef &strings)
{
  _tree.clear();
  for (grt::StringListRef::const_iterator r= strings.begin(); r != strings.end(); ++r)
  {
    _tree.add_node()->set_string(0, (*r).c_str());
  }  
}


std::vector<std::string> StringListEditor::get_string_list()
{
  std::vector<std::string> list;
  
  for (int c= _tree.count(), i= 0; i < c; i++)
  {
    list.push_back(_tree.root_node()->get_child(i)->get_string(0));
  }
  
  return list;
}


grt::StringListRef StringListEditor::get_grt_string_list()
{
  grt::StringListRef list(_grt);
  
  for (int c= _tree.count(), i= 0; i < c; i++)
  {
    list.insert(_tree.root_node()->get_child(i)->get_string(0));
  }
  
  return list;
}