summaryrefslogtreecommitdiff
path: root/ldmicro/schematic.cpp
diff options
context:
space:
mode:
authorNatsuDrag92018-06-27 09:57:32 +0530
committerGitHub2018-06-27 09:57:32 +0530
commit78fc70bd2d6d296697060bce13221edc909b71a5 (patch)
treeea1a20104ed2930aeb7e044988bdee35a3a109eb /ldmicro/schematic.cpp
parent6e9f72cb9a98eae5ef9ba403f905a2a9228f0b2b (diff)
parentbb4567164fdbeaaa47dd5525f9081e81e769725e (diff)
downloadLDMicroGtk-78fc70bd2d6d296697060bce13221edc909b71a5.tar.gz
LDMicroGtk-78fc70bd2d6d296697060bce13221edc909b71a5.tar.bz2
LDMicroGtk-78fc70bd2d6d296697060bce13221edc909b71a5.zip
Merge pull request #26 from NatsuDrag9/GUI_port
Gui port
Diffstat (limited to 'ldmicro/schematic.cpp')
-rw-r--r--ldmicro/schematic.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/ldmicro/schematic.cpp b/ldmicro/schematic.cpp
index 5a91934..a53c9c2 100644
--- a/ldmicro/schematic.cpp
+++ b/ldmicro/schematic.cpp
@@ -24,9 +24,12 @@
#include "linuxUI.h"
#include <stdio.h>
#include <stdlib.h>
+#include <iostream>
#include "ldmicro.h"
+using namespace std;
+
// Not all options all available e.g. can't delete the only relay coil in
// a rung, can't insert two coils in series, etc. Keep track of what is
// allowed so we don't corrupt our program.
@@ -395,8 +398,12 @@ void MoveCursorKeyboard(int keyCode)
// Edit the selected element. Pop up the appropriate modal dialog box to do
// this.
//-----------------------------------------------------------------------------
+
void EditSelectedElement(void)
{
+ ShowLookUpTableDialog(Selected);
+ // ShowContactsDialog(&(Selected->d.contacts.negated),Selected->d.contacts.name);
+
// if(!Selected || Selected->selectedState == SELECTED_NONE) return;
// switch(SelectedWhich) {
@@ -526,6 +533,7 @@ void EditElementMouseDoubleclick(int x, int y)
// EditSelectedElement();
// }
// }
+ EditSelectedElement();
}
//-----------------------------------------------------------------------------