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
|
/*
* 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 "text_input_dialog.h"
#include "grt/common.h"
#include "base/string_utilities.h"
using namespace grtui;
TextInputDialog::TextInputDialog(mforms::Form *owner)
: mforms::Form(owner, mforms::FormResizable), _button_box(true)
{
set_name("input_dialog");
_table.set_padding(12);
_table.set_row_count(3);
_table.set_column_count(2);
_table.add(&_description, 1, 2, 0, 1);
_table.add(&_caption, 0, 1, 1, 2);
_table.add(&_input, 1, 2, 1, 2);
_table.set_row_spacing(8);
_table.set_column_spacing(8);
_table.add(&_button_box, 0, 2, 2, 3);
_button_box.set_spacing(8);
_cancel_button.set_text(_("Cancel"));
_cancel_button.enable_internal_padding(true);
_ok_button.set_text(_("OK"));
_ok_button.enable_internal_padding(true);
_button_box.add_end(&_cancel_button, false, true);
_button_box.add_end(&_ok_button, false, true);
set_content(&_table);
set_size(350, 150);
}
void TextInputDialog::set_description(const std::string &text)
{
_description.set_text(text);
}
void TextInputDialog::set_caption(const std::string &text)
{
_caption.set_text(text);
}
void TextInputDialog::set_value(const std::string &text)
{
_input.set_value(text);
}
std::string TextInputDialog::get_value()
{
return _input.get_string_value();
}
bool TextInputDialog::run()
{
return run_modal(&_ok_button, &_cancel_button);
}
|