ossp-pkg/as/as-gui/as_slot.cpp 1.14 -> 1.15
--- as_slot.cpp 2002/11/26 14:10:32 1.14
+++ as_slot.cpp 2002/11/26 17:23:51 1.15
@@ -15,7 +15,34 @@
//
-// Add a blank row entry to the current data window
+// Cut an entry
+//
+void Titraqform::cutEntry(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// Copy an entry
+//
+void Titraqform::copyEntry(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// Paste an entry
+//
+void Titraqform::pasteEntry(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// Append a blank row entry
//
void Titraqform::addEntry(void)
{
@@ -31,7 +58,7 @@
}
//
-// Delete a row entry from the current data window
+// Delete a row entry
//
void Titraqform::delEntry(void)
{
@@ -152,33 +179,6 @@
}
//
-// Edit menu cut
-//
-void Titraqform::cut(void)
-{
- Prototype Unimp;
- Unimp.doMbox();
-}
-
-//
-// Edit menu copy
-//
-void Titraqform::copy(void)
-{
- Prototype Unimp;
- Unimp.doMbox();
-}
-
-//
-// Edit menu paste
-//
-void Titraqform::paste(void)
-{
- Prototype Unimp;
- Unimp.doMbox();
-}
-
-//
// Edit menu select all entries
//
void Titraqform::selAll(void)
@@ -232,27 +232,126 @@
}
//
-// View menu normal
+// View menu editing
//
-void Titraqform::normalView(void)
+void Titraqform::editingView(void)
{
Prototype Unimp;
Unimp.doMbox();
}
//
-// View menu editing
+// View menu timing
//
-void Titraqform::editingView(void)
+void Titraqform::timingView(void)
{
Prototype Unimp;
Unimp.doMbox();
}
//
-// View menu timing
+// View menu show file toolbar
//
-void Titraqform::timingView(void)
+void Titraqform::showFilebar(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show edit toolbar
+//
+void Titraqform::showEditbar(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show whats this toolbar
+//
+void Titraqform::showWhatsbar(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show line numbers column
+//
+void Titraqform::showLinecol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show GUIDs column
+//
+void Titraqform::showGuidcol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Dates column
+//
+void Titraqform::showDatecol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Users column
+//
+void Titraqform::showUsercol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Tasks column
+//
+void Titraqform::showTaskcol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Start time column
+//
+void Titraqform::showStartcol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Finish time column
+//
+void Titraqform::showFinishcol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Amounts column
+//
+void Titraqform::showAmountcol(void)
+{
+ Prototype Unimp;
+ Unimp.doMbox();
+}
+
+//
+// View menu show Remarks column
+//
+void Titraqform::showRemarkcol(void)
{
Prototype Unimp;
Unimp.doMbox();
|
|