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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
|
// This file is part of fityk program. Copyright 2001-2013 Marcin Wojdyr
// Licence: GNU General Public License ver. 2+
#include <wx/wx.h>
#include <wx/treectrl.h>
#include <wx/textdlg.h>
#include <wx/image.h>
#include <wx/config.h>
#include <wx/clrpicker.h>
#include <wx/fontpicker.h>
#include "textpane.h"
#include "frame.h"
#include "inputline.h"
using namespace std;
enum {
ID_OUTPUT_CLEAR = 27001,
ID_OUTPUT_CONFIGURE,
ID_OUTPUT_EDITLINE
};
class OutputWinConfDlg : public wxDialog
{
public:
OutputWinConfDlg(wxWindow* parent, wxWindowID id, OutputWin* ow);
private:
OutputWin *ow_;
wxStaticText *font_label_;
wxColourPickerCtrl *cp_bg_, *cp_input_, *cp_output_, *cp_quote_,
*cp_warning_;
wxFontPickerCtrl *font_picker_;
wxTextCtrl *preview_;
void show_preview();
void OnSystemFontCheckbox(wxCommandEvent& event);
void OnFontChange(wxFontPickerEvent& event);
void OnColor(wxColourPickerEvent& event);
};
//===============================================================
// TextPane
//===============================================================
TextPane::TextPane(wxWindow *parent)
: wxPanel(parent, -1)
{
wxBoxSizer *io_sizer = new wxBoxSizer(wxVERTICAL);
// on Linux platform GUI and CLI history is stored in the same file
wxString hist_file = get_conf_file("history");
// readline and editline (libedit) use different history format,
// we like to use the same file file format as CLI, but it's not easy
// with libedit. If it's libedit history we use a different file.
FILE *f = wxFopen(hist_file, "r");
if (f) {
char buf[10];
char* ret = fgets(buf, 10, f);
fclose(f);
if (ret && strncmp(buf, "_HiStOrY_", 9) == 0) // libedit weirdness
hist_file += "_gui";
}
input_field = new InputLine(this, -1, this, hist_file);
output_win = new OutputWin (this, -1);
io_sizer->Add(output_win, 1, wxEXPAND);
io_sizer->Add(input_field, 0, wxEXPAND);
SetSizer(io_sizer);
io_sizer->SetSizeHints(this);
}
void TextPane::edit_in_input(string const& s)
{
input_field->SetValue(s2wx(s));
input_field->SetFocus();
}
void TextPane::ProcessInputLine(wxString const& s)
{
frame->set_status_text(wx2s(s));
exec(wx2s(s)); //displaying and executing command
}
//===============================================================
// OutputWin
//===============================================================
BEGIN_EVENT_TABLE(OutputWin, wxTextCtrl)
EVT_RIGHT_DOWN ( OutputWin::OnRightDown)
EVT_MENU (ID_OUTPUT_CLEAR, OutputWin::OnClear)
EVT_MENU (ID_OUTPUT_CONFIGURE, OutputWin::OnConfigure)
EVT_MENU (ID_OUTPUT_EDITLINE, OutputWin::OnEditLine)
EVT_KEY_DOWN ( OutputWin::OnKeyDown)
END_EVENT_TABLE()
OutputWin::OutputWin (wxWindow *parent, wxWindowID id)
: wxTextCtrl(parent, id, wxT(""), wxDefaultPosition, wxDefaultSize,
wxTE_MULTILINE|wxTE_RICH|wxNO_BORDER|wxTE_READONLY)
{}
void OutputWin::add_initial_text()
{
SetDefaultStyle(wxTextAttr(text_color_[UserInterface::kNormal]));
AppendText("This window shows your ");
SetDefaultStyle(wxTextAttr(text_color_[UserInterface::kInput]));
AppendText("commands");
SetDefaultStyle(wxTextAttr(text_color_[UserInterface::kNormal]));
AppendText(".\n");
}
void OutputWin::read_settings(wxConfigBase *cf)
{
cf->SetPath(wxT("/OutputWin/Colors"));
bg_color_ = cfg_read_color(cf, wxT("bg"), wxColour(0, 43, 54));
text_color_[UserInterface::kNormal] =
cfg_read_color(cf, wxT("normal"), wxColour(131, 148, 150));
text_color_[UserInterface::kInput] =
cfg_read_color(cf, wxT("input"), wxColour(133, 153, 0));
text_color_[UserInterface::kQuoted] =
cfg_read_color(cf, wxT("quot"), wxColour(38, 139, 210));
text_color_[UserInterface::kWarning] =
cfg_read_color(cf, wxT("warn"), wxColour(220, 50, 47));
cf->SetPath(wxT("/OutputWin"));
wxFont font = cfg_read_font(cf, wxT("font"), wxNullFont);
SetDefaultStyle(wxTextAttr(bg_color_, bg_color_, font));
SetBackgroundColour(bg_color_);
if (IsEmpty())
add_initial_text();
Refresh();
}
void OutputWin::save_settings(wxConfigBase *cf) const
{
cf->SetPath(wxT("/OutputWin/Colors"));
cfg_write_color (cf, wxT("normal"), text_color_[UserInterface::kNormal]);
cfg_write_color (cf, wxT("warn"), text_color_[UserInterface::kWarning]);
cfg_write_color (cf, wxT("quot"), text_color_[UserInterface::kQuoted]);
cfg_write_color (cf, wxT("input"), text_color_[UserInterface::kInput]);
cfg_write_color (cf, wxT("bg"), bg_color_);
cf->SetPath(wxT("/OutputWin"));
cfg_write_font (cf, wxT("font"), GetDefaultStyle().GetFont());
}
void OutputWin::append_text (UserInterface::Style style, const wxString& str)
{
const int max_len = 1048576;
const int delta = 262144;
if (GetLastPosition() > max_len)
Remove(0, delta);
SetDefaultStyle (wxTextAttr (text_color_[style]));
AppendText (str);
// in wxMSW 2.9.1(trunk) there is a scrolling-related bug:
// when the control is auto-scrolled after appending text,
// the page gets blank. Clicking on scrollbar shows the text again.
// Below is a workaround.
#ifdef __WXMSW__
ScrollLines(-1);
ScrollLines(1);
#endif
}
void OutputWin::show_preferences_dialog()
{
OutputWinConfDlg dlg(NULL, -1, this);
dlg.ShowModal();
}
void OutputWin::OnClear (wxCommandEvent&)
{
Clear();
add_initial_text();
}
void OutputWin::OnEditLine (wxCommandEvent&)
{
InputLine *input_field = static_cast<TextPane*>(GetParent())->input_field;
input_field->SetValue(selection_);
input_field->SetFocus();
}
void OutputWin::OnRightDown (wxMouseEvent& event)
{
wxMenu popup_menu;
popup_menu.Append (ID_OUTPUT_EDITLINE, wxT("&Edit Line/Selection"));
selection_ = GetStringSelection();
if (selection_.empty()) {
wxTextCoord col, row;
if (HitTest(event.GetPosition(), &col, &row) != wxTE_HT_UNKNOWN) {
wxString line = GetLineText(row);
if (line.StartsWith(wxT("=-> ")))
selection_ = line.substr(4);
}
} else if (selection_.StartsWith(wxT("=-> ")))
selection_ = selection_.substr(4);
if (selection_.empty())
popup_menu.Enable(ID_OUTPUT_EDITLINE, false);
popup_menu.Append (ID_OUTPUT_CLEAR, wxT("Clea&r"));
popup_menu.Append (ID_OUTPUT_CONFIGURE, wxT("&Configure..."));
PopupMenu (&popup_menu, event.GetX(), event.GetY());
}
void OutputWin::OnKeyDown (wxKeyEvent& event)
{
frame->focus_input(event);
}
void OutputWin::set_bg_color(wxColour const &color)
{
bg_color_ = color;
SetBackgroundColour (color);
SetDefaultStyle (wxTextAttr(wxNullColour, color));
}
OutputWinConfDlg::OutputWinConfDlg(wxWindow* parent, wxWindowID id,
OutputWin* ow)
: wxDialog(parent, id, wxString(wxT("Configure Output Window")),
wxDefaultPosition, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER),
ow_(ow)
{
wxBoxSizer *top_sizer = new wxBoxSizer(wxVERTICAL);
wxCheckBox *system_font_cb = new wxCheckBox(this, -1,
wxT("use the regular system font"));
top_sizer->Add(system_font_cb, wxSizerFlags().Border());
wxBoxSizer *fsizer = new wxBoxSizer(wxHORIZONTAL);
fsizer->AddSpacer(16);
font_label_ = new wxStaticText(this, -1, wxT("font:"));
fsizer->Add(font_label_, wxSizerFlags().Center().Border());
font_picker_ = new wxFontPickerCtrl(this, -1,
ow_->GetDefaultStyle().GetFont());
fsizer->Add(font_picker_, wxSizerFlags(1).Center().Border());
top_sizer->Add(fsizer, wxSizerFlags().Expand());
wxBoxSizer *hsizer = new wxBoxSizer(wxHORIZONTAL);
wxGridSizer *gsizer = new wxGridSizer(2, 5, 5);
wxSizerFlags cl = wxSizerFlags().Align(wxALIGN_CENTRE_VERTICAL),
cr = wxSizerFlags().Align(wxALIGN_CENTRE_VERTICAL|wxALIGN_RIGHT);
gsizer->Add(new wxStaticText(this, -1, wxT("background color")), cr);
cp_bg_ = new wxColourPickerCtrl(this, -1, ow_->bg_color_);
gsizer->Add(cp_bg_, cl);
gsizer->Add(new wxStaticText(this, -1, wxT("input color")), cr);
cp_input_ = new wxColourPickerCtrl(this, -1,
ow_->text_color_[UserInterface::kInput]);
gsizer->Add(cp_input_, cl);
gsizer->Add(new wxStaticText(this, -1, wxT("output color")), cr);
cp_output_ = new wxColourPickerCtrl(this, -1,
ow_->text_color_[UserInterface::kNormal]);
gsizer->Add(cp_output_, cl);
gsizer->Add(new wxStaticText(this, -1, wxT("quotation color")), cr);
cp_quote_ = new wxColourPickerCtrl(this, -1,
ow_->text_color_[UserInterface::kQuoted]);
gsizer->Add(cp_quote_, cl);
gsizer->Add(new wxStaticText(this, -1, wxT("warning color")), cr);
cp_warning_ = new wxColourPickerCtrl(this, -1,
ow_->text_color_[UserInterface::kWarning]);
gsizer->Add(cp_warning_, cl);
hsizer->Add(gsizer, wxSizerFlags());
preview_ = new wxTextCtrl(this, -1, wxT(""),
wxDefaultPosition, wxDefaultSize,
wxTE_MULTILINE|wxTE_RICH|wxTE_READONLY);
preview_->SetMinSize(wxSize(140, -1));
hsizer->Add(preview_, wxSizerFlags(1).Expand());
top_sizer->Add(hsizer, wxSizerFlags(1).Expand().Border());
top_sizer->Add(persistance_note(this), wxSizerFlags().Border());
top_sizer->Add(new wxButton(this, wxID_CLOSE),
wxSizerFlags().Right().Border());
SetSizerAndFit(top_sizer);
if (ow_->GetDefaultStyle().GetFont() == *wxNORMAL_FONT) {
system_font_cb->SetValue(true);
font_label_->Enable(false);
font_picker_->Enable(false);
}
show_preview();
SetEscapeId(wxID_CLOSE);
Connect(system_font_cb->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED,
wxCommandEventHandler(OutputWinConfDlg::OnSystemFontCheckbox));
Connect(font_picker_->GetId(), wxEVT_COMMAND_FONTPICKER_CHANGED,
wxFontPickerEventHandler(OutputWinConfDlg::OnFontChange));
Connect(cp_bg_->GetId(), wxEVT_COMMAND_COLOURPICKER_CHANGED,
wxColourPickerEventHandler(OutputWinConfDlg::OnColor));
Connect(cp_input_->GetId(), wxEVT_COMMAND_COLOURPICKER_CHANGED,
wxColourPickerEventHandler(OutputWinConfDlg::OnColor));
Connect(cp_output_->GetId(), wxEVT_COMMAND_COLOURPICKER_CHANGED,
wxColourPickerEventHandler(OutputWinConfDlg::OnColor));
Connect(cp_quote_->GetId(), wxEVT_COMMAND_COLOURPICKER_CHANGED,
wxColourPickerEventHandler(OutputWinConfDlg::OnColor));
Connect(cp_warning_->GetId(), wxEVT_COMMAND_COLOURPICKER_CHANGED,
wxColourPickerEventHandler(OutputWinConfDlg::OnColor));
}
void OutputWinConfDlg::OnSystemFontCheckbox(wxCommandEvent& event)
{
bool checked = event.IsChecked();
font_label_->Enable(!checked);
font_picker_->Enable(!checked);
wxFont const& font = checked ? *wxNORMAL_FONT
: font_picker_->GetSelectedFont();
ow_->SetDefaultStyle(wxTextAttr(wxNullColour, wxNullColour, font));
show_preview();
}
void OutputWinConfDlg::OnFontChange(wxFontPickerEvent& event)
{
ow_->SetDefaultStyle(wxTextAttr(wxNullColour, wxNullColour,
event.GetFont()));
show_preview();
}
void OutputWinConfDlg::OnColor(wxColourPickerEvent& event)
{
int id = event.GetId();
if (id == cp_bg_->GetId())
ow_->set_bg_color(event.GetColour());
else if (id == cp_input_->GetId())
ow_->text_color_[UserInterface::kInput] = event.GetColour();
else if (id == cp_output_->GetId())
ow_->text_color_[UserInterface::kNormal] = event.GetColour();
else if (id == cp_quote_->GetId())
ow_->text_color_[UserInterface::kQuoted] = event.GetColour();
else if (id == cp_warning_->GetId())
ow_->text_color_[UserInterface::kWarning] = event.GetColour();
show_preview();
}
void OutputWinConfDlg::show_preview()
{
const wxColour& output = ow_->text_color_[UserInterface::kNormal];
const wxColour& input = ow_->text_color_[UserInterface::kInput];
const wxColour& quote = ow_->text_color_[UserInterface::kQuoted];
const wxColour& warning = ow_->text_color_[UserInterface::kWarning];
preview_->Clear();
preview_->SetBackgroundColour(ow_->bg_color_);
preview_->SetDefaultStyle(ow_->GetDefaultStyle());
preview_->SetDefaultStyle(wxTextAttr(output));
preview_->AppendText(wxT("\nsettings preview\n\n"));
preview_->SetDefaultStyle(wxTextAttr(input));
preview_->AppendText(wxT("=-> i pi\n"));
preview_->SetDefaultStyle(wxTextAttr(output));
preview_->AppendText(wxT("3.14159\n"));
preview_->SetDefaultStyle(wxTextAttr(input));
preview_->AppendText(wxT("=-> c < file.fit\n"));
preview_->SetDefaultStyle(wxTextAttr(quote));
preview_->AppendText(wxT("1> bleh in file\n"));
preview_->SetDefaultStyle(wxTextAttr(warning));
preview_->AppendText(wxT("Syntax error.\n"));
}
|