mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
ae14784fd6
- Adding of actions is done with an addAction function
- Files are read from
- getStylePackage for styling stuff (this is stylesheet)
- getLocalPackage for symbol and image values (this was the set)
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@970 0fc631ac-6414-0410-93d0-97cfa31319b6
431 lines
14 KiB
C++
431 lines
14 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) 2001 - 2008 Twan van Laarhoven and "coppro" |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include <util/prec.hpp>
|
|
#include <gui/control/card_editor.hpp>
|
|
#include <gui/value/editor.hpp>
|
|
#include <gui/icon_menu.hpp>
|
|
#include <data/field.hpp>
|
|
#include <data/stylesheet.hpp>
|
|
#include <data/settings.hpp>
|
|
#include <util/find_replace.hpp>
|
|
#include <util/window_id.hpp>
|
|
#include <wx/caret.h>
|
|
|
|
DECLARE_TYPEOF_COLLECTION(ValueViewerP);
|
|
DECLARE_TYPEOF_COLLECTION(ValueViewer*);
|
|
|
|
// ----------------------------------------------------------------------------- : DataEditor
|
|
|
|
DataEditor::DataEditor(Window* parent, int id, long style)
|
|
: CardViewer(parent, id, style | wxWANTS_CHARS)
|
|
, next_in_tab_order(nullptr)
|
|
, current_viewer(nullptr)
|
|
, current_editor(nullptr)
|
|
, hovered_viewer(nullptr)
|
|
{
|
|
// Create a caret
|
|
SetCaret(new wxCaret(this,1,1));
|
|
}
|
|
|
|
ValueViewerP DataEditor::makeViewer(const StyleP& style) {
|
|
return style->makeEditor(*this, style);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Utility for ValueViewers
|
|
|
|
bool DataEditor::drawBorders() const {
|
|
return !nativeLook() &&
|
|
settings.stylesheetSettingsFor(set->stylesheetFor(card)).card_borders();
|
|
}
|
|
bool DataEditor::drawEditing() const {
|
|
return nativeLook() ||
|
|
settings.stylesheetSettingsFor(set->stylesheetFor(card)).card_draw_editing();
|
|
}
|
|
bool DataEditor::drawFocus() const {
|
|
return FindFocus() == this;
|
|
}
|
|
|
|
wxPen DataEditor::borderPen(bool active) const {
|
|
return active ? wxPen(Color(0,128,255), 1, wxSOLID)
|
|
: wxPen(Color(128,128,128), 1, wxDOT);
|
|
}
|
|
|
|
ValueViewer* DataEditor::focusedViewer() const {
|
|
return FindFocus() == this ? current_viewer : nullptr;
|
|
}
|
|
|
|
void DataEditor::addAction(Action* action) {
|
|
set->actions.addAction(action);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Selection
|
|
|
|
bool DataEditor::AcceptsFocus() const {
|
|
return wxControl::AcceptsFocus();
|
|
}
|
|
|
|
void DataEditor::select(ValueViewer* v) {
|
|
ValueEditor* old_editor = current_editor;
|
|
current_viewer = v;
|
|
current_editor = v->getEditor();
|
|
if (current_editor != old_editor) {
|
|
// selection has changed
|
|
if (old_editor) old_editor->onLoseFocus();
|
|
if (current_editor) current_editor->onFocus();
|
|
onChange();
|
|
}
|
|
}
|
|
|
|
void DataEditor::selectFirst() {
|
|
selectByTabPos(0, true);
|
|
}
|
|
void DataEditor::selectLast() {
|
|
selectByTabPos((int)by_tab_index.size() - 1, false);
|
|
}
|
|
bool DataEditor::selectNext() {
|
|
return selectByTabPos(currentTabPos() + 1, true);
|
|
}
|
|
bool DataEditor::selectPrevious() {
|
|
return selectByTabPos(currentTabPos() - 1, false);
|
|
}
|
|
|
|
bool DataEditor::selectByTabPos(int tab_pos, bool forward) {
|
|
while (tab_pos >= 0 && (size_t)tab_pos < by_tab_index.size()) {
|
|
ValueViewer* v = by_tab_index[tab_pos];
|
|
if (v->getField()->editable && v->getStyle()->isVisible()) {
|
|
select(v);
|
|
return true;
|
|
}
|
|
// not enabled, maybe the next one?
|
|
tab_pos += forward ? 1 : -1;
|
|
}
|
|
// deselect
|
|
if (current_editor) {
|
|
current_editor->onLoseFocus();
|
|
onChange();
|
|
}
|
|
current_viewer = nullptr;
|
|
current_editor = nullptr;
|
|
return false;
|
|
}
|
|
int DataEditor::currentTabPos() const {
|
|
int i = 0;
|
|
FOR_EACH_CONST(v, by_tab_index) {
|
|
if (v == current_viewer) return i;
|
|
++i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
struct CompareTabIndex {
|
|
bool operator() (ValueViewer* a, ValueViewer* b) {
|
|
Style& as = *a->getStyle(), &bs = *b->getStyle();
|
|
Field& af = *as.fieldP, &bf = *bs.fieldP;
|
|
if (af.tab_index < bf.tab_index) return true;
|
|
if (af.tab_index > bf.tab_index) return false;
|
|
if (fabs(as.top - bs.top) < 15) {
|
|
// the fields are almost on the same 'row'
|
|
// compare horizontally first
|
|
if (as.left < bs.left) return true; // horizontal sorting
|
|
if (as.left > bs.left) return false;
|
|
if (as.top < bs.top) return true; // vertical sorting
|
|
} else {
|
|
// compare vertically first
|
|
if (as.top < bs.top) return true; // vertical sorting
|
|
if (as.top > bs.top) return false;
|
|
if (as.left < bs.left) return true; // horizontal sorting
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
void DataEditor::createTabIndex() {
|
|
by_tab_index.clear();
|
|
FOR_EACH(v, viewers) {
|
|
ValueEditor* e = v->getEditor();
|
|
if (e) {
|
|
by_tab_index.push_back(v.get());
|
|
}
|
|
}
|
|
stable_sort(by_tab_index.begin(), by_tab_index.end(), CompareTabIndex());
|
|
}
|
|
void DataEditor::onInit() {
|
|
createTabIndex();
|
|
current_viewer = nullptr;
|
|
current_editor = nullptr;
|
|
hovered_viewer = nullptr;
|
|
// hide caret if it is shown
|
|
wxCaret* caret = GetCaret();
|
|
if (caret->IsVisible()) caret->Hide();
|
|
}
|
|
// ----------------------------------------------------------------------------- : Search / replace
|
|
|
|
bool DataEditor::search(FindInfo& find, bool from_start) {
|
|
bool include = from_start;
|
|
for (size_t i = 0 ; i < by_tab_index.size() ; ++i) {
|
|
ValueViewer& viewer = *by_tab_index[find.forward() ? i : by_tab_index.size() - i - 1];
|
|
if (&viewer == current_viewer) include = true;
|
|
if (include && viewer.getField()->editable && viewer.getStyle()->isVisible()) {
|
|
ValueEditor* editor = viewer.getEditor();
|
|
if (editor && editor->search(find, from_start || &viewer != current_viewer)) {
|
|
return true; // done
|
|
}
|
|
}
|
|
}
|
|
return false; // not done
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Clipboard & Formatting
|
|
|
|
bool DataEditor::canCut() const { return current_editor && current_editor->canCut(); }
|
|
bool DataEditor::canCopy() const { return current_editor && current_editor->canCopy(); }
|
|
bool DataEditor::canPaste() const { return current_editor && current_editor->canPaste(); }
|
|
bool DataEditor::canFormat(int type) const { return current_editor && current_editor->canFormat(type); }
|
|
bool DataEditor::hasFormat(int type) const { return current_editor && current_editor->hasFormat(type); }
|
|
|
|
void DataEditor::doCut() { if (current_editor) current_editor->doCut(); }
|
|
void DataEditor::doCopy() { if (current_editor) current_editor->doCopy(); }
|
|
void DataEditor::doPaste() { if (current_editor) current_editor->doPaste(); }
|
|
void DataEditor::doFormat(int type) { if (current_editor) current_editor->doFormat(type); }
|
|
|
|
|
|
wxMenu* DataEditor::getMenu(int type) const {
|
|
if (current_editor) {
|
|
return current_editor->getMenu(type);
|
|
} else {
|
|
return nullptr;
|
|
}
|
|
}
|
|
void DataEditor::onCommand(int id) {
|
|
if (current_editor) {
|
|
current_editor->onCommand(id);
|
|
}
|
|
}
|
|
|
|
void DataEditor::insert(const String& text, const String& action_name) {
|
|
if (current_editor) current_editor->insert(text, action_name);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Mouse events
|
|
|
|
void DataEditor::onLeftDown(wxMouseEvent& ev) {
|
|
ev.Skip(); // for focus
|
|
CaptureMouse();
|
|
// change selection?
|
|
selectField(ev, &ValueEditor::onLeftDown);
|
|
}
|
|
void DataEditor::onLeftUp(wxMouseEvent& ev) {
|
|
if (HasCapture()) ReleaseMouse();
|
|
if (current_editor && current_viewer) {
|
|
RealPoint pos = mousePoint(ev, *current_viewer);
|
|
if (current_viewer->containsPoint(pos)) {
|
|
current_editor->onLeftUp(pos, ev);
|
|
}
|
|
}
|
|
}
|
|
void DataEditor::onLeftDClick(wxMouseEvent& ev) {
|
|
if (current_editor && current_viewer) {
|
|
RealPoint pos = mousePoint(ev, *current_viewer);
|
|
if (current_viewer->containsPoint(pos)) {
|
|
current_editor->onLeftDClick(pos, ev);
|
|
}
|
|
}
|
|
}
|
|
void DataEditor::onRightDown(wxMouseEvent& ev) {
|
|
ev.Skip(); // for context menu
|
|
// change selection?
|
|
selectField(ev, &ValueEditor::onRightDown);
|
|
}
|
|
void DataEditor::onMouseWheel(wxMouseEvent& ev) {
|
|
if (current_editor && current_viewer) {
|
|
RealPoint pos = mousePoint(ev, *current_viewer);
|
|
if (current_viewer->containsPoint(pos)) {
|
|
if (current_editor->onMouseWheel(pos, ev)) return;
|
|
}
|
|
}
|
|
ev.Skip();
|
|
}
|
|
|
|
void DataEditor::onMotion(wxMouseEvent& ev) {
|
|
if (current_editor && current_viewer) {
|
|
RealPoint pos = mousePoint(ev, *current_viewer);
|
|
current_editor->onMotion(pos, ev);
|
|
}
|
|
if (!HasCapture()) {
|
|
// find editor under mouse
|
|
ValueViewer* new_hovered_viewer = nullptr;
|
|
FOR_EACH_REVERSE(v,viewers) { // find high z index fields first
|
|
RealPoint pos = mousePoint(ev, *v);
|
|
if (v->containsPoint(pos) && v->getField()->editable) {
|
|
new_hovered_viewer = v.get();
|
|
break;
|
|
}
|
|
}
|
|
if (hovered_viewer && hovered_viewer != new_hovered_viewer) {
|
|
ValueEditor* e = hovered_viewer->getEditor();
|
|
RealPoint pos = mousePoint(ev, *hovered_viewer);
|
|
if (e) e->onMouseLeave(pos, ev);
|
|
}
|
|
hovered_viewer = new_hovered_viewer;
|
|
// change cursor and set status text
|
|
wxFrame* frame = dynamic_cast<wxFrame*>( wxGetTopLevelParent(this) );
|
|
if (hovered_viewer) {
|
|
ValueEditor* e = hovered_viewer->getEditor();
|
|
RealPoint pos = mousePoint(ev, *hovered_viewer);
|
|
wxCursor c;
|
|
if (e) c = e->cursor(pos);
|
|
if (c.Ok()) SetCursor(c);
|
|
else SetCursor(wxCURSOR_ARROW);
|
|
if (frame) frame->SetStatusText(hovered_viewer->getField()->description);
|
|
} else {
|
|
// no field under cursor
|
|
SetCursor(wxCURSOR_ARROW);
|
|
if (frame) frame->SetStatusText(wxEmptyString);
|
|
}
|
|
}
|
|
}
|
|
|
|
void DataEditor::onMouseLeave(wxMouseEvent& ev) {
|
|
// on mouse leave for editor
|
|
if (hovered_viewer) {
|
|
ValueEditor* e = hovered_viewer->getEditor();
|
|
if (e) e->onMouseLeave(mousePoint(ev,*hovered_viewer), ev);
|
|
hovered_viewer = nullptr;
|
|
}
|
|
// clear status text
|
|
wxFrame* frame = dynamic_cast<wxFrame*>( wxGetTopLevelParent(this) );
|
|
if (frame) frame->SetStatusText(wxEmptyString);
|
|
}
|
|
|
|
void DataEditor::selectField(wxMouseEvent& ev, bool (ValueEditor::*event)(const RealPoint&, wxMouseEvent&)) {
|
|
// change viewer/editor
|
|
ValueEditor* old_editor = current_editor;
|
|
selectFieldNoEvents(ev);
|
|
if (old_editor != current_editor) {
|
|
// selection has changed, send focus events
|
|
if (old_editor) old_editor->onLoseFocus();
|
|
if (current_editor) current_editor->onFocus();
|
|
}
|
|
// pass event
|
|
if (current_editor && current_viewer) {
|
|
RealPoint pos = mousePoint(ev, *current_viewer);
|
|
if (current_viewer->containsPoint(pos)) {
|
|
(current_editor->*event)(pos, ev);
|
|
}
|
|
}
|
|
// refresh?
|
|
if (old_editor != current_editor) {
|
|
// selection has changed, refresh viewers
|
|
// NOTE: after passing mouse down event, otherwise opening combo box produces flicker
|
|
onChange();
|
|
}
|
|
}
|
|
void DataEditor::selectFieldNoEvents(const wxMouseEvent& ev) {
|
|
FOR_EACH_EDITOR_REVERSE { // find high z index fields first
|
|
if (v->getField()->editable && (v->containsPoint(mousePoint(ev,*v)) ||
|
|
(nativeLook() && ev.GetY() >= v->getStyle()->top && ev.GetY() < v->getStyle()->bottom) )) {
|
|
current_viewer = v.get();
|
|
current_editor = e;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
RealPoint DataEditor::mousePoint(const wxMouseEvent& ev, const ValueViewer& viewer) {
|
|
Rotation rot = getRotation();
|
|
Rotater r(rot,viewer.getRotation());
|
|
return rot.trInv(RealPoint(ev.GetX(), ev.GetY()));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Keyboard events
|
|
|
|
void DataEditor::onChar(wxKeyEvent& ev) {
|
|
if (ev.GetKeyCode() == WXK_TAB) {
|
|
if (!ev.ShiftDown()) {
|
|
// try to select the next editor
|
|
if (selectNext()) return;
|
|
// send a navigation event to our parent, to select another control
|
|
wxNavigationKeyEvent evt;
|
|
GetParent()->ProcessEvent(evt);
|
|
} else {
|
|
// try to select the previos editor
|
|
if (selectPrevious()) return;
|
|
// send a navigation event to our parent, to select another control
|
|
wxNavigationKeyEvent evt;
|
|
evt.SetDirection(false);
|
|
GetParent()->ProcessEvent(evt);
|
|
}
|
|
} else if (current_editor) {
|
|
current_editor->onChar(ev);
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Menu events
|
|
|
|
void DataEditor::onContextMenu(wxContextMenuEvent& ev) {
|
|
if (current_editor) {
|
|
IconMenu m;
|
|
m.Append(ID_EDIT_CUT, _("cut"), _MENU_("cut"), _HELP_("cut"));
|
|
m.Append(ID_EDIT_COPY, _("copy"), _MENU_("copy"), _HELP_("copy"));
|
|
m.Append(ID_EDIT_PASTE, _("paste"), _MENU_("paste"), _HELP_("paste"));
|
|
m.Enable(ID_EDIT_CUT, canCut());
|
|
m.Enable(ID_EDIT_COPY, canCopy());
|
|
m.Enable(ID_EDIT_PASTE, canPaste());
|
|
if (current_editor->onContextMenu(m, ev)) {
|
|
PopupMenu(&m);
|
|
}
|
|
}
|
|
}
|
|
void DataEditor::onMenu(wxCommandEvent& ev) {
|
|
if (current_editor) {
|
|
if (!current_editor->onCommand(ev.GetId())) {
|
|
ev.Skip();
|
|
}
|
|
} else {
|
|
ev.Skip();
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Focus events
|
|
|
|
void DataEditor::onFocus(wxFocusEvent& ev) {
|
|
if (current_editor) {
|
|
current_editor->onFocus();
|
|
onChange();
|
|
} else {
|
|
if (ev.GetWindow() && ev.GetWindow() == next_in_tab_order) {
|
|
selectLast();
|
|
} else {
|
|
selectFirst();
|
|
}
|
|
}
|
|
}
|
|
void DataEditor::onLoseFocus(wxFocusEvent& ev) {
|
|
if (current_editor) {
|
|
current_editor->onLoseFocus();
|
|
onChange();
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Event table
|
|
|
|
BEGIN_EVENT_TABLE(DataEditor, CardViewer)
|
|
EVT_LEFT_DOWN (DataEditor::onLeftDown)
|
|
EVT_LEFT_UP (DataEditor::onLeftUp)
|
|
EVT_LEFT_DCLICK (DataEditor::onLeftDClick)
|
|
EVT_RIGHT_DOWN (DataEditor::onRightDown)
|
|
EVT_MOTION (DataEditor::onMotion)
|
|
EVT_MOUSEWHEEL (DataEditor::onMouseWheel)
|
|
EVT_LEAVE_WINDOW (DataEditor::onMouseLeave)
|
|
EVT_CONTEXT_MENU (DataEditor::onContextMenu)
|
|
EVT_MENU (wxID_ANY, DataEditor::onMenu)
|
|
EVT_CHAR (DataEditor::onChar)
|
|
EVT_SET_FOCUS (DataEditor::onFocus)
|
|
EVT_KILL_FOCUS (DataEditor::onLoseFocus)
|
|
END_EVENT_TABLE ()
|