summaryrefslogtreecommitdiff
path: root/Layout
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2015-11-30 11:28:57 -0600
committerMike Fiore <mfiore@multitech.com>2015-11-30 11:28:57 -0600
commit30b4f15aa70d24ec0a6b6bb1b3f5039c4921cb02 (patch)
treeb8c570f75cb17ca5d5c2dfb0afad436daf338df1 /Layout
parentd59521947bccfa2f4ae4dd2fd864409b07b708c3 (diff)
downloadmtdot-box-evb-factory-firmware-30b4f15aa70d24ec0a6b6bb1b3f5039c4921cb02.tar.gz
mtdot-box-evb-factory-firmware-30b4f15aa70d24ec0a6b6bb1b3f5039c4921cb02.tar.bz2
mtdot-box-evb-factory-firmware-30b4f15aa70d24ec0a6b6bb1b3f5039c4921cb02.zip
remove obsolete Layout*Help files
Diffstat (limited to 'Layout')
-rw-r--r--Layout/LayoutSingleHelp.cpp26
-rw-r--r--Layout/LayoutSingleHelp.h21
-rw-r--r--Layout/LayoutSweepHelp.cpp26
-rw-r--r--Layout/LayoutSweepHelp.h21
4 files changed, 0 insertions, 94 deletions
diff --git a/Layout/LayoutSingleHelp.cpp b/Layout/LayoutSingleHelp.cpp
deleted file mode 100644
index 82c4270..0000000
--- a/Layout/LayoutSingleHelp.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "LayoutSingleHelp.h"
-
-LayoutSingleHelp::LayoutSingleHelp(DOGS102* lcd)
- : Layout(lcd),
- _lMode(0, 0, "Survey Single"),
- _lIns1(0, 4, "Hold SW1 any time"),
- _lIns2(0, 5, "for Main Menu"),
- _lSw1(11, 7, "DR/PWR"),
- _lSw2(0, 7, "Survey")
-{}
-
-LayoutSingleHelp::~LayoutSingleHelp() {}
-
-void LayoutSingleHelp::display() {
- clear();
- startUpdate();
-
- writeLabel(_lMode);
- writeLabel(_lIns1);
- writeLabel(_lIns2);
- writeLabel(_lSw1);
- writeLabel(_lSw2);
-
- endUpdate();
-}
-
diff --git a/Layout/LayoutSingleHelp.h b/Layout/LayoutSingleHelp.h
deleted file mode 100644
index 421bc1c..0000000
--- a/Layout/LayoutSingleHelp.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __LAYOUTSINGLEHELP_H__
-#define __LAYOUTSINGLEHELP_H__
-
-#include "Layout.h"
-
-class LayoutSingleHelp : public Layout {
- public:
- LayoutSingleHelp(DOGS102* lcd);
- ~LayoutSingleHelp();
-
- void display();
-
- private:
- Label _lMode;
- Label _lIns1;
- Label _lIns2;
- Label _lSw1;
- Label _lSw2;
-};
-
-#endif
diff --git a/Layout/LayoutSweepHelp.cpp b/Layout/LayoutSweepHelp.cpp
deleted file mode 100644
index eb40013..0000000
--- a/Layout/LayoutSweepHelp.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "LayoutSweepHelp.h"
-
-LayoutSweepHelp::LayoutSweepHelp(DOGS102* lcd)
- : Layout(lcd),
- _lMode(0, 0, "Survey Sweep"),
- _lIns1(0, 4, "Hold SW1 any time"),
- _lIns2(0, 5, "for Main Menu"),
- _lSw1(11, 7, "Cancel"),
- _lSw2(0, 7, "Sweep")
-{}
-
-LayoutSweepHelp::~LayoutSweepHelp() {}
-
-void LayoutSweepHelp::display() {
- clear();
- startUpdate();
-
- writeLabel(_lMode);
- writeLabel(_lIns1);
- writeLabel(_lIns2);
- writeLabel(_lSw1);
- writeLabel(_lSw2);
-
- endUpdate();
-}
-
diff --git a/Layout/LayoutSweepHelp.h b/Layout/LayoutSweepHelp.h
deleted file mode 100644
index 0ec0e45..0000000
--- a/Layout/LayoutSweepHelp.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __LAYOUTSWEEPHELP_H__
-#define __LAYOUTSWEEPHELP_H__
-
-#include "Layout.h"
-
-class LayoutSweepHelp : public Layout {
- public:
- LayoutSweepHelp(DOGS102* lcd);
- ~LayoutSweepHelp();
-
- void display();
-
- private:
- Label _lMode;
- Label _lIns1;
- Label _lIns2;
- Label _lSw1;
- Label _lSw2;
-};
-
-#endif